aboutsummaryrefslogtreecommitdiffstats
path: root/tests/files/example_grobid_plos.tei.xml
blob: fe6a05aa003b5ada25cee934bca2eac53c5501d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
<?xml version="1.0" encoding="UTF-8"?>
<TEI xml:space="preserve"
    xmlns="http://www.tei-c.org/ns/1.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://www.tei-c.org/ns/1.0 https://raw.githubusercontent.com/kermitt2/grobid/master/grobid-home/schemas/xsd/Grobid.xsd"
    xmlns:xlink="http://www.w3.org/1999/xlink">
    <teiHeader xml:lang="en">
        <fileDesc>
            <titleStmt>
                <title level="a" type="main">Towards Cost-Effective Operational Monitoring Systems for Complex Waters: Analyzing Small-Scale Coastal Processes with Optical Transmissometry</title>
            </titleStmt>
            <publicationStmt>
                <publisher/>
                <availability status="unknown">
                    <licence/>
                </availability>
                <date type="published" when="2017-01-20">January 20, 2017</date>
            </publicationStmt>
            <sourceDesc>
                <biblStruct>
                    <analytic>
                        <author>
                            <persName>
                                <forename type="first">Marta</forename>
                                <surname>Ramı ´rez-Pe ´rez</surname>
                            </persName>
                            <affiliation key="aff0">
                                <orgName type="department" key="dep1">Department of Physical and Technological Oceanography</orgName>
                                <orgName type="department" key="dep2">Institute of Marine Sciences (ICM-CSIC)</orgName>
                                <address>
                                    <settlement>Barcelona</settlement>
                                    <country key="ES">Spain</country>
                                </address>
                            </affiliation>
                        </author>
                        <author>
                            <persName>
                                <forename type="first">Rafael</forename>
                                <surname>Gonc ¸alves-Araujo</surname>
                            </persName>
                            <affiliation key="aff1">
                                <orgName type="department" key="dep1">Physical Oceanography of Polar Seas</orgName>
                                <orgName type="department" key="dep2">Climate Sciences Division</orgName>
                                <orgName type="laboratory">Phytooptics Group</orgName>
                                <orgName type="institution">Alfred Wegener Institute Helmholtz Centre for Polar and Marine Research</orgName>
                                <address>
                                    <settlement>Bremerhaven</settlement>
                                    <country key="DE">Germany</country>
                                </address>
                            </affiliation>
                        </author>
                        <author>
                            <persName>
                                <forename type="first">Sonja</forename>
                                <surname>Wiegmann</surname>
                            </persName>
                            <affiliation key="aff1">
                                <orgName type="department" key="dep1">Physical Oceanography of Polar Seas</orgName>
                                <orgName type="department" key="dep2">Climate Sciences Division</orgName>
                                <orgName type="laboratory">Phytooptics Group</orgName>
                                <orgName type="institution">Alfred Wegener Institute Helmholtz Centre for Polar and Marine Research</orgName>
                                <address>
                                    <settlement>Bremerhaven</settlement>
                                    <country key="DE">Germany</country>
                                </address>
                            </affiliation>
                        </author>
                        <author>
                            <persName>
                                <forename type="first">Elena</forename>
                                <surname>Torrecilla</surname>
                            </persName>
                            <affiliation key="aff0">
                                <orgName type="department" key="dep1">Department of Physical and Technological Oceanography</orgName>
                                <orgName type="department" key="dep2">Institute of Marine Sciences (ICM-CSIC)</orgName>
                                <address>
                                    <settlement>Barcelona</settlement>
                                    <country key="ES">Spain</country>
                                </address>
                            </affiliation>
                        </author>
                        <author>
                            <persName>
                                <forename type="first">Raul</forename>
                                <surname>Bardaji</surname>
                            </persName>
                            <affiliation key="aff0">
                                <orgName type="department" key="dep1">Department of Physical and Technological Oceanography</orgName>
                                <orgName type="department" key="dep2">Institute of Marine Sciences (ICM-CSIC)</orgName>
                                <address>
                                    <settlement>Barcelona</settlement>
                                    <country key="ES">Spain</country>
                                </address>
                            </affiliation>
                        </author>
                        <author>
                            <persName>
                                <forename type="first">Ru</forename>
                                <surname>¨diger Ro ¨ttgers</surname>
                            </persName>
                            <affiliation key="aff2">
                                <orgName type="department" key="dep1">Remote Sensing Department</orgName>
                                <orgName type="department" key="dep2">Institute for Coastal Research</orgName>
                                <orgName type="department" key="dep3">Centre for Materials and Coastal Research</orgName>
                                <orgName type="institution">Helmholtz-Zentrum Geesthacht</orgName>
                                <address>
                                    <settlement>Geesthacht, Germany</settlement>
                                </address>
                            </affiliation>
                        </author>
                        <author>
                            <persName>
                                <forename type="first">Astrid</forename>
                                <surname>Bracher</surname>
                            </persName>
                            <affiliation key="aff1">
                                <orgName type="department" key="dep1">Physical Oceanography of Polar Seas</orgName>
                                <orgName type="department" key="dep2">Climate Sciences Division</orgName>
                                <orgName type="laboratory">Phytooptics Group</orgName>
                                <orgName type="institution">Alfred Wegener Institute Helmholtz Centre for Polar and Marine Research</orgName>
                                <address>
                                    <settlement>Bremerhaven</settlement>
                                    <country key="DE">Germany</country>
                                </address>
                            </affiliation>
                            <affiliation key="aff3">
                                <orgName type="department">Institute of Environmental Physics</orgName>
                                <orgName type="institution">University of Bremen</orgName>
                                <address>
                                    <settlement>Bremen</settlement>
                                    <country key="DE">Germany</country>
                                </address>
                            </affiliation>
                        </author>
                        <author>
                            <persName>
                                <forename type="first">Jaume</forename>
                                <surname>Piera</surname>
                            </persName>
                            <affiliation key="aff0">
                                <orgName type="department" key="dep1">Department of Physical and Technological Oceanography</orgName>
                                <orgName type="department" key="dep2">Institute of Marine Sciences (ICM-CSIC)</orgName>
                                <address>
                                    <settlement>Barcelona</settlement>
                                    <country key="ES">Spain</country>
                                </address>
                            </affiliation>
                        </author>
                        <title level="a" type="main">Towards Cost-Effective Operational Monitoring Systems for Complex Waters: Analyzing Small-Scale Coastal Processes with Optical Transmissometry</title>
                    </analytic>
                    <monogr>
                        <imprint>
                            <date type="published" when="2017-01-20">January 20, 2017</date>
                        </imprint>
                    </monogr>
                    <idno type="MD5">4F10689DEB84756CE82C8015951A22E5</idno>
                    <idno type="DOI">10.1371/journal.pone.0170706</idno>
                    <note type="submission">Received: August 4, 2016 Accepted: January 9, 2017</note>
                </biblStruct>
            </sourceDesc>
        </fileDesc>
        <encodingDesc>
            <appInfo>
                <application version="0.7.0-SNAPSHOT" ident="GROBID" when="2021-10-23T03:05+0000">
                    <desc>GROBID - A machine learning software for extracting information from scholarly documents</desc>
                    <ref target="https://github.com/kermitt2/grobid"/>
                </application>
            </appInfo>
        </encodingDesc>
        <profileDesc>
            <abstract>
                <div
                    xmlns="http://www.tei-c.org/ns/1.0">
                    <p>
                        <s>The detection and prediction of changes in coastal ecosystems require a better understanding of the complex physical, chemical and biological interactions, which involves that observations should be performed continuously.</s>
                        <s>For this reason, there is an increasing demand for small, simple and cost-effective in situ sensors to analyze complex coastal waters at a broad range of scales.</s>
                        <s>In this context, this study seeks to explore the potential of beam attenuation spectra, c(λ), measured in situ with an advanced-technology optical transmissometer, for assessing temporal and spatial patterns in the complex estuarine waters of Alfacs Bay (NW Mediterranean) as a test site.</s>
                        <s>In particular, the information contained in the spectral beam attenuation coefficient was assessed and linked with different biogeochemical variables.</s>
                        <s>The attenuation at λ = 710 nm was used as a proxy for particle concentration, TSM, whereas a novel parameter was adopted as an optical indicator for chlorophyll a (Chla) concentration, based on the local maximum of c(λ) observed at the long-wavelength side of the red band Chl-a absorption peak.</s>
                        <s>In addition, since coloured dissolved organic matter (CDOM) has an important influence on the beam attenuation spectral shape and complementary measurements of particle size distribution were available, the beam attenuation spectral slope was used to analyze the CDOM content.</s>
                        <s>Results were successfully compared with optical and biogeochemical variables from laboratory analysis of collocated water samples, and statistically significant correlations were found between the attenuation proxies and the biogeochemical variables TSM, Chl-a and CDOM.</s>
                        <s>This outcome depicted the potential of high-frequency beam attenuation measurements as a simple, continuous and cost-effective approach for rapid detection of changes and patterns in biogeochemical properties in complex coastal environments.</s>
                    </p>
                </div>
            </abstract>
        </profileDesc>
    </teiHeader>
    <text xml:lang="en">
        <body>
            <div
                xmlns="http://www.tei-c.org/ns/1.0">
                <head>Introduction</head>
                <p>
                    <s>Coastal regions are highly dynamic and productive ecosystems, with high ecological and economic values 
                        <ref type="bibr" target="#b0">[1]</ref>.
                    </s>
                    <s>They are also vulnerable areas subjected to considerable anthropogenic pressures through urban and industrial development, pollution, fisheries, agriculture and aquaculture, recreation, etc.</s>
                    <s>These pressures have caused, in many cases, habitat degradation carrying serious environmental and economic consequences, such as harmful algal blooms (HABs), anoxia, accumulation of pollutants and toxins or over-exploited fisheries 
                        <ref type="bibr" target="#b1">[2]</ref>.
                    </s>
                    <s>Added to this, the effects of climate change and natural hazards are threatening the capability of coastal ecosystems to support goods and valuable services 
                        <ref type="bibr" target="#b2">[3]</ref>.
                    </s>
                    <s>For these reasons, increasing national and international efforts have been addressed over the last decades to establish and implement environmental strategies for preservation, conservation and sustainable use of these ecosystems.</s>
                    <s>In accordance with the requirements of the European Water Framework Directive (WFD, 2000/60/EC) and the Marine Strategy Framework Directive, new interdisciplinary research programs are successfully being carried out such as the coastal module of the Global Ocean Observing System (Coastal GOOS), the Coastal Observing System for Northern and Arctic Seas (COSYNA), the Global Earth Observations System of Systems (GEOSS) or the Marine Geological and Biological Habitat Mapping (GEOHAB).</s>
                    <s>All those programs have been conceived to monitor, forecast and assess the state of coastal ecosystems, which involve integrated, multidisciplinary and multiscale observing systems.</s>
                    <s>Coastal environments are governed by complex physical and biogeochemical processes and thus, undergo changes over a broad range of time-space scales.</s>
                    <s>Continuous and routine provision of data is therefore required to assess the states of these ecosystems, detect changes in these states and evaluate their impacts 
                        <ref type="bibr" target="#b3">[4]</ref>.
                    </s>
                    <s>In addition, there is a demand for compact, inexpensive, stable and low power in situ sensors to enable sustainable and long-term monitoring.</s>
                </p>
                <p>
                    <s>A powerful solution to resolve in-water variability at a wide range of space and time scales is the use of in situ measurements of Inherent Optical Properties (IOPs) 
                        <ref type="bibr" target="#b4">[5]</ref>
                        <ref type="bibr" target="#b5">[6]</ref>
                        <ref type="bibr" target="#b6">[7]</ref>
                        <ref type="bibr" target="#b7">[8]</ref>.
                    </s>
                    <s>IOPs depend on the composition, morphology, and concentration of the particulate and dissolved chromophoric substances in the water and thus, can be used to estimate some water quality variables (e.g.</s>
                    <s>turbidity) 
                        <ref type="bibr" target="#b8">[9]</ref> and biogeochemical properties (e.g.
                    </s>
                    <s>Chlorophyll a and suspended matter concentrations) 
                        <ref type="bibr" target="#b9">[10]</ref>
                        <ref type="bibr" target="#b10">[11]</ref>.
                    </s>
                    <s>Among the IOP measuring devices, transmissometers present numerous advantages due to their general availability and simplicity of both operation and data processing 
                        <ref type="bibr" target="#b11">[12]</ref>.
                    </s>
                    <s>These devices have been used to estimate the concentration of the suspended material in water 
                        <ref type="bibr" target="#b12">[13]</ref>, the composition 
                        <ref type="bibr" target="#b10">[11]</ref> and size distribution of particles 
                        <ref type="bibr" target="#b13">[14]</ref> and the particulate organic carbon 
                        <ref type="bibr" target="#b7">[8,</ref>
                        <ref type="bibr" target="#b14">15]</ref>.
                    </s>
                    <s>Furthermore, several studies have demonstrated the relationships between particulate attenuation, c p , and chlorophyll concentration (as an index of phytoplankton biomass) in oceanic waters 
                        <ref type="bibr" target="#b15">[16]</ref>
                        <ref type="bibr" target="#b16">[17]</ref>
                        <ref type="bibr" target="#b17">[18]</ref>.
                    </s>
                    <s>In coastal waters, c p also registers changes in inorganic, detrital, and heterotrophic particles, thus compromising its correlation with chlorophyll a (Chl-a) concentration 
                        <ref type="bibr" target="#b17">[18]</ref>.
                    </s>
                    <s>Nevertheless, the correlation between both variables (i.e.</s>
                    <s>c p and Chl-a) still needs to be further explored.</s>
                </p>
                <p>
                    <s>Recent technological advances have led to the development of high spectral resolution (i.e.</s>
                    <s>hyperspectral), cost-effective, compact and low power transmissometers (e.g.</s>
                    <s>VIPER, TriOS GmbH 
                        <ref type="bibr" target="#b18">[19]</ref>), which have improved the operational capabilities.
                    </s>
                    <s>In this context, this study evaluates the potential of economically affordable and advanced-technology transmissometers to detect changes and patterns in the biogeochemical properties at high temporal and spatial resolution in complex coastal environments.</s>
                    <s>In particular, we focus on the information contained in the spectral beam attenuation coefficient and explore its suitability as a qualitative proxy for different biogeochemical properties.</s>
                    <s>The observed patterns are analyzed in relation to the prevailing physical forcing to better understand the biophysical coupling.</s>
                </p>
                <p>
                    <s>This study is focused on the microtidal estuary of Alfacs Bay (Ebro Delta, NW Mediterranean coast), using it as a test site.</s>
                    <s>This bay is an important shellfish production area commonly affected by HABs events, which lead to significant economic losses 
                        <ref type="bibr" target="#b19">[20]</ref>.
                    </s>
                    <s>For this reason, this area has been intensively monitored since 1990.</s>
                    <s>Research efforts have focused on characterizing the hydrodynamics of this bay 
                        <ref type="bibr" target="#b20">[21]</ref>
                        <ref type="bibr" target="#b21">[22]</ref>
                        <ref type="bibr" target="#b22">[23]</ref>
                        <ref type="bibr" target="#b23">[24]</ref>
                        <ref type="bibr" target="#b24">[25]</ref>, its ecology 
                        <ref type="bibr" target="#b25">[26]</ref>
                        <ref type="bibr" target="#b26">[27]</ref>
                        <ref type="bibr" target="#b27">[28]</ref>
                        <ref type="bibr" target="#b28">[29]</ref> and the coupling between physical and biological processes 
                        <ref type="bibr" target="#b29">[30]</ref>.
                    </s>
                    <s>However, the use of optical-based approaches in this area -which allow the assessment of fine-scaled temporal and spatial variability of water constituent characteristics-is still very limited.</s>
                    <s>Only 
                        <ref type="bibr" target="#b30">Busch (2013)</ref>
                        <ref type="bibr" target="#b30">[31]</ref> analyzed the phytoplankton dynamics in this environment using radiometric measurements, which provided useful data only in day time.
                    </s>
                    <s>One of the main conclusions of this author was that continuous observations in Alfacs Bay are required to properly understand the rapid ecosystem dynamics.</s>
                </p>
            </div>
            <div
                xmlns="http://www.tei-c.org/ns/1.0">
                <head>Materials and Methods</head>
            </div>
            <div
                xmlns="http://www.tei-c.org/ns/1.0">
                <head>Study site</head>
                <p>
                    <s>Alfacs Bay is located in the south of the Ebro River Delta (Spain), in the NW Mediterranean Sea (Fig 
                        <ref type="figure" target="#fig_0">1</ref>).
                    </s>
                    <s>It is a shallow estuarine bay with 11 km length, 4 km width and a maximum depth of 6.5 m.</s>
                    <s>It is a semi-enclosed embayment separated from the open sea by a sand barrier that leaves an opening of roughly 2.5 km width, allowing the exchange of water with the open sea.</s>
                    <s>The major physical forcings in the bay are wind and freshwater input, whereas tidal forcing is negligible with a maximum range of 0.25 m 
                        <ref type="bibr" target="#b31">[32]</ref>.
                    </s>
                    <s>The freshwater discharge is derived mainly from the rice-fields irrigation channels, located in the northern part of the Bay.</s>
                    <s>These channels are open from April to October or November, with an average flux rate of ca.</s>
                    <s>14.5 m 3 Ás −1 
                        <ref type="bibr" target="#b21">[22]</ref>.
                    </s>
                    <s>The freshwater inputs induce vertical stratification, while only during strong wind events the water column is vertically mixed 
                        <ref type="bibr" target="#b20">[21]</ref>.
                    </s>
                    <s>Heat fluxes in the ocean-atmosphere boundary layer in summer periods contribute in addition to stratifying the water column 
                        <ref type="bibr" target="#b32">[33]</ref>.
                    </s>
                </p>
            </div>
            <div
                xmlns="http://www.tei-c.org/ns/1.0">
                <head>Field campaign</head>
                <p>
                    <s>No specific permissions were required for the location of the field campaign, and the study did not involve endangered nor protected species.</s>
                    <s>Two sampling strategies were adopted to analyze both temporal and spatial patterns in Alfacs Bay in June 2013.</s>
                    <s>The analysis of temporal patterns was conducted from the 24 th of June at 9:30 pm for 48 hours.</s>
                    <s>This time series of vertical profiles was gathered from 0.5 m to 3 m depth at a fixed station located in the north-central part of the Bay (blue circle in 
                        <ref type="bibr">Fig 1)</ref>.
                    </s>
                    <s>At this station, simultaneous measurements of physical (wind and current velocities and direction, and water temperature) and optical parameters (beam attenuation and near-forward angular scattering) were conducted continuously with a vertical resolution of 0.5 m.</s>
                    <s>At each depth, instruments measured for 10 minutes.</s>
                    <s>Thereby, each vertical profile took approximately 1 hour.</s>
                    <s>Water samples were collected every 6 hours at three different depths (0.5 m, 1.5 m and 3 m) for later laboratory analysis of biogeochemical and optical parameters [Chl-a, total suspended matter (TSM), algal and non-algal particulate absorption (a ph and a nap , respectively) and coloured dissolved organic matter (CDOM) absorption].</s>
                    <s>The analysis of the spatial variability was undertaken on the 27 th of June at seven stations along the bay (red circles in 
                        <ref type="bibr">Fig 1)</ref>.
                    </s>
                    <s>At each station, measurements of physical (temperature and salinity) and optical parameters were made with a ship deployed profiling package and water samples were collected at three different depths (0.5 m, 3 m and 0.5 m above the bottom).</s>
                    <s>Instruments measured for 5 minutes every 0.5 m along each depth profile.</s>
                </p>
                <p>
                    <s>Physical parameters.</s>
                    <s>Wind data were obtained from the weather station nearby the coastline in Les Cases de Alcanar, ca. 5 km south of Alfacs Bay (Fig 
                        <ref type="figure" target="#fig_0">1</ref>).
                    </s>
                    <s>Three-dimensional current velocities were measured with an upward-looking Acoustic Doppler Current Profiler (ADCP, 2MHz Aquadopp, Nortek) moored at roughly 2 m depth since the maximum depth at this station was 3.5 m.</s>
                    <s>It was configured to record 10-min average data with vertical cells of about 25 cm.</s>
                </p>
                <p>
                    <s>Water temperature and salinity were measured with the CTD48M (Sea&amp;Sun Technology, Germany).</s>
                    <s>Unfortunately, a failure in the instrument caused the loss of the data corresponding to the temporal analysis at the fixed sampling station.</s>
                    <s>Temperature data provided by the multiple-parameter system LISST (Sequoia Scientific Inc.) were used instead.</s>
                </p>
                <p>
                    <s>Optical measurements.</s>
                    <s>Spectral beam attenuation coefficient was measured with the 25-cm path length VIPER (TriOS GmbH., Germany 
                        <ref type="bibr" target="#b18">[19]</ref>).
                    </s>
                    <s>It is an open-path hyperspectral transmissometer which measures the beam attenuation, c(λ), in the spectral range from 360 nm to 750 nm, with an optical resolution of 15 nm (defined by the FWHM) and an acceptance angle of 0.8˚.</s>
                    <s>More detailed information about the instrument performance and validation can be found in Ramı ´rez-Pe ´rez et al. (2015) 
                        <ref type="bibr" target="#b33">[34]</ref>.
                    </s>
                    <s>VIPER measurements were carefully performed (i.e. on the shadow side of the ship and under calm sea surface conditions) to avoid ambient light contamination 
                        <ref type="bibr" target="#b33">[34]</ref>.
                    </s>
                    <s>c(λ) data were collected continuously and averaged over 5 minutes.</s>
                    <s>Milli-Q water references were subtracted and data were corrected for temperature and salinity dependence of pure seawater to derive the total non-water beam attenuation spectrum, c pg (λ) 
                        <ref type="bibr" target="#b33">[34]</ref>.
                    </s>
                    <s>Measurements of particle size distribution (PSD) from 1.25 μm to 250 μm were conducted with the LISST-100X (Sequoia Scientific, Inc.).</s>
                    <s>This instrument measures the near-forward scattering at 32 logarithmically spaced angles and the beam attenuation at 670 nm 
                        <ref type="bibr" target="#b34">[35]</ref>.
                    </s>
                    <s>A successfully performance analysis between the attenuation measured at 670 nm by LISST and VIPER was previously carried out 
                        <ref type="bibr" target="#b33">[34]</ref>.
                    </s>
                    <s>Therefore, this study focused only on the LISST scattering data to derive the particle size distribution.</s>
                    <s>The volume concentration, V(D), was obtained through inversion of the angular forward scattering pattern using the manufacturerprovided inversion routine.</s>
                    <s>The used inversion algorithm is based on a kernel matrix derived from Mie theory of scattering by spherical particles.</s>
                    <s>Data from the outer and inner rings were excluded from further analysis due to the instability observed in the smallest and largest size ranges 
                        <ref type="bibr" target="#b35">[36]</ref>.
                    </s>
                    <s>Then, the particle number distribution, N(D), was calculated from the equation:</s>
                </p>
                <formula xml:id="formula_0">NðDÞ ¼ 6 Á VðDÞ=ðpD 3 Þ
                    <label>ð1Þ</label>
                </formula>
                <p>
                    <s>where D represents the diameter of a volume-equivalent sphere for the midpoint of each size class.</s>
                    <s>To obtain the PSD, the average number of particles in each size class was divided by the width of the class, which is denoted as N'(D).</s>
                    <s>Finally, the PSD was fitted to the power-law function (or Junge distribution) 
                        <ref type="bibr" target="#b36">[37]</ref>:
                    </s>
                </p>
                <formula xml:id="formula_1">N 0 ðDÞ ¼ N 0 ðD 0 Þð D D 0 Þ Àx
                    <label>ð2Þ</label>
                </formula>
                <p>
                    <s>where D 0 is a reference diameter, N'(D 0 ) the differential number concentration at D 0 and ξ is the nondimensional PSD slope.</s>
                    <s>Laboratory analysis of water samples.</s>
                </p>
                <p>
                    <s>• CDOM absorption measurements: absorbance spectra (240-600 nm) were acquired with the Aqualog fluorescence spectrometer (HORIBA JobinYvon, Germany) directly after sampling.</s>
                    <s>Water samples were syringe-filtered with 0.2 μm Whatman Spartan filters before analysis with 1 cm quartz cuvettes.</s>
                    <s>Absorbance measurements were further converted to absorption coefficient, which is used as a proxy for the CDOM content in a given water sample.</s>
                    <s>The Napierian absorption coefficient of CDOM at each wavelength (a λ ) was obtained from the given equation:</s>
                </p>
                <formula xml:id="formula_2">a l ðm À1 Þ ¼ ð2:303 Á A l Þ=L
                    <label>ð3Þ</label>
                </formula>
                <p>
                    <s>where A λ is the absorbance at specific wavelength and L is the cuvette path length in meters.</s>
                </p>
                <p>
                    <s>More detailed information about the measurement protocol can be found in Gonc ¸alves-Araujo et al. (2015) 
                        <ref type="bibr">[38]</ref>.
                    </s>
                    <s>CDOM absorption spectra, a(λ), were fitted to the following exponential function 
                        <ref type="bibr" target="#b37">[39]</ref>:
                    </s>
                </p>
                <formula xml:id="formula_3">aðlÞ ¼ aðl 0 Þ Á e ÀSðlÀl 0 Þ
                    <label>ð4Þ</label>
                </formula>
                <p>
                    <s>where S represents the spectral slope and a(λ 0 ), the absorption coefficient at a reference wavelength λ 0 (443 nm in this case).</s>
                    <s>The function was fitted to the wavelength range from 300 to 600 nm and extrapolated to 720 nm for later analysis of CDOM contribution at longer wavelengths.</s>
                </p>
                <p>
                    <s>• Algal and non-algal particulate absorption (a ph (λ) and a nap (λ)): water samples were immediately filtered through ø 47-mm GF/F filters (pore size 0.7 μm), shock-frozen in liquid nitrogen and stored at -80˚C until analysis in the laboratory at the Alfred-Wegener-Institute.</s>
                    <s>The partition of the particulate absorption, a p (λ), into phytoplankton, a ph (λ), and non-algal absorption, a nap (λ), was performed by the filter pad technique following Ferrari and Tassan (1999) 
                        <ref type="bibr" target="#b38">[40]</ref>.
                    </s>
                    <s>We used a Cary 4000 UV/VIS dual beam spectrophotometer equipped with a 150-mm integrating sphere (Varian Inc., USA) as described in Taylor et al. (2011) 
                        <ref type="bibr" target="#b39">[41]</ref>.
                    </s>
                    <s>The measurement procedures and data analysis were performed as detailed in Ro ¨ttgers and Gehnke (2012) 
                        <ref type="bibr" target="#b40">[42]</ref>.
                    </s>
                    <s>Phytoplankton absorption a ph was obtained as the difference between a p and a nap .</s>
                </p>
                <p>
                    <s>• Chlorophyll a: water samples for phytoplankton pigments analysis were filtered immediately after collection through ø 25-mm Whatman GF/F filters (pore size 0.7 μm).</s>
                    <s>Then, filters were shock-frozen in liquid nitrogen and stored at -80˚C until analysis in the laboratory at the Alfred-Wegener-Institute.</s>
                    <s>The extracted pigments were analyzed using the High Performance Liquid Chromatography (HPLC) technique following the method of Barlow et al.</s>
                </p>
                <p>
                    <s>(1997) 
                        <ref type="bibr" target="#b41">[43]</ref>, with modification customized to our instruments as detailed in Taylor et al.
                    </s>
                </p>
                <p>
                    <s>(2011) 
                        <ref type="bibr" target="#b39">[41]</ref>.
                    </s>
                    <s>In this study, we use the Chl-a concentration as an index of phytoplankton biomass and covarying materials (biogenic detritus).</s>
                </p>
                <p>
                    <s>• Total suspended matter concentration: TSM concentration was determined gravimetrically following Ro ¨ttgers et al. (2014) 
                        <ref type="bibr" target="#b42">[44]</ref> to reject potential errors associated with salt retention in the filters and loss of materials during washing and combustion 
                        <ref type="bibr" target="#b42">[44]</ref>
                        <ref type="bibr" target="#b43">[45]</ref>.
                    </s>
                    <s>Thereby, four different volumes of each water sample (within the range from 0.6 to 2.2 liters) were filtered immediately after collection through pre-weighed Whatman GF/F filters (ø 47 mm).</s>
                    <s>Afterwards, the gained mass of each filter was determined by subtracting the weight of the filter from the final weight.</s>
                    <s>A linear regression analysis was performed for filtered volume versus the gained mass, and the regression slope was taken as the TSM concentration value 
                        <ref type="bibr" target="#b42">[44]</ref>.
                    </s>
                </p>
            </div>
            <div
                xmlns="http://www.tei-c.org/ns/1.0">
                <head>Data and statistical analysis</head>
                <p>
                    <s>This study explored the information contained in the beam attenuation spectrum as a proxy for different biogeochemical properties.</s>
                    <s>In particular, the analysis focused on three major spectral features, which are described as follow (Fig 
                        <ref type="figure" target="#fig_1">2</ref>):
                    </s>
                </p>
                <p>
                    <s>• Spectral slope: it is the major spectral shape feature of the beam attenuation coefficient and is related to the particle size distribution and CDOM content 
                        <ref type="bibr" target="#b44">[46]</ref>.
                    </s>
                    <s>For this reason and due to the lack of in situ CDOM absorption measurements, we used the total non-water beam attenuation spectral slope to detect variations in CDOM.</s>
                    <s>This simplification was adopted because of the high CDOM content in Alfacs Bay 
                        <ref type="bibr" target="#b30">[31]</ref> and the availability of additional particle size distribution measurements.
                    </s>
                    <s>To compute this parameter, beam attenuation spectra were fitted to the power-law function 
                        <ref type="bibr" target="#b44">[46]</ref>:
                    </s>
                </p>
                <formula xml:id="formula_4">c pg ðlÞ ¼ c pg ðl r Þ Á ðl=l r Þ Àg
                    <label>ð5Þ</label>
                </formula>
                <p>
                    <s>where λ r is a reference wavelength (532 nm, in our case) and γ is the power-law slope.</s>
                    <s>The exponent was derived by non-linear least-squares regression, with a r 2 &gt;0.98 in all cases.</s>
                </p>
                <p>
                    <s>• Peak height associated with red band phytoplankton absorption peak: although c(λ) is typically a smoothly varying function of wavelength 
                        <ref type="bibr" target="#b44">[46]</ref>
                        <ref type="bibr" target="#b45">[47]</ref>, deviations from its theoretical behavior -associated with absorbing particles-have been reported by several authors 
                        <ref type="bibr" target="#b46">[48]</ref>
                        <ref type="bibr" target="#b47">[49]</ref>
                        <ref type="bibr" target="#b48">[50]</ref>.
                    </s>
                    <s>
                        <ref type="bibr" target="#b46">Zaneveld and Kitchen (1995)</ref>
                        <ref type="bibr" target="#b46">[48]</ref> observed step increases at the long-wavelength side of the chlorophyll absorption peaks as result of anomalous diffraction and dispersion 
                        <ref type="bibr" target="#b49">[51]</ref>, which was called "absorption peak effects".
                    </s>
                    <s>This local maximum is therefore expected to be related to the Chl-a content (in addition to other factors such as the particle size distribution) 
                        <ref type="bibr" target="#b46">[48]</ref>.
                    </s>
                    <s>For this reason, the link between the local maximum of c(λ) and the Chl-a concentration was tested in this study, since it can provide a first estimate of phytoplankton biomass and covarying materials.</s>
                    <s>Similarly to Davis et al. (1997) 
                        <ref type="bibr" target="#b50">[52]</ref>, who estimated the Chl-a concentration based on the red band absorption peak -a(676)-by subtracting a baseline, we computed the peak height in the red band of the beam attenuation spectrum.
                    </s>
                    <s>However, here the local maximum was found at 685 nm (approximately 10 nm past the absorption peak, in agreement with Zaneveld and Kitchen (1995) 
                        <ref type="bibr" target="#b46">[48]</ref>).
                    </s>
                    <s>The attenuation at 710 nm was then subtracted from this local peak as a base value to remove the effect of particle scattering.</s>
                    <s>This wavelength was empirically chosen based on providing the best results (based on r 2 and RMSE as compared to collocated Chl-a data determined by HPLC at discrete samples).</s>
                    <s>Thereby, the peak height was computed as c pg (685)-c pg (710), which was used as a proxy for Chl-a concentration.</s>
                </p>
                <p>
                    <s>• c pg (710): At long visible wavelengths, the attenuation is assumed to be determined mostly by their scattering properties and secondarily by the particulate absorption, whereas CDOM absorption has a insignificant contribution 
                        <ref type="bibr" target="#b14">[15,</ref>
                        <ref type="bibr" target="#b51">[53]</ref>
                        <ref type="bibr" target="#b52">[54]</ref>
                        <ref type="bibr" target="#b53">[55]</ref>.
                    </s>
                    <s>For this reason, the attenuation in the red part of the visible spectrum (i.e.</s>
                    <s>660 and 670 nm) has been commonly used as proxy for suspended particle concentration, since it responds primarily to concentration and secondarily to size and nature of the particles 
                        <ref type="bibr" target="#b54">[56]</ref>.
                    </s>
                    <s>While this assumption can be considered true in open waters, it could fail for complex coastal waters with high CDOM contents, which can yield a non-negligible CDOM absorption at long wavelengths (~700 nm) (e.g.</s>
                    <s>
                        <ref type="bibr" target="#b55">[57]</ref>).
                    </s>
                    <s>Nevertheless, the exponential decrease of CDOM absorption with wavelength involves that the longer the wavelength, the smaller its contribution to the beam attenuation signal.</s>
                </p>
                <p>
                    <s>For this reason, this study used the beam attenuation in the NIR (concretely at 710 nm) as proxy for TSM, where the CDOM absorption influence was minimum.</s>
                </p>
                <p>
                    <s>Variations in time and space of these optical parameters were analyzed by means of statistical techniques.</s>
                    <s>In particular, the Kruskal-Wallis H-test was applied at 5% significance level (α = 0.05) in order to identify temporal and spatial patterns in Alfacs Bay, given that data were not normally distributed, as demonstrated by the Shapiro-Wilk test performed prior to analysis.</s>
                    <s>On the other hand, since both inputs were subject to errors, a model II linear regression analysis was applied to investigate the relationships between optical parameters and biogeochemical variables.</s>
                    <s>Additionally, the correlations between them were examined using nonparametric Spearman-r correlation coefficients and the associated errors were determined by means of the root mean squared error (RMSE).</s>
                </p>
            </div>
            <div
                xmlns="http://www.tei-c.org/ns/1.0">
                <head>Results and Discussion</head>
                <p>
                    <s>At first, the results from validating the above-mentioned beam attenuation-based proxies with laboratory-measured biogeochemical variables are presented.</s>
                    <s>Secondly, the temporal and spatial variability and patterns of these optical and biogeochemical parameters in Alfacs Bay are shown.</s>
                </p>
            </div>
            <div
                xmlns="http://www.tei-c.org/ns/1.0">
                <head>Validation of biogeochemical proxies</head>
                <p>
                    <s>Attenuation at 710 nm vs. total suspended matter concentration.</s>
                    <s>The comparison between the total non-water beam attenuation coefficient and the particulate and CDOM absorption at 710 nm (c pg (710), a p (710) and a CDOM (710), respectively) was performed to determine the relative contribution of the two last components to the bulk c pg (710) signal (Fig 
                        <ref type="figure" target="#fig_2">3a</ref>).
                    </s>
                    <s>In all samples, a p (710) and a CDOM (710) represented a minor fraction of c pg (710), since their values were two orders of magnitude lower than c pg (710).</s>
                    <s>c pg (710) oscillated from 0.96 to 4.66 m -1 , whereas a p (710) and a CDOM (710) ranged from 0.0065 to 0.025 m -1 in our dataset.</s>
                    <s>The insignificant CDOM contribution to the attenuation signal at 710 nm, enabled to use c pg (710) as proxy for TSM.</s>
                    <s>Then, a model II linear regression analysis was applied to investigate the relationship between c pg (710) and TSM (Fig 
                        <ref type="figure" target="#fig_2">3b</ref>).
                    </s>
                    <s>The regression slope (± SD) was 0.224±0.03</s>
                    <s>gÁm -2 , which agreed with previous works 
                        <ref type="bibr" target="#b51">[53,</ref>
                        <ref type="bibr" target="#b52">54]</ref>.
                    </s>
                    <s>In addition, although our slope was flatter, our observations were within the confidence bounds of the relationship found by 
                        <ref type="bibr" target="#b53">Neukermans et al. (2012)</ref>
                        <ref type="bibr" target="#b53">[55]</ref> for the C-Star attenuation meter (with an acceptance angle of 1.2˚) (Fig 
                        <ref type="figure" target="#fig_2">3b</ref>).
                    </s>
                    <s>This disparity in the regression slope can be partly explained due to the different attenuation wavelength used in the relationship (670 and 710 nm in Neukermans et al. (2012) 
                        <ref type="bibr" target="#b53">[55]</ref> and in our study, respectively).
                    </s>
                    <s>A significant correlation was observed between c pg (710) and TSM, with r 2 = 0.75 and RMSE = 0.49 m -1 (p&lt;0.001).</s>
                </p>
                <p>
                    <s>c pg (685) peak height vs. Chl-a concentration.</s>
                    <s>A relatively good linear correlation was found between the Chl-a concentration and the non-water attenuation peak height at 685 nm, c pg (685) peak (r 2 = 0.79, RMSE = 0.014 m -1 , p&lt;0.001, Fig 
                        <ref type="figure">4a</ref>).
                    </s>
                    <s>Thereby, it is reasonable to consider c pg (685) peak as a proxy for tracking changes in Chl-a concentration.</s>
                    <s>Since this peak was associated with the red-band Chl-a absorption peak due to anomalous dispersion, the linear correlation between c pg (685) peak and the laboratory-derived phytoplankton absorption at 676 nm, a ph (676), was examined (Fig 
                        <ref type="figure">4b</ref>).
                    </s>
                    <s>A significant linear correlation was also obtained in this case, with r 2 = 0.68 and RMSE = 0.014 m -1 (p&lt;0.01).</s>
                    <s>In turn, the correlation between Chla concentration and a ph (676) was analyzed (r 2 = 0.83; RMSE = 0.019 m -1 ; p&lt;0.001) and compared to the power-law fit obtained by 
                        <ref type="bibr" target="#b56">Bricaud et al. (1995)</ref>
                        <ref type="bibr" target="#b56">[58]</ref>.
                    </s>
                    <s>Our observations were in agreement with the function predicted by those authors (Fig 
                        <ref type="figure">4c</ref>).
                    </s>
                    <s>According to 
                        <ref type="bibr" target="#b56">Bricaud et al. (1995)</ref>
                        <ref type="bibr" target="#b56">[58]</ref>, the relationship between a ph (λ) and Chl-a varied as a result of changes in packaging effect and pigment composition.
                    </s>
                    <s>Our proxy is therefore suspected to be affected not only by these factors but also by minor contributions associated with CDOM and non-algal particles absorption, particle size distribution or Chl-a fluorescence, which compromise the relationship found between Chl-a concentration and c pg (685) peak height.</s>
                    <s>For this reason, we recommend this approach as a qualitative proxy, since its capability to provide quantitative estimates of Chl-a concentration should be further explored with a more extensive dataset.</s>
                    <s>The potential influence of Chl-a fluorescence, which could lead to a decrease in the attenuation signal around 685 nm, was not evaluated here.</s>
                    <s>Nevertheless, we assumed a minor effect since Chl-a fluorescence from the light beam leads to an emission into all directions, and therefore the amount of fluorescence into the direction of the beam towards the detector can be considered insignificant.</s>
                </p>
                <p>
                    <s>Spectral slope of total non-water beam attenuation vs. a CDOM (443).</s>
                    <s>The evolution of the attenuation spectral slope, the particle size distribution slope and the CDOM absorption at 443 nm was analyzed to evaluate the suitability of using c pg slope as an indicator of CDOM content.</s>
                    <s>Variations in c pg slope responded mainly to changes in a CDOM (443), since both parameters exhibited a fairly similar behavior although the magnitude of these variations differed.</s>
                    <s>PSD slope, however, varied within a relatively narrow range (from 3.43 to 4.24), playing a smaller role in the variations observed in c pg slope (Fig 
                        <ref type="figure">5a</ref>).
                    </s>
                    <s>Note that the PSD slope of the LISST and the VIPER-derived c pg slope are sensitive to different particle range given the distinct scattering angles they collect, which can contribute to the different behavior observed among both variables.</s>
                    <s>In order to test whether these variations in c pg slope were associated with changes in the magnitude of a CDOM instead of in the CDOM absorption spectral slope, S CDOM , the correlation between a CDOM (443) and S CDOM was analyzed (p&lt;0.001).</s>
                    <s>An inverse relationship was found between both variables, which is consistent with the observations from 
                        <ref type="bibr" target="#b57">Helms et al. (2008)</ref>
                        <ref type="bibr" target="#b57">[59]</ref> (Fig 
                        <ref type="figure">5b</ref>).
                    </s>
                    <s>In contrast, no correlation was observed between S CDOM and c pg slope (p&gt;0.1).</s>
                    <s>Finally, the relationship between a CDOM (443) and c pg slope showed a significant correlation (p&lt;0.001),</s>
                    <s>although the coefficient of determination was not too strong (r 2 = 0.5; RMSE = 0.93).</s>
                    <s>This correlation was due to the high CDOM content in Alfacs Bay 
                        <ref type="bibr" target="#b30">[31]</ref>.
                    </s>
                    <s>For future studies, however, it is recommended to perform in situ measurements of 0.2 μm-filtered and unfiltered seawater alternatively to determine CDOM absorption separately (e.g.</s>
                    <s>
                        <ref type="bibr" target="#b13">[14]</ref>).
                    </s>
                </p>
            </div>
            <div
                xmlns="http://www.tei-c.org/ns/1.0">
                <head>Spatial variability</head>
                <p>
                    <s>The horizontal and vertical spatial variability of the environmental, optical and biogeochemical parameters was analyzed based on vertical profiles measured at seven stations spread in Alfacs Bay (Fig 
                        <ref type="figure">6a</ref>).
                    </s>
                    <s>The vertical profiles of temperature and salinity showed a stratified water column, with a fresher and warmer surface layer and an underlying cooler and saltier water layer (Fig 6b 
                        <ref type="figure">and 6c</ref>).
                    </s>
                    <s>The pycnocline was located at ~3.5m depth, consistent with previous studies   
                        <ref type="bibr" target="#b21">[22,</ref>
                        <ref type="bibr" target="#b31">[32]</ref>
                        <ref type="bibr" target="#b32">[33]</ref>.
                    </s>
                    <s>The averaged temperature and salinity gradients between surface and bottom were of ΔT = 1.33˚C and ΔS = 1.84, with maximal differences of 2.1˚C and 2.7, respectively (found in the bay mouth).</s>
                </p>
                <p>
                    <s>The stratification of the water column determined the spatial variations observed in the optical properties.</s>
                    <s>Thereby, significant differences in the beam attenuation spectra as well as in CDOM and phytoplankton absorption spectra were found between surface and bottom water layers (i.e.</s>
                    <s>z 3.5 m and &gt;3.5 m, respectively) (p&lt;0.01)</s>
                    <s>(Fig 
                        <ref type="figure" target="#fig_5">7</ref>).
                    </s>
                    <s>Meanwhile, no noticeable differences were detected in the non-algal particulate absorption, a nap (λ) (not shown).</s>
                    <s>Waters below the pycnocline were characterized by a higher attenuation and phytoplankton absorption, whereas CDOM absorption was lower.</s>
                    <s>The shape of the particle size distribution was relatively homogeneous, although the PSD slope decreased slightly with depth (Table 
                        <ref type="table">1</ref>) (p&gt;0.05).
                    </s>
                </p>
                <p>
                    <s>The analysis of the spatial patterns based on c pg (λ) measurements was carried out by using the above-mentioned attenuation spectral features -c pg (710), c pg (685) peak and c pg slope-and their relationships with the underlying biogeochemistry.</s>
                    <s>In general, surface waters presented steeper c pg slopes and lower values of both c pg (685) peak and c pg (710).</s>
                    <s>In contrast, c pg (λ) measured below the pycnocline showed the opposite behavior, although their oscillations were larger (Table 
                        <ref type="table">1</ref>, 
                        <ref type="bibr">Fig 8)</ref>.
                    </s>
                    <s>Statistically significant differences (p&lt;0.01) between surface and bottom layers were found in c pg (710) and c pg slope, which increased by 40% and decreased by 27% with depth, respectively (Table 
                        <ref type="table">1</ref>, Fig 
                        <ref type="figure" target="#fig_8">9a)</ref>.
                    </s>
                    <s>The observed decrease in the attenuation spectral slope with depth can be associated not only with a reduction in CDOM contribution but also with resuspension events.</s>
                    <s>Horizontally, except slight differences detected in the bottom layer, no significant spatial patterns were observed along the different bay regions, suggesting a horizontal homogeneity in c pg (λ) spectral features (Fig 
                        <ref type="figure" target="#fig_7">8</ref>).
                    </s>
                </p>
                <p>
                    <s>On the other hand, the spatial variability observed in the biogeochemical parameters over the sampled transects were in agreement with the total non-water beam attenuation proxies, since noticeable differences were found between surface and bottom water layers for these as   well.</s>
                    <s>While TSM and Chl-a increased with depth, CDOM absorption decreased (Table 
                        <ref type="table">1</ref>, Fig 
                        <ref type="figure" target="#fig_7">8</ref>).
                    </s>
                    <s>However, horizontal variations observed in the attenuation proxies were less pronounced than those in the biogeochemical variables (Fig 
                        <ref type="figure" target="#fig_7">8</ref>).
                    </s>
                </p>
                <p>
                    <s>Finally, the results from the laboratory-measured absorption spectra exhibited differences in optical constituents contribution between surface and bottom layers, although the averaged magnitude of the total absorption was very similar for both cases (0.82 and 0.84 m -1 , respectively) (Fig 
                        <ref type="figure" target="#fig_8">9a</ref>).
                    </s>
                    <s>The spatial variations found in these variables coincided with those observed from the beam attenuation-based analysis.</s>
                    <s>The ternary plot of the partitioned absorption at each sampling station showed that surface waters were characterized by a higher proportion of CDOM and lower phytoplankton absorption than the water below the pycnocline, which presented larger particulate fraction (Fig 
                        <ref type="figure" target="#fig_8">9b</ref>).
                    </s>
                    <s>These observations are consistent with a previous study in the region 
                        <ref type="bibr" target="#b30">[31]</ref>, that found similar vertical distribution of optically active constituents (i.e.
                    </s>
                    <s>Chl-a, TSM, and CDOM).</s>
                </p>
            </div>
            <div
                xmlns="http://www.tei-c.org/ns/1.0">
                <head>Temporal variability</head>
                <p>
                    <s>The 48 hours-time series of wind data showed a clear bimodal pattern with two dominant directions, from southwest and northwest (Fig 
                        <ref type="figure" target="#fig_10">10a and 10b</ref>).
                    </s>
                    <s>NW winds blew for ca.</s>
                    <s>10-12 hours during the nighttime (from 10 pm until 9:30 am, approximately) and shifted from SE to SW during daytime.</s>
                    <s>The velocities reached by southern winds were 5 mÁs -1 on average, with maximum values up to 8 mÁs -1 in the evening (8:30 pm).</s>
                    <s>The strongest winds blew from SW from 5 pm to 10 pm.</s>
                    <s>The observed wind pattern responded to the typical land breeze characterized by weak nocturnal winds (&lt;2 mÁs -1 ) blowing from land, that reverses the direction and increases the intensity during the daytime (sea breeze) 
                        <ref type="bibr" target="#b29">[30,</ref>
                        <ref type="bibr" target="#b32">33]</ref>.
                    </s>
                    <s>A similar behavior was observed in the surface current velocities, indicating that the water circulation at the sampling station was driven by the prevailing wind (Fig 
                        <ref type="figure" target="#fig_10">10c</ref>).
                    </s>
                    <s>Thereby, surface water flowed in northward direction during daytime in response to southern winds and southwards when the wind ceased during nighttime.</s>
                    <s>This pattern was observed within the first 2 m depth, though the velocity decreased with depth.</s>
                </p>
                <p>
                    <s>The effect of hydrodynamics on the water optical properties was analyzed for time and depth, and no significant correlations (p&gt;0.05) between the optical properties and both the current velocity and direction were found.</s>
                    <s>Thereby, the differences in the optical parameters between both prevailing flow regimes (i.e.</s>
                    <s>southward and northward currents) were not statistically significant (p&gt;0.05)</s>
                    <s>(Fig 
                        <ref type="figure" target="#fig_11">11)</ref>.
                    </s>
                </p>
                <p>
                    <s>The surface current velocity (at 0.5 m depth) was 0.1 mÁs -1 on average, with a maximum value of 0.  current velocity within the time interval from 6 pm to 12 am, on June 25, in agreement with c pg (710).</s>
                    <s>Nevertheless, the magnitude of this increase differed, since c pg (710) showed a rise of 20% with respect to the mean value, whereas a 40% increase was detected for TSM concentration (Fig 
                        <ref type="figure" target="#fig_6">13a</ref>).
                    </s>
                    <s>Apart from this, no similar patterns were observed between both parameters along the time series, involving no significant correlation between TSM and c pg (710) (p&gt;0.05).</s>
                    <s>In contrast, significant correlations were found between Chl-a concentration and c pg (685) peak (p&lt;0.05), as well as between CDOM absorption at 443 nm and the attenuation spectral slope (p&lt;0.01).</s>
                    <s>The bimodal pattern detected in the optical proxies was also observed within the bulk analyses of Chl-a and a CDOM (443).</s>
                    <s>Both variables increased their magnitude during southward current conditions (i.e. from 12 am to 12 pm, approximately) (Fig 13b 
                        <ref type="figure" target="#fig_6">and 13c</ref>).
                    </s>
                </p>
            </div>
            <div
                xmlns="http://www.tei-c.org/ns/1.0">
                <head>Conclusions</head>
                <p>
                    <s>Continuous measurements of spectral beam attenuation coefficient collected in situ with an advanced-technology transmissometer have been proven as a powerful tool to better understand the existing interactions between physical and biogeochemical variables in the complex estuarine waters of Alfacs Bay (NW Mediterranean).</s>
                    <s>In particular, this approach allowed the detection of qualitative changes in the major biogeochemical variables (i.e.</s>
                    <s>Chl-a, TSM and CDOM) at high temporal and spatial scales in this microtidal estuary.</s>
                    <s>Spatial patterns observed in the biogeochemical properties were driven by the vertical stratification of the water column.</s>
                    <s>Accordingly, surface and bottom water layers were characterized by a different relative contribution of the major biogeochemical variables to the bulk beam attenuation.</s>
                    <s>Meanwhile, observations along the 48 hours time series revealed a coupling between physical (meteorological and hydrodynamic conditions) and biogeochemical properties, since the prevailing hydrodynamic regimes determined the variations in water composition.</s>
                    <s>The temporal and spatial patterns were obtained based on the spectral features of the total non-water beam attenuation coefficient and validated with laboratory results of discrete water samples (i.e.</s>
                    <s>biogeochemical variables and partitioned absorption coefficients).</s>
                    <s>Significant linear relationships were found between the non-water beam attenuation proxies and the biogeochemical variables.</s>
                    <s>However, for future studies, it is highly recommended to include in situ beam attenuation measurements of 0.2 μm-filtered seawater for better CDOM characterization.</s>
                    <s>The proposed proxies are subject to numerous uncertainties due to several factors affecting the attenuation signal (CDOM absorption and particle characteristics such as size, shape, composition, etc., which determine their absorption and scattering properties).</s>
                    <s>For this reason, the collection of discrete water samples for laboratory analysis of biogeochemical variables is required for validation purposes.</s>
                </p>
                <p>
                    <s>Our results based on a high-frequency, low power ( 3 W), compact, versatile (adaptable to different observing platforms) and cost-effective (~10000€) beam attenuation meter, as well as on a simple and rapid data processing method, have demonstrated a capability to improve the operational monitoring of coastal waters towards a better understanding of their complex physical and biogeochemical interactions.</s>
                </p>
            </div>
            <figure
                xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_0">
                <head>Fig 1 .</head>
                <label>1</label>
                <figDesc>
                    <div>
                        <p>
                            <s>Fig 1. Location map of Alfacs Bay in NW Mediterranean Sea.</s>
                            <s>The red star indicates the location of the weather station, whereas circles show the sampling stations for the analysis of temporal (blue circle) and spatial (red circles) patterns.</s>
                            <s>Map produced with Open Street Map.</s>
                            <s>doi:10.1371/journal.pone.0170706.g001</s>
                        </p>
                    </div>
                </figDesc>
                <graphic coords="4,95.98,78.01,479.91,222.63" type="bitmap" />
            </figure>
            <figure
                xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_1">
                <head>Fig 2 .</head>
                <label>2</label>
                <figDesc>
                    <div>
                        <p>
                            <s>Fig 2. Representative total non-water beam attenuation spectrum measured in Alfacs Bay in June 2013.</s>
                            <s>Numbers 1-3 indicate the three spectral features used in this study as proxies for biogeochemical variables: 1 = spectral slope of c pg (λ) for CDOM absorption, 2 = c pg (685)-c pg (710) for Chl-a and 3 = c pg (710) for TSM concentration.</s>
                            <s>doi:10.1371/journal.pone.0170706.g002</s>
                        </p>
                    </div>
                </figDesc>
                <graphic coords="7,108.00,78.01,467.94,363.74" type="bitmap" />
            </figure>
            <figure
                xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_2">
                <head>Fig 3 .</head>
                <label>3</label>
                <figDesc>
                    <div>
                        <p>
                            <s>Fig 3. (a) Comparison of c pg (710), a p (710) and a CDOM (710) along all the samples used in this study.</s>
                            <s>(b) Scatter plot of TSM and the attenuation at 710 nm.</s>
                            <s>Best fit ± 90% confidence intervals are shown in blue.</s>
                            <s>Black solid and dashed lines represent the 90% prediction bounds of the [TSM]-c p (670 nm) data of Neukermans et al. (2012) (for the C-Star).</s>
                            <s>doi:10.1371/journal.pone.0170706.g003</s>
                        </p>
                    </div>
                </figDesc>
                <graphic coords="9,96.04,78.01,479.85,344.24" type="bitmap" />
            </figure>
            <figure
                xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_3">
                <head>Fig 4 .Fig 5 .Fig 6 .</head>
                <label>456</label>
                <figDesc>
                    <div>
                        <p>
                            <s>Fig 4. Scatter plots of (a) Chl-a concentration and c pg (685) peak.</s>
                            <s>(b) Phytoplankton absorption at 676 nm, a ph (676), and c pg (685) peak.</s>
                            <s>(c) Chl-a concentration and a ph (676).</s>
                            <s>The red line represents the power-law fit proposed by Bricaud et al. (1995).</s>
                            <s>Blue lines are the regression line ± 90% confidence intervals.</s>
                            <s>doi:10.1371/journal.pone.0170706.g004</s>
                        </p>
                    </div>
                </figDesc>
                <graphic coords="10,95.98,78.01,479.91,356.32" type="bitmap" />
            </figure>
            <figure
                xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_4">
                <head></head>
                <label></label>
                <figDesc>
                    <div>
                        <p>
                            <s>doi:10.1371/journal.pone.0170706.g006</s>
                        </p>
                    </div>
                </figDesc>
            </figure>
            <figure
                xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_5">
                <head>Fig 7 .</head>
                <label>7</label>
                <figDesc>
                    <div>
                        <p>
                            <s>Fig 7. Optical properties measured at seven stations occupied in Alfacs Bay and over the water column.</s>
                            <s>(a) In situ measured total non-water beam attenuation spectra.</s>
                            <s>(b) LISST-derived size distribution for particle number.</s>
                            <s>(c) CDOM absorption and (d) phytoplankton absorption spectra.</s>
                            <s>Blue and red lines indicate measurements performed above and below the pycnocline, respectively.</s>
                            <s>doi:10.1371/journal.pone.0170706.g007</s>
                        </p>
                    </div>
                </figDesc>
                <graphic coords="12,96.04,78.01,479.85,376.33" type="bitmap" />
            </figure>
            <figure
                xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_6">
                <head>Table 1 .</head>
                <label>1</label>
                <figDesc>
                    <div>
                        <p>
                            <s>Mean and standard deviation of the non-water beam attenuation-based proxies and biogeochemical variables for waters above and below the pycnocline (i.e.</s>
                            <s>z 3.5 m and z &gt; 3</s>
                        </p>
                    </div>
                </figDesc>
            </figure>
            <figure
                xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_7">
                <head>Fig 8 .</head>
                <label>8</label>
                <figDesc>
                    <div>
                        <p>
                            <s>Fig 8. Spatial distribution of proxies from non-water beam attenuation and biogeochemical variables.</s>
                            <s>Attenuation at 710 nm, c pg (710), vs. TSM at the (a) surface (z % 0.5 m) and (b) bottom (z % 5 m) layers of Alfacs Bay.</s>
                            <s>c pg (685) peak vs. Chl-a concentration at the (c) surface and (d) bottom layers.</s>
                            <s>c pg spectral slope vs. CDOM absorption at 443 nm at the (e) surface and (f) bottom layers.</s>
                            <s>Produced with Ocean Data View software [60].</s>
                            <s>doi:10.1371/journal.pone.0170706.g008</s>
                        </p>
                    </div>
                </figDesc>
                <graphic coords="13,200.01,423.89,344.30,221.22" type="bitmap" />
            </figure>
            <figure
                xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_8">
                <head>Fig 9 .</head>
                <label>9</label>
                <figDesc>
                    <div>
                        <p>
                            <s>Fig 9. Analysis of partitioned absorption data.</s>
                            <s>(a) Contribution of the major biogeochemical variables to the total non-water absorption coefficient at 440 nm for the two different water layers.</s>
                            <s>(b) Ternary plot of the partitioned absorption coefficient at 440 nm (CDOM, phytoplankton, and non-algal particles) measured at the different sampling stations in Alfacs Bay.</s>
                            <s>Blue and red circles correspond to water samples collected above and below the pycnocline, respectively.</s>
                            <s>doi:10.1371/journal.pone.0170706.g009</s>
                        </p>
                    </div>
                </figDesc>
                <graphic coords="14,96.04,78.01,479.85,280.29" type="bitmap" />
            </figure>
            <figure
                xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_9">
                <head></head>
                <label></label>
                <figDesc>
                    <div>
                        <p>
                            <s>2 mÁs -1 , coinciding with SW winds episodes (Fig 12a).</s>
                            <s>In relation to the hydrographical variability, water temperature showed a marked diurnal cycle (day-night), with an oscillation of 1.2˚C.</s>
                            <s>It ranged from 23.2˚C (registered at 4 am) to 24.4˚C, at 6 pm (Fig 12b).</s>
                            <s>While no significant correlations were found between physical and optical variables, the time series of c pg (710) and particle size distribution slope were characterized by an increase in their magnitude at periods of maximum current velocities, in response to the more intense northward currents (Fig 12-a, 12-c and 12-f).</s>
                            <s>In contrast, c pg (685) peak and c pg spectral slope exhibited a bimodal pattern similar to that observed for the wind and current data.</s>
                            <s>Both parameters rose under weak southward current conditions, whereas the minimum values concurred with the maximum current velocities flowing northwards (Fig 12-a, 12-d and 12-e).</s>
                            <s>The temporal variations in biogeochemical properties showed similar patterns as those observed based on c pg proxies (Fig 13).</s>
                            <s>The concentration of particulate matter increased with</s>
                        </p>
                    </div>
                </figDesc>
            </figure>
            <figure
                xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_10">
                <head>Fig 10 .</head>
                <label>10</label>
                <figDesc>
                    <div>
                        <p>
                            <s>Fig 10.</s>
                            <s>Time series of physical forcings along 48 hours.</s>
                            <s>(a) Wind speed and direction measured in the weather station located in Alcanar.</s>
                            <s>(b) Wind speed and direction (to) represented by arrows.</s>
                            <s>Upward pointing arrow indicates the North.</s>
                            <s>(c) Surface current velocity and direction represented by arrows, measured at 0.5 m depth with the ADCP located in the sampling station.</s>
                            <s>doi:10.1371/journal.pone.0170706.g010</s>
                        </p>
                    </div>
                </figDesc>
                <graphic coords="15,96.04,78.01,479.85,239.07" type="bitmap" />
            </figure>
            <figure
                xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_11">
                <head>Fig 11 .</head>
                <label>11</label>
                <figDesc>
                    <div>
                        <p>
                            <s>Fig 11.</s>
                            <s>Optical measurements collected during profiling along 48 hours for the analysis of temporal patterns in Alfacs Bay.</s>
                            <s>(a) In situ measured total non-water beam attenuation spectra.</s>
                            <s>(b) LISST-derived size distribution for particle number.</s>
                            <s>(c) CDOM absorption and (d) phytoplankton absorption spectra.</s>
                            <s>Blue and red lines indicate measurements performed under the influence of southward and northward currents, respectively.</s>
                            <s>doi:10.1371/journal.pone.0170706.g011</s>
                        </p>
                    </div>
                </figDesc>
                <graphic coords="16,96.04,78.01,479.85,375.19" type="bitmap" />
            </figure>
            <figure
                xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_12">
                <head>Fig 12 .</head>
                <label>12</label>
                <figDesc>
                    <div>
                        <p>
                            <s>Fig 12. Variations with time and depth in the attenuation-based proxies and PSD slope along with the current velocity.</s>
                            <s>(a) Temporal dataset of current velocity measured within the first 2 m depth.</s>
                            <s>Time series of vertical profiles of (b) water temperature, (c) c pg (710), (d) c pg (685) peak, (e) c pg spectral slope and (e) LISST-derived PSD slope.</s>
                            <s>doi:10.1371/journal.pone.0170706.g012</s>
                        </p>
                    </div>
                </figDesc>
                <graphic coords="17,95.98,78.01,479.91,385.85" type="bitmap" />
            </figure>
            <figure
                xmlns="http://www.tei-c.org/ns/1.0">
                <head></head>
                <label></label>
                <figDesc>
                    <div>
                        <p>
                            <s></s>
                        </p>
                    </div>
                </figDesc>
                <graphic coords="18,95.98,78.01,479.91,228.64" type="bitmap" />
            </figure>
            <note
                xmlns="http://www.tei-c.org/ns/1.0" place="foot">PLOS ONE | DOI:10.1371/journal.pone.0170706 January 20, 2017
            </note>
        </body>
        <back>
            <div type="acknowledgement">
                <div
                    xmlns="http://www.tei-c.org/ns/1.0">
                    <head>Acknowledgments</head>
                    <p>
                        <s>We thank E. Zafra for his dedication and effort in organizing, planning and performing the field campaign.</s>
                        <s>We also thank to J. Ballabrera, A. Olariaga and V. Fuentes (ICM-CSIC, Spain), for their support and collaboration during the field campaign.</s>
                        <s>We are grateful to E. Boss and an anonymous reviewer for providing valuable comments on the manuscript.</s>
                    </p>
                </div>
            </div>
            <div type="annex">
                <div
                    xmlns="http://www.tei-c.org/ns/1.0">
                    <head>Author Contributions</head>
                    <p>
                        <s>Conceptualization: MR-P RR AB JP.</s>
                    </p>
                </div>
                <div
                    xmlns="http://www.tei-c.org/ns/1.0">
                    <head>Formal analysis: MR-P RG-A.</head>
                </div>
                <div
                    xmlns="http://www.tei-c.org/ns/1.0">
                    <head>Funding acquisition: ET AB JP.</head>
                    <p>
                        <s>Investigation: MR-P RG-A SW RB AB JP.</s>
                    </p>
                </div>
            </div>
            <div type="references">
                <listBibl>
                    <biblStruct xml:id="b0">
                        <analytic>
                            <title level="a" type="main">Simultaneous measurement of phytoplanktonic primary production, nutrient and light availability along a turbid, eutrophic UK east coast estuary (the Colne estuary)</title>
                            <author>
                                <persName>
                                    <forename type="first">E</forename>
                                    <surname>Kocum</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">Gjc</forename>
                                    <surname>Underwood</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">Nedwell</forename>
                                    <surname>Db</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">Mar Ecol Prog Ser</title>
                            <imprint>
                                <biblScope unit="volume">231</biblScope>
                                <biblScope unit="page" from="1" to="12" />
                                <date type="published" when="2002" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Kocum E, Underwood GJC, and Nedwell DB. Simultaneous measurement of phytoplanktonic primary production, nutrient and light availability along a turbid, eutrophic UK east coast estuary (the Colne estu- ary). Mar Ecol Prog Ser. 2002; 231:1-12.</note>
                    </biblStruct>
                    <biblStruct xml:id="b1">
                        <analytic>
                            <title level="a" type="main">Environmental threats and environmental future of estuaries</title>
                            <author>
                                <persName>
                                    <forename type="first">M</forename>
                                    <forename type="middle">J</forename>
                                    <surname>Kennish</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">Environ Conserv</title>
                            <imprint>
                                <biblScope unit="volume">29</biblScope>
                                <biblScope unit="issue">1</biblScope>
                                <biblScope unit="page" from="78" to="107" />
                                <date type="published" when="2002" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Kennish MJ. Environmental threats and environmental future of estuaries. Environ Conserv. 2002; 29 (1):78-107.</note>
                    </biblStruct>
                    <biblStruct xml:id="b2">
                        <analytic>
                            <title level="a" type="main">Climate change, sustainable development and coastal ocean information needs</title>
                            <author>
                                <persName>
                                    <forename type="first">T</forename>
                                    <surname>Malone</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">M</forename>
                                    <surname>Davidson</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">P</forename>
                                    <surname>Digiacomo</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">E</forename>
                                    <surname>Gonc ¸alves</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">T</forename>
                                    <surname>Knap</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">J</forename>
                                    <surname>Muelbert</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">Procedia Environ Sci</title>
                            <imprint>
                                <biblScope unit="volume">1</biblScope>
                                <biblScope unit="page" from="324" to="341" />
                                <date type="published" when="2010" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Malone T, Davidson M, DiGiacomo P, Gonc ¸alves E, Knap T, Muelbert J, et al. Climate change, sustain- able development and coastal ocean information needs. Procedia Environ Sci. 2010; 1,324-341.</note>
                    </biblStruct>
                    <biblStruct xml:id="b3">
                        <monogr>
                            <title level="m" type="main">Requirements for Global Implementation of the Strategic Plan for Coastal GOOS</title>
                            <author>
                                <persName>
                                    <surname>Ioc-Unesco</surname>
                                </persName>
                            </author>
                            <ptr target="http://unesdoc.unesco.org/ulis/" />
                            <imprint>
                                <date type="published" when="2012" />
                            </imprint>
                        </monogr>
                        <note type="report_type">GOOS-193 report</note>
                        <note type="raw_reference">IOC-UNESCO. Requirements for Global Implementation of the Strategic Plan for Coastal GOOS. GOOS-193 report;2012. http://unesdoc.unesco.org/ulis/.</note>
                    </biblStruct>
                    <biblStruct xml:id="b4">
                        <monogr>
                            <title level="m" type="main">In situ measurements of the inherent optical properties (IOPs) and potential for harmful algal bloom detection and coastal ecosystem observations. In Real-Time Coastal Observing Systems for Ecosystem Dynamics and Harmful Algal Blooms</title>
                            <author>
                                <persName>
                                    <forename type="first">C</forename>
                                    <forename type="middle">S</forename>
                                    <surname>Roesler</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">E</forename>
                                    <surname>Boss</surname>
                                </persName>
                            </author>
                            <editor>Babin M., Roesler CS, Cullen JC</editor>
                            <imprint>
                                <date type="published" when="2008" />
                                <biblScope unit="page" from="153" to="206" />
                                <pubPlace>Paris</pubPlace>
                            </imprint>
                        </monogr>
                        <note>Real-time Coastal Observing Systems for Marine Ecosystem Dynamics and Harmful Algal Blooms: Theory, Instrumentation and Modelling</note>
                        <note type="raw_reference">Roesler CS, and Boss E. In situ measurements of the inherent optical properties (IOPs) and potential for harmful algal bloom detection and coastal ecosystem observations. In Real-Time Coastal Observing Systems for Ecosystem Dynamics and Harmful Algal Blooms. In Babin M., Roesler CS, Cullen JC (Eds.). Real-time Coastal Observing Systems for Marine Ecosystem Dynamics and Harmful Algal Blooms: Theory, Instrumentation and Modelling. Paris: UNESCO; 2008. p.153-206.</note>
                    </biblStruct>
                    <biblStruct xml:id="b5">
                        <analytic>
                            <title level="a" type="main">The bio-optical state of ocean waters and remote sensing</title>
                            <author>
                                <persName>
                                    <forename type="first">R</forename>
                                    <forename type="middle">C</forename>
                                    <surname>Smith</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">K</forename>
                                    <forename type="middle">S</forename>
                                    <surname>Baker</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">Limnol Oceanogr</title>
                            <imprint>
                                <biblScope unit="volume">23</biblScope>
                                <biblScope unit="page" from="247" to="259" />
                                <date type="published" when="1978" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Smith RC, and Baker KS. The bio-optical state of ocean waters and remote sensing. Limnol Oceanogr. 1978; 23,247-259.</note>
                    </biblStruct>
                    <biblStruct xml:id="b6">
                        <analytic>
                            <title level="a" type="main">Measurements of spectral optical properties and their relation to biogeochemical variables and processes in Crater Lake</title>
                            <author>
                                <persName>
                                    <forename type="first">E</forename>
                                    <surname>Boss</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">R</forename>
                                    <surname>Collier</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">G</forename>
                                    <surname>Larson</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">K</forename>
                                    <surname>Fennel</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">Pegau</forename>
                                    <forename type="middle">W</forename>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">OR. Hydrobiol</title>
                            <imprint>
                                <biblScope unit="volume">574</biblScope>
                                <biblScope unit="issue">1</biblScope>
                                <biblScope unit="page" from="149" to="159" />
                                <date type="published" when="2007" />
                            </imprint>
                            <respStmt>
                                <orgName>Crater Lake National Park</orgName>
                            </respStmt>
                        </monogr>
                        <note type="raw_reference">Boss E, Collier R, Larson G, Fennel K, and Pegau W. Measurements of spectral optical properties and their relation to biogeochemical variables and processes in Crater Lake, Crater Lake National Park, OR. Hydrobiol. 2007; 574,1,149-159.</note>
                    </biblStruct>
                    <biblStruct xml:id="b7">
                        <analytic>
                            <title level="a" type="main">Bio-optical and biogeochemical properties of different trophic regimes</title>
                            <author>
                                <persName>
                                    <forename type="first">K</forename>
                                    <surname>Oubelkheir</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">H</forename>
                                    <surname>Claustre</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">A</forename>
                                    <surname>Sciandra</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">M</forename>
                                    <surname>Babin</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">Limnol Oceanogr</title>
                            <imprint>
                                <biblScope unit="volume">50</biblScope>
                                <biblScope unit="issue">6</biblScope>
                                <biblScope unit="page" from="1795" to="1809" />
                                <date type="published" when="2005" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Oubelkheir K, Claustre H, Sciandra A, Babin M. Bio-optical and biogeochemical properties of different trophic regimes. Limnol Oceanogr. 2005; 50 (6),1795-1809.</note>
                    </biblStruct>
                    <biblStruct xml:id="b8">
                        <analytic>
                            <title level="a" type="main">Water quality assessment and analysis of spatial patterns and temporal trends</title>
                            <author>
                                <persName>
                                    <forename type="first">N</forename>
                                    <forename type="middle">M</forename>
                                    <surname>Gazzaz</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">M</forename>
                                    <forename type="middle">K</forename>
                                    <surname>Yusoff</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">H</forename>
                                    <surname>Juahir</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">M</forename>
                                    <forename type="middle">F</forename>
                                    <surname>Ramli</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">A</forename>
                                    <forename type="middle">Z</forename>
                                    <surname>Aris</surname>
                                </persName>
                            </author>
                            <idno type="PMID">24003601</idno>
                        </analytic>
                        <monogr>
                            <title level="j">Water Environ Res</title>
                            <imprint>
                                <biblScope unit="volume">85</biblScope>
                                <biblScope unit="page" from="751" to="766" />
                                <date type="published" when="2013" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Gazzaz NM, Yusoff MK, Juahir H, Ramli MF, Aris AZ. Water quality assessment and analysis of spatial patterns and temporal trends. Water Environ Res.2013; 85,8,751-66. PMID: 24003601</note>
                    </biblStruct>
                    <biblStruct xml:id="b9">
                        <analytic>
                            <title level="a" type="main">Identification and characterisation of two optical water types in the Irish Sea from in situ inherent optical properties and seawater constituents</title>
                            <author>
                                <persName>
                                    <forename type="first">D</forename>
                                    <surname>Mckee</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">A</forename>
                                    <surname>Cunningham</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">Estuar Coast Shelf Sci</title>
                            <imprint>
                                <biblScope unit="volume">68</biblScope>
                                <biblScope unit="page" from="305" to="316" />
                                <date type="published" when="2006" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">McKee D, Cunningham A. Identification and characterisation of two optical water types in the Irish Sea from in situ inherent optical properties and seawater constituents. Estuar Coast Shelf Sci. 2006; 68,305-316,</note>
                    </biblStruct>
                    <biblStruct xml:id="b10">
                        <analytic>
                            <title level="a" type="main">Influence of suspended particle concentration, composition and size on the variability of inherent optical properties of the Southern North Sea</title>
                            <author>
                                <persName>
                                    <forename type="first">R</forename>
                                    <surname>Astoreca</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">D</forename>
                                    <surname>Doxaran</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">K</forename>
                                    <surname>Ruddick</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">V</forename>
                                    <surname>Rousseau</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">C</forename>
                                    <surname>Lancelot</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">Cont Shelf Res</title>
                            <imprint>
                                <biblScope unit="volume">35</biblScope>
                                <biblScope unit="page" from="117" to="128" />
                                <date type="published" when="2012" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Astoreca R, Doxaran D, Ruddick K, Rousseau V, Lancelot C. Influence of suspended particle concen- tration, composition and size on the variability of inherent optical properties of the Southern North Sea. Cont Shelf Res.2012; 35,117-128.</note>
                    </biblStruct>
                    <biblStruct xml:id="b11">
                        <analytic>
                            <title level="a" type="main">Acceptance angle effects on the beam attenuation in the ocean</title>
                            <author>
                                <persName>
                                    <forename type="first">E</forename>
                                    <surname>Boss</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">W</forename>
                                    <forename type="middle">H</forename>
                                    <surname>Slade</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">M</forename>
                                    <surname>Behrenfeld</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">G</forename>
                                    <surname>Dall'olmo</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">Opt Express</title>
                            <imprint>
                                <biblScope unit="volume">17</biblScope>
                                <biblScope unit="page" from="1535" to="1550" />
                                <date type="published" when="2009" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Boss E, Slade WH, Behrenfeld M, Dall&apos;Olmo G. Acceptance angle effects on the beam attenuation in the ocean. Opt Express. 2009b; 17,1535-1550.</note>
                    </biblStruct>
                    <biblStruct xml:id="b12">
                        <analytic>
                            <title level="a" type="main">Comparison of inherent optical properties as a surrogate for particulate matter concentration in coastal waters</title>
                            <author>
                                <persName>
                                    <forename type="first">E</forename>
                                    <surname>Boss</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">L</forename>
                                    <surname>Taylor</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">S</forename>
                                    <surname>Gilbert</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">K</forename>
                                    <surname>Gundersen</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">N</forename>
                                    <surname>Hawley</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">C</forename>
                                    <surname>Janzen</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">Limnol Oceanogr: Methods</title>
                            <imprint>
                                <biblScope unit="volume">7</biblScope>
                                <biblScope unit="page" from="803" to="810" />
                                <date type="published" when="2009" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Boss E, Taylor L, Gilbert S, Gundersen K, Hawley N, Janzen C, et al. Comparison of inherent optical properties as a surrogate for particulate matter concentration in coastal waters. Limnol Oceanogr: Meth- ods 2009; 7,803-810.</note>
                    </biblStruct>
                    <biblStruct xml:id="b13">
                        <analytic>
                            <title level="a" type="main">Shape of the particulate beam attenuation spectrum and its inversion to obtain the shape of the particulate size distribution</title>
                            <author>
                                <persName>
                                    <forename type="first">E</forename>
                                    <surname>Boss</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">M</forename>
                                    <forename type="middle">S</forename>
                                    <surname>Twardowski</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">S</forename>
                                    <surname>Herring</surname>
                                </persName>
                            </author>
                            <idno type="PMID">18360531</idno>
                        </analytic>
                        <monogr>
                            <title level="j">Appl Opt</title>
                            <imprint>
                                <biblScope unit="volume">40</biblScope>
                                <biblScope unit="page" from="4885" to="4893" />
                                <date type="published" when="2001" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Boss E, Twardowski MS, and Herring S. Shape of the particulate beam attenuation spectrum and its inversion to obtain the shape of the particulate size distribution. Appl Opt. 2001; 40,27,4885-4893. PMID: 18360531</note>
                    </biblStruct>
                    <biblStruct xml:id="b14">
                        <analytic>
                            <title level="a" type="main">Light scattering and chlorophyll concentration in case 1 waters: A reexamination</title>
                            <author>
                                <persName>
                                    <forename type="first">H</forename>
                                    <surname>Loisel</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">Morel</forename>
                                    <forename type="middle">A</forename>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">Limnol Oceanogr</title>
                            <imprint>
                                <biblScope unit="volume">43</biblScope>
                                <biblScope unit="issue">5</biblScope>
                                <biblScope unit="page" from="847" to="858" />
                                <date type="published" when="1998" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Loisel H, and Morel A. Light scattering and chlorophyll concentration in case 1 waters: A reexamination. Limnol Oceanogr. 1998; 43(5),847-858.</note>
                    </biblStruct>
                    <biblStruct xml:id="b15">
                        <monogr>
                            <title level="m" type="main">Contributions of phytoplankton light scattering and cell concentration changes to diel variations in beam attenuation in the equatorial Pacific from flow cytometric measurements of pico-, ultra-, and nanoplankton. Deep-Sea Res II</title>
                            <author>
                                <persName>
                                    <forename type="first">M</forename>
                                    <forename type="middle">D</forename>
                                    <surname>Durand</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">R</forename>
                                    <forename type="middle">J</forename>
                                    <surname>Olson</surname>
                                </persName>
                            </author>
                            <imprint>
                                <date type="published" when="1996" />
                                <biblScope unit="volume">43</biblScope>
                                <biblScope unit="page" from="891" to="906" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">DuRand MD, and Olson RJ. Contributions of phytoplankton light scattering and cell concentration changes to diel variations in beam attenuation in the equatorial Pacific from flow cytometric measure- ments of pico-, ultra-, and nanoplankton. Deep-Sea Res II. 1996; 43,891-906.</note>
                    </biblStruct>
                    <biblStruct xml:id="b16">
                        <analytic>
                            <title level="a" type="main">Contributions of phytoplankton and other particles to inherent optical properties in New England continental shelf waters</title>
                            <author>
                                <persName>
                                    <forename type="first">R</forename>
                                    <forename type="middle">E</forename>
                                    <surname>Green</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">H</forename>
                                    <forename type="middle">M</forename>
                                    <surname>Sosik</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">R</forename>
                                    <forename type="middle">J</forename>
                                    <surname>Olson</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">Limnol Oceangr</title>
                            <imprint>
                                <biblScope unit="volume">48</biblScope>
                                <biblScope unit="page" from="2377" to="2391" />
                                <date type="published" when="2003" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Green RE, Sosik HM, and Olson RJ. Contributions of phytoplankton and other particles to inherent opti- cal properties in New England continental shelf waters. Limnol Oceangr. 2003; 48,2377-2391.</note>
                    </biblStruct>
                    <biblStruct xml:id="b17">
                        <analytic>
                            <title level="a" type="main">Beam attenuation and chlorophyll concentration as alternative optical indices of phytoplankton biomass</title>
                            <author>
                                <persName>
                                    <forename type="first">M</forename>
                                    <forename type="middle">J</forename>
                                    <surname>Behrenfeld</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">E</forename>
                                    <surname>Boss</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">J Mar Res</title>
                            <imprint>
                                <biblScope unit="volume">64</biblScope>
                                <biblScope unit="page" from="431" to="451" />
                                <date type="published" when="2006" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Behrenfeld MJ, and Boss E. Beam attenuation and chlorophyll concentration as alternative optical indi- ces of phytoplankton biomass. J Mar Res.2006; 64,431-451.</note>
                    </biblStruct>
                    <biblStruct xml:id="b18">
                        <monogr>
                            <title level="m" type="main">Germany: VIS-Photometer VIPER product brochure</title>
                            <imprint>
                                <date type="published" when="2017-01-05" />
                            </imprint>
                        </monogr>
                        <note>TriOS GmbH [Internet</note>
                        <note type="raw_reference">TriOS GmbH [Internet]. Germany: VIS-Photometer VIPER product brochure [cited 2017 Jan 05].</note>
                    </biblStruct>
                    <biblStruct xml:id="b19">
                        <analytic>
                            <title level="a" type="main">Multidisciplinary and multiscale approach to understand (harmful) phytoplankton dynamics in a NW Mediterranean Bay</title>
                            <author>
                                <persName>
                                    <forename type="first">E</forename>
                                    <surname>Berdalet</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">O</forename>
                                    <forename type="middle">N</forename>
                                    <surname>Ross</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">´j</forename>
                                    <surname>Sole</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">M</forename>
                                    <forename type="middle">L</forename>
                                    <surname>Artigas</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">G</forename>
                                    <surname>Llaveria</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">C</forename>
                                    <surname>Llebot</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">R</forename>
                                    <surname>Quesada</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">J</forename>
                                    <surname>Piera</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">M</forename>
                                    <surname>Estrada</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">ICES CM</title>
                            <imprint>
                                <biblScope unit="page">2</biblScope>
                                <date type="published" when="2010" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Berdalet E, Ross ON, Sole ´J, Artigas ML, Llaveria G, Llebot C, Quesada R, Piera J, Estrada M. Multidis- ciplinary and multiscale approach to understand (harmful) phytoplankton dynamics in a NW Mediterra- nean Bay. ICES CM 2010; N:02.</note>
                    </biblStruct>
                    <biblStruct xml:id="b20">
                        <analytic>
                            <title level="a" type="main">Hidrografia de las bahı ´as del delta del Ebro</title>
                            <author>
                                <persName>
                                    <forename type="first">J</forename>
                                    <surname>Camp</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">M</forename>
                                    <surname>Delgado</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">Investigaciones Pesqueras</title>
                            <imprint>
                                <biblScope unit="volume">51</biblScope>
                                <biblScope unit="page" from="351" to="369" />
                                <date type="published" when="1987" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Camp J, and Delgado M. Hidrografia de las bahı ´as del delta del Ebro. Investigaciones Pesqueras 1987; 51:351-369.</note>
                    </biblStruct>
                    <biblStruct xml:id="b21">
                        <monogr>
                            <title level="m" type="main">Aproximaciones a la dina ´mica ecolo ´gica de una bahı ´a estua ´rica mediterra ´nea</title>
                            <author>
                                <persName>
                                    <forename type="first">J</forename>
                                    <surname>Camp</surname>
                                </persName>
                            </author>
                            <imprint/>
                        </monogr>
                        <note>PhD dissertation</note>
                        <note type="raw_reference">Camp J. Aproximaciones a la dina ´mica ecolo ´gica de una bahı ´a estua ´rica mediterra ´nea [PhD disserta- tion].</note>
                    </biblStruct>
                    <biblStruct xml:id="b22">
                        <analytic>
                            <title level="a" type="main">Climatic forcing on hydrography of a Mediterranean bay (Alfacs Bay)</title>
                            <author>
                                <persName>
                                    <forename type="first">´j</forename>
                                    <surname>Sole</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">A</forename>
                                    <surname>Turiel</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">M</forename>
                                    <surname>Estrada</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">C</forename>
                                    <surname>Llebot</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">D</forename>
                                    <surname>Blasco</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">J</forename>
                                    <surname>Camp</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">Cont Shelf Res</title>
                            <imprint>
                                <biblScope unit="volume">29</biblScope>
                                <biblScope unit="page" from="1786" to="1800" />
                                <date type="published" when="2009" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Sole ´J, Turiel A, Estrada M, Llebot C, Blasco D, Camp J, et al. Climatic forcing on hydrography of a Med- iterranean bay (Alfacs Bay). Cont Shelf Res.2009; 29:1786-1800.</note>
                    </biblStruct>
                    <biblStruct xml:id="b23">
                        <analytic>
                            <title level="a" type="main">Hydrographical forcing and phytoplankton variability in two semi-enclosed estuarine bays</title>
                            <author>
                                <persName>
                                    <forename type="first">C</forename>
                                    <surname>Llebot</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">´j</forename>
                                    <surname>Sole</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">M</forename>
                                    <surname>Delgado</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">M</forename>
                                    <surname>Ferna ´ndez-Tejedor</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">J</forename>
                                    <surname>Camp</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">M</forename>
                                    <surname>Estrada</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">J Mar Syst</title>
                            <imprint>
                                <biblScope unit="volume">86</biblScope>
                                <biblScope unit="page" from="69" to="86" />
                                <date type="published" when="2011" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Llebot C, Sole ´J, Delgado M, Ferna ´ndez-Tejedor M, Camp J, Estrada M. Hydrographical forcing and phytoplankton variability in two semi-enclosed estuarine bays. J Mar Syst. 2011; 86,69-86.</note>
                    </biblStruct>
                    <biblStruct xml:id="b24">
                        <analytic>
                            <title level="a" type="main">Tidal transformation and resonance in a short, microtidal Mediterranean estuary (Alfacs Bay in Ebre delta)</title>
                            <author>
                                <persName>
                                    <forename type="first">P</forename>
                                    <surname>Cerralbo</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">M</forename>
                                    <surname>Grifoll</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">A</forename>
                                    <surname>Valle-Levinson</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">M</forename>
                                    <surname>Espino</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">Estuar Coast Shelf Sci</title>
                            <imprint>
                                <biblScope unit="volume">145</biblScope>
                                <biblScope unit="page" from="57" to="68" />
                                <date type="published" when="2014" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Cerralbo P, Grifoll M, Valle-Levinson A, and Espino M. Tidal transformation and resonance in a short, microtidal Mediterranean estuary (Alfacs Bay in Ebre delta). Estuar Coast Shelf Sci.2014; 145,57-68.</note>
                    </biblStruct>
                    <biblStruct xml:id="b25">
                        <analytic>
                            <title level="a" type="main">Short-term pore water ammonium variability coupled to benthic boundary layer dynamics in Alfacs Bay</title>
                            <author>
                                <persName>
                                    <forename type="first">M</forename>
                                    <surname>Vidal</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">´ja</forename>
                                    <surname>Morguı</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">Mar Ecol Prog Ser</title>
                            <imprint>
                                <biblScope unit="volume">118</biblScope>
                                <biblScope unit="page" from="229" to="236" />
                                <date type="published" when="1995" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Vidal M, and Morguı ´JA. Short-term pore water ammonium variability coupled to benthic boundary layer dynamics in Alfacs Bay, Spain (Ebro Delta, NW Mediterranean). Mar Ecol Prog Ser. 1995; 118,229- 236.</note>
                    </biblStruct>
                    <biblStruct xml:id="b26">
                        <analytic>
                            <title level="a" type="main">Factors controlling seasonal variability of benthic ammonium release and oxygen uptake in Alfacs Bay</title>
                            <author>
                                <persName>
                                    <forename type="first">M</forename>
                                    <surname>Vidal</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">´ja</forename>
                                    <surname>Morguı</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">M</forename>
                                    <surname>Latasa</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">J</forename>
                                    <surname>Romero</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">J</forename>
                                    <surname>Camp</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">Hydrobiologia</title>
                            <imprint>
                                <biblScope unit="volume">350</biblScope>
                                <biblScope unit="page" from="169" to="178" />
                                <date type="published" when="1997" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Vidal M, Morguı ´JA, Latasa M, Romero J, and Camp J. Factors controlling seasonal variability of benthic ammonium release and oxygen uptake in Alfacs Bay (Ebro Delta, NW Mediterranean). Hydrobiologia 1997; 350,169-178.</note>
                    </biblStruct>
                    <biblStruct xml:id="b27">
                        <analytic>
                            <title level="a" type="main">Phased cell division in a natural population of Dinophysissacculus and the in situ measurement of potential growth rage</title>
                            <author>
                                <persName>
                                    <forename type="first">E</forename>
                                    <surname>Garce ´s</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">M</forename>
                                    <surname>Delgado</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">J</forename>
                                    <surname>Camp</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">J Plankton Res</title>
                            <imprint>
                                <biblScope unit="volume">19</biblScope>
                                <biblScope unit="page" from="2067" to="2077" />
                                <date type="published" when="1997" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Garce ´s E, Delgado M, and Camp J. Phased cell division in a natural population of Dinophysissacculus and the in situ measurement of potential growth rage. J Plankton Res. 1997; 19:2067-2077.</note>
                    </biblStruct>
                    <biblStruct xml:id="b28">
                        <analytic>
                            <title level="a" type="main">High resolution spatio-temporal detection of potentially harmful dinoflagellates in confined waters of the NW Mediterranean</title>
                            <author>
                                <persName>
                                    <forename type="first">M</forename>
                                    <surname>Vila</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">J</forename>
                                    <surname>Camp</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">E</forename>
                                    <surname>Garce ´s</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">´m</forename>
                                    <surname>Maso</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">M</forename>
                                    <surname>Delgado</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">J Plankton Res</title>
                            <imprint>
                                <biblScope unit="volume">23</biblScope>
                                <biblScope unit="issue">5</biblScope>
                                <biblScope unit="page" from="497" to="514" />
                                <date type="published" when="2001" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Vila M, Camp J, Garce ´s E, Maso ´M, and Delgado M. High resolution spatio-temporal detection of poten- tially harmful dinoflagellates in confined waters of the NW Mediterranean. J Plankton Res. 2001; 23,5,497-514.</note>
                    </biblStruct>
                    <biblStruct xml:id="b29">
                        <monogr>
                            <title level="m" type="main">Interactions between physical forcing, water circulation and phytoplankton dynamics in a microtidal estuary</title>
                            <author>
                                <persName>
                                    <forename type="first">C</forename>
                                    <surname>Llebot</surname>
                                </persName>
                            </author>
                            <imprint>
                                <date type="published" when="2010" />
                                <pubPlace>University of Las Palmas de Gran Canaria</pubPlace>
                            </imprint>
                        </monogr>
                        <note>PhD dissertation</note>
                        <note type="raw_reference">Llebot C. Interactions between physical forcing, water circulation and phytoplankton dynamics in a microtidal estuary [PhD dissertation]. University of Las Palmas de Gran Canaria; 2010.</note>
                    </biblStruct>
                    <biblStruct xml:id="b30">
                        <monogr>
                            <title level="m" type="main">Phytoplankton dynamics and bio-optical variables associated with Harmful Algal Blooms in aquaculture zones</title>
                            <author>
                                <persName>
                                    <forename type="first">J</forename>
                                    <forename type="middle">A</forename>
                                    <surname>Busch</surname>
                                </persName>
                            </author>
                            <imprint>
                                <date type="published" when="2013" />
                            </imprint>
                            <respStmt>
                                <orgName>University of Bremen</orgName>
                            </respStmt>
                        </monogr>
                        <note>PhD dissertation</note>
                        <note type="raw_reference">Busch JA. Phytoplankton dynamics and bio-optical variables associated with Harmful Algal Blooms in aquaculture zones [PhD dissertation]. University of Bremen; 2013.</note>
                    </biblStruct>
                    <biblStruct xml:id="b31">
                        <analytic>
                            <title level="a" type="main">Hydrodynamic state in a wind-driven microtidal estuary (Alfacs Bay)</title>
                            <author>
                                <persName>
                                    <forename type="first">C</forename>
                                    <surname>Llebot</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">F</forename>
                                    <forename type="middle">J</forename>
                                    <surname>Rueda</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">´j</forename>
                                    <surname>Sole</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">M</forename>
                                    <forename type="middle">L</forename>
                                    <surname>Artigas</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">M</forename>
                                    <surname>Estrada</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">J Sea Res</title>
                            <imprint>
                                <biblScope unit="volume">85</biblScope>
                                <biblScope unit="page" from="263" to="276" />
                                <date type="published" when="2013" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Llebot C, Rueda FJ, Sole ´J, Artigas ML, Estrada M. Hydrodynamic state in a wind-driven microtidal estuary (Alfacs Bay). J Sea Res.2013; 85,263-276.</note>
                    </biblStruct>
                    <biblStruct xml:id="b32">
                        <analytic>
                            <title level="a" type="main">Hydrodynamic response in a microtidal and shallow bay under energetic wind and seiche episodes</title>
                            <author>
                                <persName>
                                    <forename type="first">P</forename>
                                    <surname>Cerralbo</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">M</forename>
                                    <surname>Grifoll</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">M</forename>
                                    <surname>Espino</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">J Mar Syst</title>
                            <imprint>
                                <biblScope unit="volume">149</biblScope>
                                <biblScope unit="page" from="1" to="13" />
                                <date type="published" when="2015" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Cerralbo P, Grifoll M, and Espino M. Hydrodynamic response in a microtidal and shallow bay under energetic wind and seiche episodes. J Mar Syst. 2015; 149:1-13.</note>
                    </biblStruct>
                    <biblStruct xml:id="b33">
                        <analytic>
                            <title level="a" type="main">Cost-Effective hyperspectral transmissometers for oceanographic applications: performance analysis</title>
                            <author>
                                <persName>
                                    <forename type="first">M</forename>
                                    <surname>Ramı ´rez-Pe ´rez</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">R</forename>
                                    <surname>Ro ¨ttgers</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">E</forename>
                                    <surname>Torrecilla</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">J</forename>
                                    <surname>Piera</surname>
                                </persName>
                            </author>
                            <idno type="DOI">10.3390/s150920967</idno>
                            <idno type="PMID">26343652</idno>
                        </analytic>
                        <monogr>
                            <title level="j">Sensors</title>
                            <imprint>
                                <biblScope unit="volume">15</biblScope>
                                <biblScope unit="page" from="20967" to="20989" />
                                <date type="published" when="2015" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Ramı ´rez-Pe ´rez M, Ro ¨ttgers R, Torrecilla E, Piera J. Cost-Effective hyperspectral transmissometers for oceanographic applications: performance analysis. Sensors 2015; 15:20967-20989. doi: 10.3390/ s150920967 PMID: 26343652</note>
                    </biblStruct>
                    <biblStruct xml:id="b34">
                        <analytic>
                            <title level="a" type="main">Instruments for particle size and settling velocity observations in sediment transport</title>
                            <author>
                                <persName>
                                    <forename type="first">Y</forename>
                                    <forename type="middle">C</forename>
                                    <surname>Agrawal</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">H</forename>
                                    <forename type="middle">C</forename>
                                    <surname>Pottsmith</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">Mar Geol</title>
                            <imprint>
                                <biblScope unit="volume">168</biblScope>
                                <biblScope unit="page" from="89" to="114" />
                                <date type="published" when="2000" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Agrawal YC, Pottsmith HC. Instruments for particle size and settling velocity observations in sediment transport. Mar Geol. 2000; 168:89-114.</note>
                    </biblStruct>
                    <biblStruct xml:id="b35">
                        <analytic>
                            <title level="a" type="main">Spatio-temporal variability in suspended particulate matter concentration and the role of aggregation on size distribution in a coral reef lagoon</title>
                            <author>
                                <persName>
                                    <forename type="first">A</forename>
                                    <surname>Jouon</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">S</forename>
                                    <surname>Ouillon</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">D</forename>
                                    <surname>Pascal</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">J</forename>
                                    <forename type="middle">P</forename>
                                    <surname>Lefebvre</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">J</forename>
                                    <forename type="middle">M</forename>
                                    <surname>Fernandez</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">X</forename>
                                    <surname>Mari</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">Mar Geol</title>
                            <imprint>
                                <biblScope unit="volume">256</biblScope>
                                <biblScope unit="issue">1-4</biblScope>
                                <biblScope unit="page" from="36" to="48" />
                                <date type="published" when="2008" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Jouon A, Ouillon S, Pascal D, Lefebvre JP, Fernandez JM, Mari X, et al. Spatio-temporal variability in suspended particulate matter concentration and the role of aggregation on size distribution in a coral reef lagoon. Mar Geol. 2008; 256(1-4),36-48.</note>
                    </biblStruct>
                    <biblStruct xml:id="b36">
                        <analytic>
                            <title level="a" type="main">From Fresh to Marine Waters: Characterization and Fate of Dissolved Organic Matter in the Lena River Delta Region</title>
                            <author>
                                <persName>
                                    <forename type="first">M</forename>
                                    <surname>Jonasz</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">C</forename>
                                    <forename type="middle">A</forename>
                                    <surname>Stedmon</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">B</forename>
                                    <surname>Heim</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">I</forename>
                                    <surname>Dubinenkov</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">A</forename>
                                    <surname>Kraberg</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">D</forename>
                                    <surname>Moiseev</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">Front Mar Sci</title>
                            <imprint>
                                <biblScope unit="volume">35</biblScope>
                                <biblScope unit="page">108</biblScope>
                                <date type="published" when="1983" />
                            </imprint>
                        </monogr>
                        <note>Tellus B</note>
                        <note type="raw_reference">Jonasz M. Particle size distribution in the Baltic. Tellus B. 1983; 35,346-358, 38. Gonc ¸alves-Araujo R, Stedmon CA, Heim B, Dubinenkov I, Kraberg A, Moiseev D, et al. From Fresh to Marine Waters: Characterization and Fate of Dissolved Organic Matter in the Lena River Delta Region, Siberia. Front Mar Sci. 2015; 2:108.</note>
                    </biblStruct>
                    <biblStruct xml:id="b37">
                        <analytic>
                            <title/>
                        </analytic>
                        <monogr>
                            <title level="j">Jerlov NG. Marine Optics</title>
                            <imprint>
                                <date type="published" when="1976" />
                                <publisher>Elsevier</publisher>
                            </imprint>
                        </monogr>
                        <note>231 p</note>
                        <note type="raw_reference">Jerlov NG. Marine Optics, Elsevier; 1976. 231 p.</note>
                    </biblStruct>
                    <biblStruct xml:id="b38">
                        <analytic>
                            <title level="a" type="main">A method using chemical oxidation to remove light absorption by phytoplankton pigments</title>
                            <author>
                                <persName>
                                    <forename type="first">G</forename>
                                    <forename type="middle">M</forename>
                                    <surname>Ferrari</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">Tassan</forename>
                                    <forename type="middle">S</forename>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">J Phycol</title>
                            <imprint>
                                <biblScope unit="volume">35</biblScope>
                                <biblScope unit="page" from="1090" to="1098" />
                                <date type="published" when="1999" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Ferrari GM, and Tassan S. A method using chemical oxidation to remove light absorption by phyto- plankton pigments. J Phycol. 1999; 35,1090-1098.</note>
                    </biblStruct>
                    <biblStruct xml:id="b39">
                        <analytic>
                            <title level="a" type="main">Bio-optical provinces in the eastern Atlantic Ocean and their biogeographical relevance</title>
                            <author>
                                <persName>
                                    <forename type="first">B</forename>
                                    <forename type="middle">B</forename>
                                    <surname>Talyor</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">E</forename>
                                    <surname>Torrecilla</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">A</forename>
                                    <surname>Bernhardt</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">M</forename>
                                    <forename type="middle">H</forename>
                                    <surname>Taylor</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">I</forename>
                                    <surname>Peeken</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <surname>Ro ¨ttgers R</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">Biogeosciences</title>
                            <imprint>
                                <biblScope unit="volume">8</biblScope>
                                <biblScope unit="page" from="3609" to="3629" />
                                <date type="published" when="2011" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Talyor BB, Torrecilla E, Bernhardt A, Taylor MH, Peeken I, Ro ¨ttgers R, et al. Bio-optical provinces in the eastern Atlantic Ocean and their biogeographical relevance. Biogeosciences 2011; 8,3609-3629.</note>
                    </biblStruct>
                    <biblStruct xml:id="b40">
                        <analytic>
                            <title level="a" type="main">Measurement of light absorption by aquatic particles: improvement of the quantitative filter technique by use of an integrating sphere approach</title>
                            <author>
                                <persName>
                                    <forename type="first">R</forename>
                                    <surname>Ro ¨ttgers</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">Gehnke</forename>
                                    <forename type="middle">S</forename>
                                </persName>
                            </author>
                            <idno type="DOI">10.1364/AO.51.001336</idno>
                            <idno type="PMID">22441480</idno>
                        </analytic>
                        <monogr>
                            <title level="j">Appl Opt</title>
                            <imprint>
                                <biblScope unit="volume">51</biblScope>
                                <biblScope unit="issue">9</biblScope>
                                <biblScope unit="page" from="1336" to="1351" />
                                <date type="published" when="2012" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Ro ¨ttgers R, and Gehnke S. Measurement of light absorption by aquatic particles: improvement of the quantitative filter technique by use of an integrating sphere approach. Appl Opt. 2012; 51(9),1336- 1351. doi: 10.1364/AO.51.001336 PMID: 22441480</note>
                    </biblStruct>
                    <biblStruct xml:id="b41">
                        <analytic>
                            <title level="a" type="main">Improved resolution of mono-and divinyl chlorophylls a and b and zeaxanthin and lutein in phytoplankton extracts using reverse phase c-8 hplc</title>
                            <author>
                                <persName>
                                    <forename type="first">R</forename>
                                    <forename type="middle">G</forename>
                                    <surname>Barlow</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">D</forename>
                                    <forename type="middle">G</forename>
                                    <surname>Cummings</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">S</forename>
                                    <forename type="middle">W</forename>
                                    <surname>Gibb</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">Oceanograph Lit Rev</title>
                            <imprint>
                                <biblScope unit="volume">45</biblScope>
                                <biblScope unit="issue">8</biblScope>
                                <biblScope unit="page">1362</biblScope>
                                <date type="published" when="1997" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Barlow RG, Cummings DG, Gibb SW. Improved resolution of mono-and divinyl chlorophylls a and b and zeaxanthin and lutein in phytoplankton extracts using reverse phase c-8 hplc. Oceanograph Lit Rev. 1997; 45(8),1362.</note>
                    </biblStruct>
                    <biblStruct xml:id="b42">
                        <analytic>
                            <title level="a" type="main">Suspended matter concentrations in coastal waters: Methodological improvements to quantify individual measurement uncertainty</title>
                            <author>
                                <persName>
                                    <forename type="first">R</forename>
                                    <surname>Ro ¨ttgers</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">K</forename>
                                    <surname>Heymann</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">H</forename>
                                    <surname>Krasemann</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">Estuar Coast Shelf Sci</title>
                            <imprint>
                                <biblScope unit="volume">151</biblScope>
                                <biblScope unit="page" from="148" to="155" />
                                <date type="published" when="2014" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Ro ¨ttgers R, Heymann K, Krasemann H. Suspended matter concentrations in coastal waters: Methodo- logical improvements to quantify individual measurement uncertainty. Estuar Coast Shelf Sci. 2014; 151:148-155.</note>
                    </biblStruct>
                    <biblStruct xml:id="b43">
                        <analytic>
                            <title level="a" type="main">Correcting the errors from variable sea salt retention and water of hydration in loss on ignition analysis: Implications for studies of estuarine and coastal waters</title>
                            <author>
                                <persName>
                                    <forename type="first">R</forename>
                                    <forename type="middle">H</forename>
                                    <surname>Stavn</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">H</forename>
                                    <forename type="middle">J</forename>
                                    <surname>Rickb</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">A</forename>
                                    <forename type="middle">V</forename>
                                    <surname>Falsterc</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">Estuar Coast Shelf Sci</title>
                            <imprint>
                                <biblScope unit="volume">81</biblScope>
                                <biblScope unit="page" from="575" to="582" />
                                <date type="published" when="2009" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Stavn RH, Rickb HJ, Falsterc AV. Correcting the errors from variable sea salt retention and water of hydration in loss on ignition analysis: Implications for studies of estuarine and coastal waters. Estuar Coast Shelf Sci. 2009; 81,575-582.</note>
                    </biblStruct>
                    <biblStruct xml:id="b44">
                        <analytic>
                            <title level="a" type="main">Spectral particulate attenuation and particle size distribution in the bottom boundary layer of a continental shelf</title>
                            <author>
                                <persName>
                                    <forename type="first">E</forename>
                                    <surname>Boss</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">W</forename>
                                    <forename type="middle">S</forename>
                                    <surname>Pegau</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">W</forename>
                                    <forename type="middle">D</forename>
                                    <surname>Gardner</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">Jrv</forename>
                                    <surname>Zaneveld</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">A</forename>
                                    <forename type="middle">H</forename>
                                    <surname>Barnard</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">M</forename>
                                    <forename type="middle">S</forename>
                                    <surname>Twardowski</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">J Geophys Res</title>
                            <imprint>
                                <biblScope unit="volume">106</biblScope>
                                <biblScope unit="page" from="9509" to="9516" />
                                <date type="published" when="2001" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Boss E, Pegau WS, Gardner WD, Zaneveld JRV, Barnard AH, Twardowski MS, et al. Spectral particu- late attenuation and particle size distribution in the bottom boundary layer of a continental shelf. J Geo- phys Res. 2001b; 106,C5,9509-9516.</note>
                    </biblStruct>
                    <biblStruct xml:id="b45">
                        <analytic>
                            <title level="a" type="main">A spectral model of the beam attenuation coefficient in the ocean and coastal areas</title>
                            <author>
                                <persName>
                                    <forename type="first">K</forename>
                                    <forename type="middle">J</forename>
                                    <surname>Voss</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">Limnol Oceanogr</title>
                            <imprint>
                                <biblScope unit="volume">37</biblScope>
                                <biblScope unit="issue">3</biblScope>
                                <biblScope unit="page" from="501" to="509" />
                                <date type="published" when="1992" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Voss KJ. A spectral model of the beam attenuation coefficient in the ocean and coastal areas. Limnol Oceanogr. 1992; 37(3),501-509.</note>
                    </biblStruct>
                    <biblStruct xml:id="b46">
                        <analytic>
                            <title level="a" type="main">The variation in the inherent optical properties of phytoplankton near an absorption peak as determined by various models of cell structure</title>
                            <author>
                                <persName>
                                    <forename type="first">Jrv</forename>
                                    <surname>Zaneveld</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">J</forename>
                                    <forename type="middle">C</forename>
                                    <surname>Kitchen</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">J Geophys Res</title>
                            <imprint>
                                <biblScope unit="volume">100</biblScope>
                                <biblScope unit="page" from="13309" to="13320" />
                                <date type="published" when="1995" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Zaneveld JRV, and Kitchen JC. The variation in the inherent optical properties of phytoplankton near an absorption peak as determined by various models of cell structure. J Geophys Res. 1995; 100, C7,13309-13320.</note>
                    </biblStruct>
                    <biblStruct xml:id="b47">
                        <analytic>
                            <title level="a" type="main">Light attenuation and scattering by phytoplanktonic cells: a theoretical modeling</title>
                            <author>
                                <persName>
                                    <forename type="first">A</forename>
                                    <surname>Bricaud</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">Morel</forename>
                                    <forename type="middle">A</forename>
                                </persName>
                            </author>
                            <idno type="PMID">18231215</idno>
                        </analytic>
                        <monogr>
                            <title level="j">Appl Opt</title>
                            <imprint>
                                <biblScope unit="volume">25</biblScope>
                                <biblScope unit="page" from="571" to="580" />
                                <date type="published" when="1986" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Bricaud A, and Morel A. Light attenuation and scattering by phytoplanktonic cells: a theoretical model- ing. Appl Opt. 1986; 25,571-580. PMID: 18231215</note>
                    </biblStruct>
                    <biblStruct xml:id="b48">
                        <analytic>
                            <title level="a" type="main">Light backscattering efficiency and related properties of some phytoplankters</title>
                            <author>
                                <persName>
                                    <forename type="first">Y</forename>
                                    <surname>Ahn</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">A</forename>
                                    <surname>Bricaud</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">Morel</forename>
                                    <forename type="middle">A</forename>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">Deep Res</title>
                            <imprint>
                                <biblScope unit="volume">39</biblScope>
                                <biblScope unit="page" from="1835" to="1855" />
                                <date type="published" when="1992" />
                            </imprint>
                        </monogr>
                        <note>Part</note>
                        <note type="raw_reference">Ahn Y, Bricaud A, and Morel A. Light backscattering efficiency and related properties of some phyto- plankters. Deep Res. 1992; Part A39,1835-1855.</note>
                    </biblStruct>
                    <biblStruct xml:id="b49">
                        <monogr>
                            <title level="m" type="main">Light Scattering by Small Particles</title>
                            <author>
                                <persName>
                                    <forename type="first">H</forename>
                                    <forename type="middle">C</forename>
                                    <surname>Van De Hulst</surname>
                                </persName>
                            </author>
                            <imprint>
                                <date type="published" when="1957" />
                                <publisher>John Wiley&amp; Sons</publisher>
                                <pubPlace>New York</pubPlace>
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Van de Hulst HC. Light Scattering by Small Particles. New York: John Wiley&amp; Sons; 1957.</note>
                    </biblStruct>
                    <biblStruct xml:id="b50">
                        <analytic>
                            <title level="a" type="main">Reducing the effects of fouling on chlorophyll estimates derived from long-term deployments of optical instruments</title>
                            <author>
                                <persName>
                                    <forename type="first">R</forename>
                                    <forename type="middle">F</forename>
                                    <surname>Davis</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">C</forename>
                                    <forename type="middle">C</forename>
                                    <surname>Moore</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">Jrv</forename>
                                    <surname>Zaneveld</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">J</forename>
                                    <forename type="middle">M</forename>
                                    <surname>Napp</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">J Geophys Res</title>
                            <imprint>
                                <biblScope unit="volume">102</biblScope>
                                <biblScope unit="page" from="5851" to="5855" />
                                <date type="published" when="1997" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Davis RF, Moore CC, Zaneveld JRV, Napp JM. Reducing the effects of fouling on chlorophyll estimates derived from long-term deployments of optical instruments. J Geophys Res.1997; 102:5851-5855.</note>
                    </biblStruct>
                    <biblStruct xml:id="b51">
                        <analytic>
                            <title level="a" type="main">Observations of the sensitivity of beam attenuation to particle size in a coastal bottom boundary layer</title>
                            <author>
                                <persName>
                                    <forename type="first">P</forename>
                                    <forename type="middle">S</forename>
                                    <surname>Hill</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">E</forename>
                                    <surname>Boss</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">J</forename>
                                    <forename type="middle">P</forename>
                                    <surname>Newgard</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">B</forename>
                                    <forename type="middle">A</forename>
                                    <surname>Law</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">T</forename>
                                    <forename type="middle">G</forename>
                                    <surname>Milligan</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">J Geophys Res</title>
                            <imprint>
                                <biblScope unit="volume">116</biblScope>
                                <biblScope unit="page">C02023</biblScope>
                                <date type="published" when="2011" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Hill PS, Boss E, Newgard JP, Law BA, and Milligan TG. Observations of the sensitivity of beam attenua- tion to particle size in a coastal bottom boundary layer. J Geophys Res. 2011; 116,C02023.</note>
                    </biblStruct>
                    <biblStruct xml:id="b52">
                        <analytic>
                            <title level="a" type="main">Effect of particulate aggregation in aquatic environments on the beam attenuation and its utility as a proxy for particulate mass</title>
                            <author>
                                <persName>
                                    <forename type="first">E</forename>
                                    <surname>Boss</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">W</forename>
                                    <surname>Slade</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">Hill</forename>
                                    <forename type="middle">P</forename>
                                </persName>
                            </author>
                            <idno type="PMID">19466193</idno>
                        </analytic>
                        <monogr>
                            <title level="j">Opt Express</title>
                            <imprint>
                                <biblScope unit="volume">17</biblScope>
                                <biblScope unit="issue">11</biblScope>
                                <biblScope unit="page" from="9408" to="9420" />
                                <date type="published" when="2009" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Boss E, Slade W, and Hill P. Effect of particulate aggregation in aquatic environments on the beam attenuation and its utility as a proxy for particulate mass. Opt Express 2009; 17,11,9408-9420. PMID: 19466193</note>
                    </biblStruct>
                    <biblStruct xml:id="b53">
                        <analytic>
                            <title level="a" type="main">In situ variability of mass-specific beam attenuation and backscattering of marine particles with respect to particle size, density, and composition</title>
                            <author>
                                <persName>
                                    <forename type="first">G</forename>
                                    <surname>Neukermans</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">H</forename>
                                    <surname>Loisel</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">X</forename>
                                    <surname>Me ´riaux</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">R</forename>
                                    <surname>Astoreca</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">D</forename>
                                    <surname>Mckee</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">Limnol Oceanogr</title>
                            <imprint>
                                <biblScope unit="volume">57</biblScope>
                                <biblScope unit="issue">1</biblScope>
                                <biblScope unit="page" from="124" to="144" />
                                <date type="published" when="2012" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Neukermans G, Loisel H, Me ´riaux X, Astoreca R, and McKee D. In situ variability of mass-specific beam attenuation and backscattering of marine particles with respect to particle size, density, and com- position. Limnol Oceanogr. 2012; 57(1),124-144.</note>
                    </biblStruct>
                    <biblStruct xml:id="b54">
                        <monogr>
                            <title level="m" type="main">Diel cycles of the particulate beam attenuation coefficient under varying tropic conditions in the northwestern Mediterranean Sea: Observations and modeling. Limnol Oceanogr</title>
                            <author>
                                <persName>
                                    <forename type="first">P</forename>
                                    <surname>Gernez</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">D</forename>
                                    <surname>Antoine</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">Y</forename>
                                    <surname>Huot</surname>
                                </persName>
                            </author>
                            <imprint>
                                <date type="published" when="2011" />
                                <biblScope unit="volume">56</biblScope>
                                <biblScope unit="page" from="17" to="36" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Gernez P, Antoine D, and Huot Y. Diel cycles of the particulate beam attenuation coefficient under vary- ing tropic conditions in the northwestern Mediterranean Sea: Observations and modeling. Limnol Ocea- nogr. 2011; 56(1),17-36.</note>
                    </biblStruct>
                    <biblStruct xml:id="b55">
                        <analytic>
                            <title level="a" type="main">Evaluation of scatter corrections for ac-9 absorption measurements in coastal waters</title>
                            <author>
                                <persName>
                                    <forename type="first">R</forename>
                                    <surname>Ro ¨ttgers</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">D</forename>
                                    <surname>Mckee</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">S</forename>
                                    <forename type="middle">B</forename>
                                    <surname>Woźniak</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">Methods in Oceanography</title>
                            <imprint>
                                <biblScope unit="volume">7</biblScope>
                                <biblScope unit="page" from="21" to="39" />
                                <date type="published" when="2013" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Ro ¨ttgers R, McKee D, Woźniak SB. Evaluation of scatter corrections for ac-9 absorption measurements in coastal waters. Methods in Oceanography 2013; 7,21-39.</note>
                    </biblStruct>
                    <biblStruct xml:id="b56">
                        <analytic>
                            <title level="a" type="main">Variability in the chlorophyll-specific absorption coefficients of natural phytoplankton: Analysis and parameterization</title>
                            <author>
                                <persName>
                                    <forename type="first">A</forename>
                                    <surname>Bricaud</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">M</forename>
                                    <surname>Babin</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">A</forename>
                                    <surname>Morel</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">H</forename>
                                    <surname>Claustre</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">J Geophys Res</title>
                            <imprint>
                                <biblScope unit="volume">100</biblScope>
                                <biblScope unit="page" from="13321" to="13332" />
                                <date type="published" when="1995" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Bricaud A, Babin M, Morel A, and Claustre H. Variability in the chlorophyll-specific absorption coeffi- cients of natural phytoplankton: Analysis and parameterization. J Geophys Res.1995; 100,C7,13321- 332.</note>
                    </biblStruct>
                    <biblStruct xml:id="b57">
                        <analytic>
                            <title level="a" type="main">Absorption spectral slopes and slope ratios as indicators of molecular weight, source, and photobleaching of chromophoric dissolved organic matter</title>
                            <author>
                                <persName>
                                    <forename type="first">J</forename>
                                    <forename type="middle">R</forename>
                                    <surname>Helms</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">A</forename>
                                    <surname>Stubbins</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">J</forename>
                                    <forename type="middle">D</forename>
                                    <surname>Ritchie</surname>
                                </persName>
                            </author>
                            <author>
                                <persName>
                                    <forename type="first">E</forename>
                                    <forename type="middle">C</forename>
                                    <surname>Minor</surname>
                                </persName>
                            </author>
                        </analytic>
                        <monogr>
                            <title level="j">Limnol Oceanogr</title>
                            <imprint>
                                <biblScope unit="volume">53</biblScope>
                                <biblScope unit="issue">3</biblScope>
                                <biblScope unit="page" from="955" to="969" />
                                <date type="published" when="2008" />
                            </imprint>
                        </monogr>
                        <note type="raw_reference">Helms JR, Stubbins A, Ritchie JD, and Minor EC. Absorption spectral slopes and slope ratios as indica- tors of molecular weight, source, and photobleaching of chromophoric dissolved organic matter. Limnol Oceanogr. 2008; 53(3),955-969.</note>
                    </biblStruct>
                    <biblStruct xml:id="b58">
                        <monogr>
                            <title level="m" type="main">ODV: Ocean Data View</title>
                            <author>
                                <persName>
                                    <forename type="first">R</forename>
                                    <surname>Schlitzer</surname>
                                </persName>
                            </author>
                            <imprint>
                                <date type="published" when="2016" />
                            </imprint>
                        </monogr>
                        <note>Version 4.7.6. [software</note>
                        <note type="raw_reference">Schlitzer R. ODV: Ocean Data View. Version 4.7.6. [software]. 2016 [cited 2017 Jan 05].</note>
                    </biblStruct>
                </listBibl>
            </div>
        </back>
    </text>
</TEI>