-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHakaiPruthDockProvisional.xml
1009 lines (1008 loc) · 46.1 KB
/
HakaiPruthDockProvisional.xml
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
<dataset type="EDDTableFromDatabase" datasetID="HakaiPruthDockProvisional" active="true">
<sourceUrl>hakai_erddap_sourceUrl</sourceUrl>
<driverName>org.postgresql.Driver</driverName>
<schemaName>sn</schemaName>
<tableName>"PruthDock:5minuteSamples"</tableName>
<reloadEveryNMinutes>10080</reloadEveryNMinutes>
<!-- sourceAttributes>
</sourceAttributes -->
<!-- Please specify the actual cdm_data_type (TimeSeries?) and related info below, for example...
<att name="cdm_timeseries_variables">station_id, longitude, latitude</att>
<att name="subsetVariables">station_id, longitude, latitude</att>
-->
<addAttributes>
<att name="cdm_data_type">Other</att>
<att name="Conventions">COARDS, CF-1.6, ACDD-1.3</att>
<att name="creator_name">Hakai Institute</att>
<att name="creator_type">institution</att>
<att name="infoUrl">https://catalogue.hakai.org/dataset/ca-cioos_2d693456-7e65-46be-95d7-6bb697320017</att>
<att name="institution">Hakai Institute</att>
<att name="keywords">Weather station,tide station,water level,CIOOS:seaSurfaceHeight,CIOOS:other</att>
<att name="keywords_vocabulary">CIOOS: CIOOS Essential Ocean Variables Vocabulary</att>
<att name="license">https://creativecommons.org/licenses/by/4.0</att>
<att name="sourceUrl">(local database)</att>
<att name="standard_name_vocabulary">CF Standard Name Table v79</att>
<att name="summary">The Hakai Institute maintains a weather and tide station on the main dock of its remote station located on Calvert Island within Pruth Bay. The weather station measures the air temperature, wind speed and direction, humidity, atmospheric pressure, UV radiation, solar radiation, PAR, and precipitation since July 2014. In June 2018, a tide station was installed to measure the water level within the bay. The station is a combination of a primary radar sensor mounted below the dock above the water and a secondary vented pressure sensor mounted within the water 2m below the lowest tides.</att>
<att name="title">Pruth Dock, Calvert Island Tide and Weather Station Provisional</att>
<att name="cdm_data_type">Timeseries</att>
<att name="cdm_timeseries_variables">station_id,latitude,longitude</att>
<att name="subsetVariables">station_id,latitude,longitude,windspd_uql,winddir_uql,rh_uql,airtemp_uql,stationairpressure_uql,sealevelairpressure_uql,uvrad5minutetotal_uql,solarrad_uql,solarrad5minutetotal_uql,par_uql,par5minutetotal_uql,uvrad_uql,rain_uql,hourlyrain_uql,tideheight_uql,tideheightdelta_uql</att>
<att name="date_created">2024-03-14</att>
<att name="geospatial_lat_max">51.6544888889</att>
<att name="geospatial_lat_min">51.6544888889</att>
<att name="geospatial_lon_max">-128.1302805556</att>
<att name="geospatial_lon_min">-128.1302805556</att>
<att name="instrument">VegaPulse 62,OTT PLS-C</att>
<att name="keywords">tide station,water level,Weather station,seaSurfaceHeight</att>
<att name="publisher_email">[email protected]</att>
<att name="publisher_institution">Hakai Institute</att>
<att name="publisher_url">https://www.hakai.org/</att>
<att name="summary">The Hakai Institute maintains a weather and tide station on the main dock of its remote station located on Calvert Island within Pruth Bay. The weather station measures the air temperature, wind speed and direction, humidity, atmospheric pressure, UV radiation, solar radiation, PAR, and precipitation since July 2014. In June 2018, a tide station was installed to measure the water level within the bay. The station is a combination of a primary radar sensor mounted below the dock above the water and a secondary vented pressure sensor mounted within the water 2m below the lowest tides.</att>
<att name="title">Pruth Dock, Calvert Island Tide and Weather Station Provisional</att>
<att name="platform">coastal structure</att>
<att name="platform_vocabulary">http://vocab.nerc.ac.uk/collection/L06/current/</att>
<att name="project">Oceanography,Watersheds</att><att name="comment">##Limitations:
This is data is provisional only. Please handle with care.</att><att name="progress">onGoing</att><att name="id">2d693456-7e65-46be-95d7-6bb697320017</att><att name="naming_authority">ca.cioos</att><att name="date_modified">2024-07-23T13:39:35.933Z</att><att name="product_version">1.0</att><att name="creator_email">[email protected]</att><att name="creator_institution">Hakai Institute</att><att name="creator_address">1002 Wharf Street</att><att name="creator_city">Campbell River</att><att name="creator_country">Canada</att><att name="creator_url">https://www.hakai.org/</att><att name="creator_ror">https://ror.org/02pry0c91</att><att name="publisher_name">Hakai Institute</att><att name="publisher_type">institution</att><att name="publisher_address">1002 Wharf Street</att><att name="publisher_city">Campbell River</att><att name="publisher_country">Canada</att><att name="publisher_ror">https://ror.org/02pry0c91</att><att name="contributor_name">Barrette, Jessy;Hakai Institute;Tula Foundation</att><att name="contributor_role">custodian;owner,distributor,publisher;funder</att><att name="doi">https://doi.org/10.21966/8d4w-sr07</att><att name="metadata_link">https://catalogue.hakai.org/dataset/ca-cioos_2d693456-7e65-46be-95d7-6bb697320017</att><att name="metadata_form">https://hakaiinstitute.github.io/hakai-metadata-entry-form#/en/hakai/tV5qE0aUgaOjSVmgPgiZ6MyHuSy1/-MkxD-S6TxIvv2e6_OGH</att></addAttributes>
<dataVariable>
<sourceName>="PruthDock"</sourceName>
<destinationName>station_id</destinationName>
<dataType>String</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Station</att>
<att name="cf_role">timeseries_id</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>=51.6544888889</sourceName>
<destinationName>latitude</destinationName>
<dataType>double</dataType>
<addAttributes>
<att name="long_name">Latitude</att>
<att name="standard_name">latitude</att>
<att name="units">degrees_north</att>
<att name="description">Fixed latitude of the site</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>=-128.1302805556</sourceName>
<destinationName>longitude</destinationName>
<dataType>double</dataType>
<addAttributes>
<att name="description">Fixed longitude of the site</att>
<att name="long_name">Longitude</att>
<att name="standard_name">longitude</att>
<att name="units">degrees_east</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>measurementTime</sourceName>
<destinationName>time</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="ioos_category">Time</att>
<att name="long_name">Measurement Time</att>
<att name="source_name">measurementTime</att>
<att name="standard_name">time</att>
<att name="units">seconds since 1970-01-01T00:00:00Z</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:WindSpd_QC</sourceName>
<destinationName>windspd_flag</destinationName>
<dataType>String</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Wind Spd QC</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:WindSpd_UQL</sourceName>
<destinationName>windspd_uql</destinationName>
<dataType>byte</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Wind Spd UNESCO Quality Level</att>
<att name="ioos_category">Quality</att>
<att name="flag_meaning">PASS NOT_EVALUATED SUSPECT FAIL MISSING</att>
<att name="flag_values" type="byteList">1 2 3 4 9</att>
<att name="missing_value" type="byte">2</att>
<att name="standard_name">aggregate_quality_flag</att>
<att name="units">1</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:WindSpd_Avg</sourceName>
<destinationName>windspd_avg</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Wind Speed Avg</att>
<att name="units">m/s</att>
<att name="standard_name">wind_speed</att>
<att name="ancillary_data">windspd_flag windspd_uql</att>
<att name="cell_methods">time: mean (interval: 5.0 minutes)</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:WindSpd_Std</sourceName>
<destinationName>windspd_std</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Wind Speed STD</att>
<att name="units">m/s</att>
<att name="standard_name">wind_speed</att>
<att name="ancillary_data">windspd_flag windspd_uql</att>
<att name="cell_methods">time: standard_deviation (interval: 5.0 minutes)</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:WindDir_QC</sourceName>
<destinationName>winddir_flag</destinationName>
<dataType>String</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Wind Dir QC</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:WindDir_UQL</sourceName>
<destinationName>winddir_uql</destinationName>
<dataType>byte</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Wind Direction UNESCO Quality Level</att>
<att name="ioos_category">Quality</att>
<att name="flag_meaning">PASS NOT_EVALUATED SUSPECT FAIL MISSING</att>
<att name="flag_values" type="byteList">1 2 3 4 9</att>
<att name="missing_value" type="byte">2</att>
<att name="standard_name">aggregate_quality_flag</att>
<att name="units">1</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:WindDir_Avg</sourceName>
<destinationName>winddir_avg</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="colorBarMaximum" type="double">360.0</att>
<att name="colorBarMinimum" type="double">0.0</att>
<att name="long_name">Wind From Direction Average</att>
<att name="units">degree</att>
<att name="standard_name">wind_from_direction</att>
<att name="ancillary_data">winddir_flag winddir_uql</att>
<att name="cell_methods">time: mean (interval: 5.0 minutes)</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:WindDir_Std</sourceName>
<destinationName>winddir_std</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="colorBarMaximum" type="double">360.0</att>
<att name="colorBarMinimum" type="double">0.0</att>
<att name="long_name">Wind From Direction STD</att>
<att name="units">degree</att>
<att name="standard_name">wind_from_direction</att>
<att name="ancillary_data">winddir_flag winddir_uql</att>
<att name="cell_methods">time: standard_deviation (interval: 5.0 minutes)</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:RH_QC</sourceName>
<destinationName>rh_flag</destinationName>
<dataType>String</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">RH QC</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:RH_UQL</sourceName>
<destinationName>rh_uql</destinationName>
<dataType>byte</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">RH UNESCO Quality Level</att>
<att name="ioos_category">Quality</att>
<att name="flag_meaning">PASS NOT_EVALUATED SUSPECT FAIL MISSING</att>
<att name="flag_values" type="byteList">1 2 3 4 9</att>
<att name="missing_value" type="byte">2</att>
<att name="standard_name">aggregate_quality_flag</att>
<att name="units">1</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:RH</sourceName>
<destinationName>rh</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">RH</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:RH_Avg</sourceName>
<destinationName>rh_avg</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Relative Humidity Average</att>
<att name="units">%</att>
<att name="standard_name">relative_humidity</att>
<att name="ancillary_data">rh_flag rh_uql</att>
<att name="cell_methods">time: mean (interval: 5.0 minutes)</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:RH_Std</sourceName>
<destinationName>rh_std</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Relative Humidity STD</att>
<att name="units">%</att>
<att name="standard_name">relative_humidity</att>
<att name="ancillary_data">rh_flag rh_uql</att>
<att name="cell_methods">time: standard_deviation (interval: 5.0 minutes)</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:AirTemp_QC</sourceName>
<destinationName>airtemp_flag</destinationName>
<dataType>String</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Air Temp QC</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:AirTemp_UQL</sourceName>
<destinationName>airtemp_uql</destinationName>
<dataType>byte</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Air Temp UNESCO Quality Level</att>
<att name="ioos_category">Quality</att>
<att name="flag_meaning">PASS NOT_EVALUATED SUSPECT FAIL MISSING</att>
<att name="flag_values" type="byteList">1 2 3 4 9</att>
<att name="missing_value" type="byte">2</att>
<att name="standard_name">aggregate_quality_flag</att>
<att name="units">1</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:AirTemp</sourceName>
<destinationName>airtemp</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Air Temperature</att>
<att name="units">degrees_celsius</att>
<att name="standard_name">air_temperature</att>
<att name="ancillary_data">airtemp_flag airtemp_uql</att>
<att name="cell_methods">time: point (interval: 5.0 minutes)</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:AirTemp_Avg</sourceName>
<destinationName>airtemp_avg</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Air Temperature Average</att>
<att name="units">degrees_celsius</att>
<att name="standard_name">air_temperature</att>
<att name="ancillary_data">airtemp_flag airtemp_uql</att>
<att name="cell_methods">time: mean (interval: 5.0 minutes)</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:AirTemp_Std</sourceName>
<destinationName>airtemp_std</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Air Temperature STD</att>
<att name="units">degrees_celsius</att>
<att name="standard_name">air_temperature</att>
<att name="ancillary_data">airtemp_flag airtemp_uql</att>
<att name="cell_methods">time: standard_deviation (interval: 5.0 minutes)</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:StationAirPressure_QC</sourceName>
<destinationName>stationairpressure_flag</destinationName>
<dataType>String</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Station Air Pressure QC</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:StationAirPressure_UQL</sourceName>
<destinationName>stationairpressure_uql</destinationName>
<dataType>byte</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Station Air Pressure UNESCO Quality Level</att>
<att name="ioos_category">Quality</att>
<att name="flag_meaning">PASS NOT_EVALUATED SUSPECT FAIL MISSING</att>
<att name="flag_values" type="byteList">1 2 3 4 9</att>
<att name="missing_value" type="byte">2</att>
<att name="standard_name">aggregate_quality_flag</att>
<att name="units">1</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:StationAirPressure</sourceName>
<destinationName>stationairpressure</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Station Air Pressure</att>
<att name="units">hPa</att>
<att name="standard_name">air_pressure</att>
<att name="ancillary_data">stationairpressure_flag stationairpressure_uql</att>
<att name="cell_methods">time: point (interval: 5.0 minutes)</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:StationAirPressure_Avg</sourceName>
<destinationName>stationairpressure_avg</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Station Air Pressure Average</att>
<att name="units">hPa</att>
<att name="standard_name">air_pressure</att>
<att name="ancillary_data">stationairpressure_flag stationairpressure_uql</att>
<att name="cell_methods">time: mean (interval: 5.0 minutes)</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:StationAirPressure_Std</sourceName>
<destinationName>stationairpressure_std</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Station Air Pressure STD</att>
<att name="units">hPa</att>
<att name="standard_name">air_pressure</att>
<att name="ancillary_data">stationairpressure_flag stationairpressure_uql</att>
<att name="cell_methods">time: standard_deviation (interval: 5.0 minutes)</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:SeaLevelAirPressure_QC</sourceName>
<destinationName>sealevelairpressure_flag</destinationName>
<dataType>String</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Sea Level Air Pressure QC</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:SeaLevelAirPressure_UQL</sourceName>
<destinationName>sealevelairpressure_uql</destinationName>
<dataType>byte</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Sea Level Air Pressure UNESCO Quality Level</att>
<att name="ioos_category">Quality</att>
<att name="flag_meaning">PASS NOT_EVALUATED SUSPECT FAIL MISSING</att>
<att name="flag_values" type="byteList">1 2 3 4 9</att>
<att name="missing_value" type="byte">2</att>
<att name="standard_name">aggregate_quality_flag</att>
<att name="units">1</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:SeaLevelAirPressure</sourceName>
<destinationName>sealevelairpressure</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Sea Level Air Pressure</att>
<att name="units">hPa</att>
<att name="standard_name">air_pressure_at_mean_sea_level</att>
<att name="ancillary_data">sealevelairpressure_flag sealevelairpressure_uql</att>
<att name="cell_methods">time: point (interval: 5.0 minutes)</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:SeaLevelAirPressure_Avg</sourceName>
<destinationName>sealevelairpressure_avg</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Sea Level Air Pressure Average</att>
<att name="units">hPa</att>
<att name="standard_name">air_pressure_at_mean_sea_level</att>
<att name="ancillary_data">sealevelairpressure_flag sealevelairpressure_uql</att>
<att name="cell_methods">time: mean (interval: 5.0 minutes)</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:SeaLevelAirPressure_Std</sourceName>
<destinationName>sealevelairpressure_std</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Sea Level Air Pressure STD</att>
<att name="units">hPa</att>
<att name="standard_name">air_pressure_at_mean_sea_level</att>
<att name="ancillary_data">sealevelairpressure_flag sealevelairpressure_uql</att>
<att name="cell_methods">time: standard_deviation (interval: 5.0 minutes)</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:UVRad5MinuteTotal_QC</sourceName>
<destinationName>uvrad5minutetotal_flag</destinationName>
<dataType>String</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">UVRad5 Minute Total QC</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:UVRad5MinuteTotal_UQL</sourceName>
<destinationName>uvrad5minutetotal_uql</destinationName>
<dataType>byte</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">UVRad5 Minute Total UNESCO Quality Level</att>
<att name="ioos_category">Quality</att>
<att name="flag_meaning">PASS NOT_EVALUATED SUSPECT FAIL MISSING</att>
<att name="flag_values" type="byteList">1 2 3 4 9</att>
<att name="missing_value" type="byte">2</att>
<att name="standard_name">aggregate_quality_flag</att>
<att name="units">1</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:UVRad5MinuteTotal</sourceName>
<destinationName>uvrad5minutetotal</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">UVRad5 Minute Total</att>
<att name="long_name">Cumulative UV Radiation</att>
<att name="units"/>
<att name="standard_name"/>
<att name="ancillary_data">uvrad5minutetotal_flag uvrad5minutetotal_uql</att>
<att name="cell_methods">time: sum (interval: 5.0 minutes)</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:SolarRad_QC</sourceName>
<destinationName>solarrad_flag</destinationName>
<dataType>String</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Solar Rad QC</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:SolarRad_UQL</sourceName>
<destinationName>solarrad_uql</destinationName>
<dataType>byte</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Solar Rad UNESCO Quality Level</att>
<att name="ioos_category">Quality</att>
<att name="flag_meaning">PASS NOT_EVALUATED SUSPECT FAIL MISSING</att>
<att name="flag_values" type="byteList">1 2 3 4 9</att>
<att name="missing_value" type="byte">2</att>
<att name="standard_name">aggregate_quality_flag</att>
<att name="units">1</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:SolarRad</sourceName>
<destinationName>solarrad</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Solar Radiation</att>
<att name="units"/>
<att name="standard_name"/>
<att name="ancillary_data">solarrad_flag solarrad_uql</att>
<att name="cell_methods">time: point (interval: 5.0 minutes)</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:SolarRad_Avg</sourceName>
<destinationName>solarrad_avg</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Solar Radiation Average</att>
<att name="units"/>
<att name="standard_name"/>
<att name="ancillary_data">solarrad_flag solarrad_uql</att>
<att name="cell_methods">time: mean (interval: 5.0 minutes)</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:SolarRad_Std</sourceName>
<destinationName>solarrad_std</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Solar Radiation STD</att>
<att name="units"/>
<att name="standard_name"/>
<att name="ancillary_data">solarrad_flag solarrad_uql</att>
<att name="cell_methods">time: standard_deviation (interval: 5.0 minutes)</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:SolarRad5MinuteTotal_QC</sourceName>
<destinationName>solarrad5minutetotal_flag</destinationName>
<dataType>String</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Solar Rad5 Minute Total QC</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:SolarRad5MinuteTotal_UQL</sourceName>
<destinationName>solarrad5minutetotal_uql</destinationName>
<dataType>byte</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Solar Rad5 Minute Total UNESCO Quality Level</att>
<att name="ioos_category">Quality</att>
<att name="flag_meaning">PASS NOT_EVALUATED SUSPECT FAIL MISSING</att>
<att name="flag_values" type="byteList">1 2 3 4 9</att>
<att name="missing_value" type="byte">2</att>
<att name="standard_name">aggregate_quality_flag</att>
<att name="units">1</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:SolarRad5MinuteTotal</sourceName>
<destinationName>solarrad5minutetotal</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Cumulative Solar Radiation</att>
<att name="units"/>
<att name="standard_name"/>
<att name="ancillary_data">solarrad5minutetotal_flag solarrad5minutetotal_uql</att>
<att name="cell_methods">time: sum (interval: 5.0 minutes)</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:PAR_QC</sourceName>
<destinationName>par_flag</destinationName>
<dataType>String</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">PAR QC</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:PAR_UQL</sourceName>
<destinationName>par_uql</destinationName>
<dataType>byte</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">PAR UNESCO Quality Level</att>
<att name="ioos_category">Quality</att>
<att name="flag_meaning">PASS NOT_EVALUATED SUSPECT FAIL MISSING</att>
<att name="flag_values" type="byteList">1 2 3 4 9</att>
<att name="missing_value" type="byte">2</att>
<att name="standard_name">aggregate_quality_flag</att>
<att name="units">1</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:PAR</sourceName>
<destinationName>par</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Photosynthetic Active Radiation</att>
<att name="units">mol m-2 s-1</att>
<att name="standard_name">surface_downwelling_photosynthetic_photon_flux_in_air</att>
<att name="ancillary_data">par_flag par_uql</att>
<att name="cell_methods">time: point (interval: 5.0 minutes)</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:PAR_Avg</sourceName>
<destinationName>par_avg</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Photosynthetic Active Radiation Average</att>
<att name="units">mol m-2 s-1</att>
<att name="standard_name">surface_downwelling_photosynthetic_photon_flux_in_air</att>
<att name="ancillary_data">par_flag par_uql</att>
<att name="cell_methods">time: mean (interval: 5.0 minutes)</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:PAR_Std</sourceName>
<destinationName>par_std</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Photosynthetic Active Radiation STD</att>
<att name="units">mol m-2 s-1</att>
<att name="standard_name">surface_downwelling_photosynthetic_photon_flux_in_air</att>
<att name="ancillary_data">par_flag par_uql</att>
<att name="cell_methods">time: standard_deviation (interval: 5.0 minutes)</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:PAR5MinuteTotal_QC</sourceName>
<destinationName>par5minutetotal_flag</destinationName>
<dataType>String</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">PAR5 Minute Total QC</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:PAR5MinuteTotal_UQL</sourceName>
<destinationName>par5minutetotal_uql</destinationName>
<dataType>byte</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">PAR5 Minute Total UNESCO Quality Level</att>
<att name="ioos_category">Quality</att>
<att name="flag_meaning">PASS NOT_EVALUATED SUSPECT FAIL MISSING</att>
<att name="flag_values" type="byteList">1 2 3 4 9</att>
<att name="missing_value" type="byte">2</att>
<att name="standard_name">aggregate_quality_flag</att>
<att name="units">1</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:PAR5MinuteTotal</sourceName>
<destinationName>par5minutetotal</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Cumulative Photosynthetic Active Radiation</att>
<att name="units">mol m-2 s-1</att>
<att name="standard_name">surface_downwelling_photosynthetic_photon_flux_in_air</att>
<att name="ancillary_data">par_flag par_uql</att>
<att name="cell_methods">time: sum (interval: 5.0 minutes)</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:UVRad_QC</sourceName>
<destinationName>uvrad_flag</destinationName>
<dataType>String</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">UVRad QC</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:UVRad_UQL</sourceName>
<destinationName>uvrad_uql</destinationName>
<dataType>byte</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">UVRad UNESCO Quality Level</att>
<att name="ioos_category">Quality</att>
<att name="flag_meaning">PASS NOT_EVALUATED SUSPECT FAIL MISSING</att>
<att name="flag_values" type="byteList">1 2 3 4 9</att>
<att name="missing_value" type="byte">2</att>
<att name="standard_name">aggregate_quality_flag</att>
<att name="units">1</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:UVRad</sourceName>
<destinationName>uvrad</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">UV Radiation</att>
<att name="units">W/m2</att>
<att name="standard_name">surface_downwelling_shortwave_flux_in_air</att>
<att name="ancillary_data">uvrad_flag uvrad_uql</att>
<att name="cell_methods">time: point (interval: 5.0 minutes)</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:UVRad_Avg</sourceName>
<destinationName>uvrad_avg</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">UV Radiation Mean</att>
<att name="units">W/m2</att>
<att name="standard_name">surface_downwelling_shortwave_flux_in_air</att>
<att name="ancillary_data">uvrad_flag uvrad_uql</att>
<att name="cell_methods">time: mean (interval: 5.0 minutes)</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:UVRad_Std</sourceName>
<destinationName>uvrad_std</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">UV Radiation STD</att>
<att name="units">W/m2</att>
<att name="standard_name">surface_downwelling_shortwave_flux_in_air</att>
<att name="ancillary_data">uvrad_flag uvrad_uql</att>
<att name="cell_methods">time: standard_deviation (interval: 5.0 minutes)</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:Rain_QC</sourceName>
<destinationName>rain_flag</destinationName>
<dataType>String</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Rain QC</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:Rain_UQL</sourceName>
<destinationName>rain_uql</destinationName>
<dataType>byte</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Rain UNESCO Quality Level</att>
<att name="ioos_category">Quality</att>
<att name="flag_meaning">PASS NOT_EVALUATED SUSPECT FAIL MISSING</att>
<att name="flag_values" type="byteList">1 2 3 4 9</att>
<att name="missing_value" type="byte">2</att>
<att name="standard_name">aggregate_quality_flag</att>
<att name="units">1</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:Rain</sourceName>
<destinationName>rain</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Rain</att>
<att name="units">mm</att>
<att name="standard_name"/>
<att name="ancillary_data">rain_flag rain_uql</att>
<att name="cell_methods">time: point (interval: 5.0 minutes)</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:1hourRain_QC</sourceName>
<destinationName>hourlyrain_flag</destinationName>
<dataType>String</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">1hour Rain QC</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:1hourRain_UQL</sourceName>
<destinationName>hourlyrain_uql</destinationName>
<dataType>byte</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">1hour Rain UNESCO Quality Level</att>
<att name="ioos_category">Quality</att>
<att name="flag_meaning">PASS NOT_EVALUATED SUSPECT FAIL MISSING</att>
<att name="flag_values" type="byteList">1 2 3 4 9</att>
<att name="missing_value" type="byte">2</att>
<att name="standard_name">aggregate_quality_flag</att>
<att name="units">1</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:1hourRain</sourceName>
<destinationName>hourlyrain</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">1hour Cumulative Rain</att>
<att name="units">mm</att>
<att name="standard_name"/>
<att name="ancillary_data">1hourrain_flag 1hourrain_uql</att>
<att name="cell_methods">time: sum (interval: 60.0 minutes)</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:TideHeight_QC</sourceName>
<destinationName>tideheight_flag</destinationName>
<dataType>String</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Tide Height QC</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:TideHeight_UQL</sourceName>
<destinationName>tideheight_uql</destinationName>
<dataType>byte</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Tide Height UNESCO Quality Level</att>
<att name="ioos_category">Quality</att>
<att name="flag_meaning">PASS NOT_EVALUATED SUSPECT FAIL MISSING</att>
<att name="flag_values" type="byteList">1 2 3 4 9</att>
<att name="missing_value" type="byte">2</att>
<att name="standard_name">aggregate_quality_flag</att>
<att name="units">1</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:TideHeight_Med</sourceName>
<destinationName>tideheight_med</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Tide Height Median</att>
<att name="units">m</att>
<att name="ancillary_data">tideheight_flag tideheight_uql</att>
<att name="cell_methods">time: median (interval: 5.0 minutes)</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:TideHeight_Avg</sourceName>
<destinationName>tideheight_avg</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Tide Height Average</att>
<att name="units">m</att>
<att name="ancillary_data">tideheight_flag tideheight_uql</att>
<att name="cell_methods">time: mean (interval: 5.0 minutes)</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:TideHeightPLS_QC</sourceName>
<destinationName>tideheightpls_flag</destinationName>
<dataType>String</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Tide Height PLS QC</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:TideHeightPLS_UQL</sourceName>
<destinationName>tideheightpls_uql</destinationName>
<dataType>byte</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Tide Height PLS UNESCO Quality Level</att>
<att name="ioos_category">Quality</att>
<att name="flag_meaning">PASS NOT_EVALUATED SUSPECT FAIL MISSING</att>
<att name="flag_values" type="byteList">1 2 3 4 9</att>
<att name="missing_value" type="byte">2</att>
<att name="standard_name">aggregate_quality_flag</att>
<att name="units">1</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:TideHeightPLS_Avg</sourceName>
<destinationName>tideheightpls_avg</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Seconday Tide Height PLS Avg</att>
<att name="units">m</att>
<att name="ancillary_data">tideheightpls_uql tideheightpls_flag</att>
<att name="cell_methods">time: mean (interval: 5.0 minutes)</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:TideHeightDelta_QC</sourceName>
<destinationName>tideheightdelta_flag</destinationName>
<dataType>String</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Tide Height Delta QC</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:TideHeightDelta_UQL</sourceName>
<destinationName>tideheightdelta_uql</destinationName>
<dataType>byte</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Tide Height Delta UNESCO Quality Level</att>
<att name="ioos_category">Quality</att>
<att name="flag_meaning">PASS NOT_EVALUATED SUSPECT FAIL MISSING</att>
<att name="flag_values" type="byteList">1 2 3 4 9</att>
<att name="missing_value" type="byte">2</att>
<att name="standard_name">aggregate_quality_flag</att>
<att name="units">1</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>PruthDock:TideHeightDelta_Avg</sourceName>
<destinationName>tideheightdelta_avg</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>