-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathdatasets.xml
More file actions
1269 lines (1231 loc) · 64.1 KB
/
datasets.xml
File metadata and controls
1269 lines (1231 loc) · 64.1 KB
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
<?xml version="1.0" encoding="ISO-8859-1" ?>
<erddapDatasets>
<!-- GENERAL INFORMATION
The information in this file specifies which datasets your ERDDAP will serve.
The initial version of this file has a few examples which should work for you.
But after your initial experiments with ERDDAP,
you should replace them with information for your datasets.
You can change this document (e.g., add datasets, change metadata) while ERDDAP is running.
The changes will be detected the next time this document is read
(as often as loadDatasetsMinMinutes).
Each dataset has a reloadEveryNMinutes value (default = 10080 (one week)).
When this document is reread, datasets that haven't been been reloaded in
their reloadEveryNMinutes will be reloaded.
You only need to specify a reloadEveryNMinutes value if you anticipate that
the dataset will change periodically.
If this document has an xml error, processing will stop and an email
will be sent to emailEverythingTo as specified in setup.xml.
If you want to remove a dataset while ERDDAP is running, add
active="false"
to the dataset tag. For example,
<dataset type="EDDGridFromDap" datasetID="erdMHchla8day" active="false">
For more information, see
https://coastwatch.pfel.noaa.gov/erddap/download/setupDatasetsXml.html
-->
<!-- The tags below are described in setupDatasetsXml.html.
The defaults listed below are as of ERDDAP v2.00. -->
<cacheMinutes></cacheMinutes> <!-- default=60 -->
<decompressedCacheMaxGB></decompressedCacheMaxGB> <!-- default=10 -->
<decompressedCacheMaxMinutesOld></decompressedCacheMaxMinutesOld> <!-- default=15 -->
<drawLandMask></drawLandMask> <!-- "over", "under" (default), "outline", or "off" -->
<emailDiagnosticsToErdData></emailDiagnosticsToErdData> <!-- "true (default) or "false" -->
<graphBackgroundColor></graphBackgroundColor> <!-- 0xAARRGGBB, default is 0xffccccff -->
<ipAddressMaxRequests></ipAddressMaxRequests> <!-- current default=7 -->
<ipAddressMaxRequestsActive></ipAddressMaxRequestsActive> <!-- current default=2 -->
<ipAddressUnlimited></ipAddressUnlimited> <!-- default=(empty) -->
<loadDatasetsMinMinutes></loadDatasetsMinMinutes> <!-- usually=default=15 -->
<loadDatasetsMaxMinutes></loadDatasetsMaxMinutes> <!-- default=60 -->
<logLevel></logLevel> <!-- "warning" (fewest messages), "info" (default), or "all" (most messages) -->
<nGridThreads></nGridThreads> <!-- default=1 -->
<nTableThreads></nTableThreads> <!-- default=1 -->
<partialRequestMaxBytes></partialRequestMaxBytes> <!-- default=490000000 -->
<partialRequestMaxCells></partialRequestMaxCells> <!-- default=10000000 -->
<slowDownTroubleMillis></slowDownTroubleMillis> <!-- default=1000 -->
<unusualActivity></unusualActivity> <!-- default=10000 -->
<updateMaxEvents></updateMaxEvents> <!-- default=10 -->
<unusualActivityFailPercent>25</unusualActivityFailPercent> <!-- default=25 -->
<!-- The defaults for the following tags are in messages.xml. -->
<startHeadHtml5></startHeadHtml5>
<endBodyHtml5></endBodyHtml5>
<standardLicense></standardLicense>
<standardContact></standardContact>
<standardDataLicenses></standardDataLicenses>
<standardDisclaimerOfEndorsement></standardDisclaimerOfEndorsement>
<standardDisclaimerOfExternalLinks></standardDisclaimerOfExternalLinks>
<standardGeneralDisclaimer></standardGeneralDisclaimer>
<displayInfo></displayInfo>
<displayAttribute></displayAttribute>
<standardPrivacyPolicy><![CDATA[
<br>
<hr>
<h2><a class="selfLink" id="privacyPolicy" href="#privacyPolicy" rel="help">Privacy Policy</a></h2>
ERDDAP follows
<a rel="bookmark" href="https://www.noaa.gov/protecting-your-privacy"
>NOAA's Privacy Policy Guidelines</a>.
]]></standardPrivacyPolicy>
<startBodyHtml5><![CDATA[
<body>
<table class="compact nowrap" style="width:100%; background-color:#128CB5;">
<tr>
<td style="text-align:center; width:80px;"><a rel="bookmark"
href="https://www.noaa.gov/"><img
title="National Oceanic and Atmospheric Administration"
src="&erddapUrl;/images/noaab.png" alt="NOAA"
style="vertical-align:middle;"></a></td>
<td style="text-align:left; font-size:x-large; color:#FFFFFF; ">
<strong>ERDDAP</strong>
<br><small><small><small>&EasierAccessToScientificData;</small></small></small>
</td>
<td style="text-align:right; font-size:small;">
&loginInfo; | &language;
<br>&BroughtToYouBy;
<a title="National Oceanic and Atmospheric Administration" rel="bookmark"
href="https://www.noaa.gov">NOAA</a>
<a title="National Marine Fisheries Service" rel="bookmark"
href="https://www.fisheries.noaa.gov">NMFS</a>
<a title="Southwest Fisheries Science Center" rel="bookmark"
href="https://www.fisheries.noaa.gov/about/southwest-fisheries-science-center">SWFSC</a>
<a title="Environmental Research Division" rel="bookmark"
href="https://www.fisheries.noaa.gov/about/environmental-research-division-southwest-fisheries-science-center">ERD</a>
</td>
</tr>
</table>
]]></startBodyHtml5>
<theShortDescriptionHtml><![CDATA[
<h1>ERDDAP</h1>
&erddapIs;
&thisParticularErddap;
[standardShortDescriptionHtml]
]]></theShortDescriptionHtml>
<!-- If you want to refuse requests from certain clients
(e.g., to fend off a Denial of Service attack or an overly zealous web robot),
add their numeric IP address (e.g., 123.45.67.89) to this comma-separated list.
You can also replace the last number in an IP address with * to block 0-255 (e.g., 123.45.67.*).
See your ERDDAP daily report for a list/tally of the most active requesters. -->
<requestBlacklist></requestBlacklist>
<!-- If you want to prevent specific people from using the email/URL subscription
system, add their email addresses to this comma-separated list.
You can use the name "*" to blacklist an entire domain, e.g., *@example.com .
-->
<subscriptionEmailBlacklist>your.email@yourinstitution.edu, some.name@company.com,
another.name@company.com, *@example.com</subscriptionEmailBlacklist>
<dataset type="EDDGridFromEtopo" datasetID="etopo180" />
<dataset type="EDDGridFromEtopo" datasetID="etopo360" />
<dataset type="EDDTableFromMqtt" datasetID="testFromMqtt" active="true">
<fileDir></fileDir>
<serverHost>localhost</serverHost>
<serverPort>1883</serverPort>
<clientId>clientId</clientId>
<username>${localhost:canonical-name}</username>
<password>${date:yyyy-MM-dd}</password>
<topics>erddap/test/topic</topics>
<useSsl>false</useSsl>
<sessionExpiryInterval>10</sessionExpiryInterval>
<connectionTimeout>10</connectionTimeout>
<automaticReconnect>true</automaticReconnect>
<fileTableInMemory>false</fileTableInMemory>
<addAttributes>
<att name="cdm_data_type">Other</att>
<att name="Conventions">COARDS, CF-1.6, ACDD-1.3</att>
<att name="creator_name">NOAA NDBC</att>
<att name="creator_url">https://www.ndbc.noaa.gov/</att>
<att name="infoUrl">https://www.ndbc.noaa.gov/</att>
<att name="institution">NOAA NDBC</att>
<att name="keywords">boolean, byte, char, double, float, int, long, ndbc, newer, noaa, short, string, title</att>
<att name="license">[standard]</att>
<att name="Metadata_Conventions">null</att>
<att name="sourceUrl">(local files)</att>
<att name="standard_name_vocabulary">CF Standard Name Table v70</att>
<att name="summary">The new summary!</att>
<att name="title">The Newer Title!</att>
</addAttributes>
<dataVariable>
<sourceName>lat</sourceName>
<dataType>double</dataType>
<addAttributes>
<att name="ioos_category">Identifier</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>lon</sourceName>
<dataType>double</dataType>
<addAttributes>
<att name="ioos_category">Identifier</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>temperature</sourceName>
<dataType>double</dataType>
<addAttributes>
<att name="ioos_category">Identifier</att>
</addAttributes>
</dataVariable>
</dataset>
<!-- For EDDGridSideBySide, the datasetID's for the parent and the children must be different. -->
<dataset type="EDDGridSideBySide" datasetID="erdTAssh1day">
<dataset type="EDDGridFromDap" datasetID="erdTAsshl1day">
<sourceUrl>https://oceanwatch.pfeg.noaa.gov/thredds/dodsC/satellite/TA/sshl/1day</sourceUrl>
<reloadEveryNMinutes>10080</reloadEveryNMinutes>
<addAttributes>
<att name="cols">null</att>
<att name="Conventions">COARDS, CF-1.6, ACDD-1.3</att>
<att name="creator_email">erd.data@noaa.gov</att>
<att name="creator_name">NOAA NMFS SWFSC ERD</att>
<att name="creator_type">institution</att>
<att name="creator_url">https://www.pfeg.noaa.gov</att>
<att name="cwhdf_version">null</att>
<att name="et_affine">null</att>
<att name="gctp_datum">null</att>
<att name="gctp_parm">null</att>
<att name="gctp_sys">null</att>
<att name="gctp_zone">null</att>
<att name="id">null</att>
<att name="infoUrl">https://coastwatch.pfeg.noaa.gov/infog/TA_sshl_las.html</att>
<att name="institution">NOAA NMFS SWFSC ERD</att>
<att name="keywords">above, absolute, altitude, archiving, aviso, coast, coastwatch, data, degrees, earth, geodetics, geoid, global, gravity, height, interpretation, level, long, ltm, mean, noaa, node, ocean, oceanography, oceans,
Earth Science > Oceans > Sea Surface Topography > Sea Surface Height,
properties, quality, satellite, science, science quality, sea, sea level, sea_surface_height_above_geoid, solid,
Earth Science > Solid Earth > Geodetics/Gravity > Geoid Properties,
ssh, surface, TAsshl, term, time, topography, validation, wcn, west</att>
<att name="license">[standard]</att>
<att name="naming_authority">gov.noaa.pfeg.coastwatch</att>
<att name="pass_date">null</att>
<att name="polygon_latitude">null</att>
<att name="polygon_longitude">null</att>
<att name="project">CoastWatch (https://coastwatch.noaa.gov/)</att>
<att name="publisher_email">erd.data@noaa.gov</att>
<att name="publisher_name">NOAA NMFS SWFSC ERD</att>
<att name="publisher_type">institution</att>
<att name="publisher_url">https://www.pfeg.noaa.gov</att>
<att name="references">Aviso: https://www.aviso.altimetry.fr/en/my-aviso.html .</att>
<att name="rows">null</att>
<att name="standard_name_vocabulary">CF Standard Name Table v29</att>
<att name="start_time">null</att>
<att name="title">Sea Surface Height, Absolute, Aviso, 0.25 degrees, Global, 1992-2012, Science Quality (1 Day Composite)</att>
</addAttributes>
<axisVariable>
<sourceName>time</sourceName>
</axisVariable>
<axisVariable>
<sourceName>altitude</sourceName>
</axisVariable>
<axisVariable>
<sourceName>lat</sourceName>
<destinationName>latitude</destinationName>
</axisVariable>
<axisVariable>
<sourceName>lon</sourceName>
<destinationName>longitude</destinationName>
</axisVariable>
<dataVariable>
<sourceName>TAsshl</sourceName>
<destinationName>ssh</destinationName>
<addAttributes>
<att name="ioos_category">Sea Level</att>
<att name="long_name">Sea Surface Height</att>
<att name="colorBarMinimum" type="double">-10</att>
<att name="colorBarMaximum" type="double">10</att>
<att name="actual_range" />
<att name="numberOfObservations" />
<att name="percentCoverage" />
</addAttributes>
</dataVariable>
</dataset>
<dataset type="EDDGridFromDap" datasetID="erdTAsshd1day">
<sourceUrl>https://oceanwatch.pfeg.noaa.gov/thredds/dodsC/satellite/TA/sshd/1day</sourceUrl>
<reloadEveryNMinutes>10080</reloadEveryNMinutes>
<addAttributes>
<att name="Conventions">COARDS, CF-1.6, Unidata Dataset Discovery v1.0</att>
<att name="Metadata_Conventions">COARDS, CF-1.6, Unidata Dataset Discovery v1.0</att>
<att name="infoUrl">https://coastwatch.pfeg.noaa.gov/infog/TA_sshd_las.html</att>
<att name="institution">NOAA CoastWatch, West Coast Node</att>
<att name="standard_name_vocabulary">CF-12</att>
<att name="title">Sea Surface Height Deviation, Aviso, Global, Science Quality (1 Day Composite)</att>
<att name="cwhdf_version" />
<att name="cols" />
<att name="et_affine" />
<att name="gctp_datum" />
<att name="gctp_parm" />
<att name="gctp_sys" />
<att name="gctp_zone" />
<att name="id" />
<att name="pass_date" />
<att name="polygon_latitude" />
<att name="polygon_longitude" />
<att name="rows" />
<att name="start_time" />
<att name="time_coverage_end" />
<att name="time_coverage_start" />
</addAttributes>
<axisVariable>
<sourceName>time</sourceName>
</axisVariable>
<axisVariable>
<sourceName>altitude</sourceName>
</axisVariable>
<axisVariable>
<sourceName>lat</sourceName>
<destinationName>latitude</destinationName>
</axisVariable>
<axisVariable>
<sourceName>lon</sourceName>
<destinationName>longitude</destinationName>
</axisVariable>
<dataVariable>
<sourceName>TAsshd</sourceName>
<destinationName>sshd</destinationName>
<addAttributes>
<att name="ioos_category">Sea Level</att>
<att name="long_name">Sea Surface Height Deviation</att>
<att name="colorBarMinimum" type="double">-0.5</att>
<att name="colorBarMaximum" type="double">0.5</att>
<att name="actual_range" />
<att name="numberOfObservations" />
<att name="percentCoverage" />
</addAttributes>
</dataVariable>
</dataset>
</dataset>
<!-- Here are some excellent gridded datasets that you can include in your ERDDAP
via EDDGridFromErddap links. All requests for actual data from these
datasets get rerouted to the source server. -->
<!-- JPL High Resolution SST -->
<dataset type="EDDGridFromErddap" datasetID="jplMURSST41" active="true">
<!-- Multi-scale Ultra-high Resolution (MUR) SST analysis fv04.1, Global, 0.011 Degree, Daily -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/griddap/jplMURSST41</sourceUrl>
</dataset>
<!-- NAVGEM -->
<dataset type="EDDGridFromErddap" datasetID="erdNavgem05D10mWind_LonPM180" active="true">
<!-- Navy Global Environmental Model (NAVGEM), 0.5 degree, 10 m Wind -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/griddap/erdNavgem05D10mWind_LonPM180</sourceUrl>
</dataset>
<dataset type="EDDGridFromErddap" datasetID="erdNavgem05D20mWind_LonPM180" active="true">
<!-- Navy Global Environmental Model (NAVGEM), 0.5 degree, 20 m Wind -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/griddap/erdNavgem05D20mWind_LonPM180</sourceUrl>
</dataset>
<dataset type="EDDGridFromErddap" datasetID="erdNavgem05D500mb_LonPM180" active="true">
<!-- Navy Global Environmental Model (NAVGEM), 0.5 degree, 500 hPa Height -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/griddap/erdNavgem05D500mb_LonPM180</sourceUrl>
</dataset>
<dataset type="EDDGridFromErddap" datasetID="erdNavgem05DPres_LonPM180" active="true">
<!-- Navy Global Environmental Model (NAVGEM), 0.5 degree, Pressure MSL -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/griddap/erdNavgem05DPres_LonPM180</sourceUrl>
</dataset>
<!-- Miami Currents -->
<dataset type="EDDGridFromErddap" datasetID="miamicurrents">
<defaultGraphQuery>&.draw=vectors</defaultGraphQuery>
<sourceUrl>http://cwcgom.aoml.noaa.gov/erddap/griddap/miamicurrents</sourceUrl>
</dataset>
<!-- Aqua MODIS -->
<dataset type="EDDGridFromErddap" datasetID="erdMH1cflh1day" active="true">
<!-- Fluorescense Line Height, Aqua MODIS, NPP, L3SMI, Global, Science Quality (1 Day Composite) -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/griddap/erdMH1cflh1day</sourceUrl>
</dataset>
<dataset type="EDDGridFromErddap" datasetID="erdMH1cflh8day" active="true">
<!-- Fluorescense Line Height, Aqua MODIS, NPP, L3SMI, Global, Science Quality (8 Day Composite) -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/griddap/erdMH1cflh8day</sourceUrl>
</dataset>
<dataset type="EDDGridFromErddap" datasetID="erdMH1cflhmday" active="true">
<!-- Fluorescense Line Height, Aqua MODIS, NPP, L3SMI, Global, Science Quality (Monthly Composite) -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/griddap/erdMH1cflhmday</sourceUrl>
</dataset>
<dataset type="EDDGridFromErddap" datasetID="erdMH1chla1day" active="true">
<!-- Chlorophyll-a, Aqua MODIS, NPP, L3SMI, Global, Science Quality (1 Day Composite) -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/griddap/erdMH1chla1day</sourceUrl>
</dataset>
<dataset type="EDDGridFromErddap" datasetID="erdMH1chla8day" active="true">
<!-- Chlorophyll-a, Aqua MODIS, NPP, L3SMI, Global, Science Quality (8 Day Composite) -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/griddap/erdMH1chla8day</sourceUrl>
</dataset>
<dataset type="EDDGridFromErddap" datasetID="erdMH1chlamday" active="true">
<!-- Chlorophyll-a, Aqua MODIS, NPP, L3SMI, Global, Science Quality (Monthly Composite) -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/griddap/erdMH1chlamday</sourceUrl>
</dataset>
<dataset type="EDDGridFromErddap" datasetID="erdMH1kd4901day" active="true">
<!-- Diffuse Attenuation K490, Aqua MODIS, NPP, L3SMI, Global, Science Quality (1 Day Composite) -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/griddap/erdMH1kd4901day</sourceUrl>
</dataset>
<dataset type="EDDGridFromErddap" datasetID="erdMH1kd4908day" active="true">
<!-- Diffuse Attenuation K490, Aqua MODIS, NPP, L3SMI, Global, Science Quality (8 Day Composite) -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/griddap/erdMH1kd4908day</sourceUrl>
</dataset>
<dataset type="EDDGridFromErddap" datasetID="erdMH1kd490mday" active="true">
<!-- Diffuse Attenuation K490, Aqua MODIS, NPP, L3SMI, Global, Science Quality (Monthly Composite) -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/griddap/erdMH1kd490mday</sourceUrl>
</dataset>
<dataset type="EDDGridFromErddap" datasetID="erdMH1par01day" active="true">
<!-- Photosynthetically Available Radiation, Aqua MODIS, NPP, L3SMI, Global, Science Quality (1 Day Composite) -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/griddap/erdMH1par01day</sourceUrl>
</dataset>
<dataset type="EDDGridFromErddap" datasetID="erdMH1par08day" active="true">
<!-- Photosynthetically Available Radiation, Aqua MODIS, NPP, L3SMI, Global, Science Quality (8 Day Composite) -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/griddap/erdMH1par08day</sourceUrl>
</dataset>
<dataset type="EDDGridFromErddap" datasetID="erdMH1par0mday" active="true">
<!-- Photosynthetically Available Radiation, Aqua MODIS, NPP, L3SMI, Global, Science Quality (Monthly Composite) -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/griddap/erdMH1par0mday</sourceUrl>
</dataset>
<!-- VIIRS -->
<dataset type="EDDGridFromErddap" datasetID="erdVH2018chla1day" active="true">
<!-- VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, Chlorophyll a, Evaluation Data, Daily -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/griddap/erdVH2018chla1day</sourceUrl>
</dataset>
<dataset type="EDDGridFromErddap" datasetID="erdVH2018chla8day" active="true">
<!-- VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, Chlorophyll a, Evaluation Data, 8-Day -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/griddap/erdVH2018chla8day</sourceUrl>
</dataset>
<dataset type="EDDGridFromErddap" datasetID="erdVH2018chlamday" active="true">
<!-- VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, Chlorophyll a, Evaluation Data, Monthly -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/griddap/erdVH2018chlamday</sourceUrl>
</dataset>
<dataset type="EDDGridFromErddap" datasetID="erdVH2018k4901day" active="true">
<!-- VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, K490, Evaluation Data, Daily -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/griddap/erdVH2018k4901day</sourceUrl>
</dataset>
<dataset type="EDDGridFromErddap" datasetID="erdVH2018k4908day" active="true">
<!-- VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, K490, Evaluation Data, 8-Day -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/griddap/erdVH2018k4908day</sourceUrl>
</dataset>
<dataset type="EDDGridFromErddap" datasetID="erdVH2018k490mday" active="true">
<!-- VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, K490, Evaluation Data, Monthly -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/griddap/erdVH2018k490mday</sourceUrl>
</dataset>
<dataset type="EDDGridFromErddap" datasetID="erdVH2018par1day" active="true">
<!-- VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, PAR, Evaluation Data, Daily -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/griddap/erdVH2018par1day</sourceUrl>
</dataset>
<dataset type="EDDGridFromErddap" datasetID="erdVH2018par8day" active="true">
<!-- VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, PAR, Evaluation Data, 8-Day -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/griddap/erdVH2018par8day</sourceUrl>
</dataset>
<dataset type="EDDGridFromErddap" datasetID="erdVH2018parmday" active="true">
<!-- VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, PAR, Evaluation Data, Monthly -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/griddap/erdVH2018parmday</sourceUrl>
</dataset>
<dataset type="EDDGridFromErddap" datasetID="erdVH2018pic1day" active="true">
<!-- VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, PIC, Evaluation Data, Daily -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/griddap/erdVH2018pic1day</sourceUrl>
</dataset>
<dataset type="EDDGridFromErddap" datasetID="erdVH2018pic8day" active="true">
<!-- VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, PIC, Evaluation Data, 8-Day -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/griddap/erdVH2018pic8day</sourceUrl>
</dataset>
<dataset type="EDDGridFromErddap" datasetID="erdVH2018picmday" active="true">
<!-- VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, PIC, Evaluation Data, Monthly -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/griddap/erdVH2018picmday</sourceUrl>
</dataset>
<dataset type="EDDGridFromErddap" datasetID="erdVH2018poc1day" active="true">
<!-- VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, POC, Evaluation Data, Daily -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/griddap/erdVH2018poc1day</sourceUrl>
</dataset>
<dataset type="EDDGridFromErddap" datasetID="erdVH2018poc8day" active="true">
<!-- VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, POC, Evaluation Data, 8-Day -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/griddap/erdVH2018poc8day</sourceUrl>
</dataset>
<dataset type="EDDGridFromErddap" datasetID="erdVH2018pocmday" active="true">
<!-- VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, POC, Evaluation Data, Monthly -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/griddap/erdVH2018pocmday</sourceUrl>
</dataset>
<dataset type="EDDGridFromErddap" datasetID="erdVH2018r6711day" active="true">
<!-- VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, Reflectance at 671 nm, Evaluation Data, Daily -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/griddap/erdVH2018r6711day</sourceUrl>
</dataset>
<dataset type="EDDGridFromErddap" datasetID="erdVH2018r6718day" active="true">
<!-- VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, Reflectance at 671 nm, Evaluation Data, 8-Day -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/griddap/erdVH2018r6718day</sourceUrl>
</dataset>
<dataset type="EDDGridFromErddap" datasetID="erdVH2018r671mday" active="true">
<!-- VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, Reflectance at 671 nm, Evaluation Data, Monthly -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/griddap/erdVH2018r671mday</sourceUrl>
</dataset>
<!-- Here are some excellent tabular datasets that you can include in your ERDDAP
via EDDTableFromErddap links. All requests for actual data from these
datasets get rerouted to the source server. -->
<dataset type="EDDTableFromErddap" datasetID="cwwcNDBCMet" active="true">
<!-- NDBC Standard Meteorological Buoy Data -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet</sourceUrl>
</dataset>
<dataset type="EDDTableFromErddap" datasetID="erdGtsppBest" active="true">
<!-- Global Temperature and Salinity Profile Programme (GTSPP) Data -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest</sourceUrl>
</dataset>
<dataset type="EDDTableFromErddap" datasetID="pmelTaoDyAdcp" active="true">
<!-- TAO/TRITON, RAMA, and PIRATA Buoys, Daily, ADCP -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp</sourceUrl>
</dataset>
<dataset type="EDDTableFromErddap" datasetID="pmelTaoDyAirt" active="true">
<!-- TAO/TRITON, RAMA, and PIRATA Buoys, Daily, Air Temperature -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt</sourceUrl>
</dataset>
<dataset type="EDDTableFromErddap" datasetID="pmelTaoDyBf" active="true">
<!-- TAO/TRITON, RAMA, and PIRATA Buoys, Daily, Buoyancy Flux -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf</sourceUrl>
</dataset>
<dataset type="EDDTableFromErddap" datasetID="pmelTaoDyBp" active="true">
<!-- TAO/TRITON, RAMA, and PIRATA Buoys, Daily, Barometric (Air) Pressure -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp</sourceUrl>
</dataset>
<dataset type="EDDTableFromErddap" datasetID="pmelTaoDyCur" active="true">
<!-- TAO/TRITON, RAMA, and PIRATA Buoys, Daily, Currents -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur</sourceUrl>
</dataset>
<dataset type="EDDTableFromErddap" datasetID="pmelTaoDyD" active="true">
<!-- TAO/TRITON, RAMA, and PIRATA Buoys, Daily, Potential Density Anomaly -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD</sourceUrl>
</dataset>
<dataset type="EDDTableFromErddap" datasetID="pmelTaoDyDyn" active="true">
<!-- TAO/TRITON, RAMA, and PIRATA Buoys, Daily, Dynamic Height -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn</sourceUrl>
</dataset>
<dataset type="EDDTableFromErddap" datasetID="pmelTaoDyEmp" active="true">
<!-- TAO/TRITON, RAMA, and PIRATA Buoys, Daily, Evaporation Minus Precipitation -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp</sourceUrl>
</dataset>
<dataset type="EDDTableFromErddap" datasetID="pmelTaoDyEvap" active="true">
<!-- TAO/TRITON, RAMA, and PIRATA Buoys, Daily, Evaporation -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap</sourceUrl>
</dataset>
<dataset type="EDDTableFromErddap" datasetID="pmelTaoDyHeat" active="true">
<!-- TAO/TRITON, RAMA, and PIRATA Buoys, Daily, Heat Content -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat</sourceUrl>
</dataset>
<dataset type="EDDTableFromErddap" datasetID="pmelTaoDyIso" active="true">
<!-- TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 20C Isotherm Depth -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso</sourceUrl>
</dataset>
<dataset type="EDDTableFromErddap" datasetID="pmelTaoDyLw" active="true">
<!-- TAO/TRITON, RAMA, and PIRATA Buoys, Daily, Longwave Radiation -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw</sourceUrl>
</dataset>
<dataset type="EDDTableFromErddap" datasetID="pmelTaoDyLwnet" active="true">
<!-- TAO/TRITON, RAMA, and PIRATA Buoys, Daily, Net Longwave Radiation -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet</sourceUrl>
</dataset>
<dataset type="EDDTableFromErddap" datasetID="pmelTaoDyPos" active="true">
<!-- TAO/TRITON, RAMA, and PIRATA Buoys, Daily, Position -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos</sourceUrl>
</dataset>
<dataset type="EDDTableFromErddap" datasetID="pmelTaoDyQlat" active="true">
<!-- TAO/TRITON, RAMA, and PIRATA Buoys, Daily, Latent Heat Flux -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat</sourceUrl>
</dataset>
<dataset type="EDDTableFromErddap" datasetID="pmelTaoDyQnet" active="true">
<!-- TAO/TRITON, RAMA, and PIRATA Buoys, Daily, Total Heat Flux -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet</sourceUrl>
</dataset>
<dataset type="EDDTableFromErddap" datasetID="pmelTaoDyQsen" active="true">
<!-- TAO/TRITON, RAMA, and PIRATA Buoys, Daily, Sensible Heat Flux -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen</sourceUrl>
</dataset>
<dataset type="EDDTableFromErddap" datasetID="pmelTaoDyRad" active="true">
<!-- TAO/TRITON, RAMA, and PIRATA Buoys, Daily, Downgoing Shortwave Radiation -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad</sourceUrl>
</dataset>
<dataset type="EDDTableFromErddap" datasetID="pmelTaoDyRain" active="true">
<!-- TAO/TRITON, RAMA, and PIRATA Buoys, Daily, Precipitation -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain</sourceUrl>
</dataset>
<dataset type="EDDTableFromErddap" datasetID="pmelTaoDyRf" active="true">
<!-- TAO/TRITON, RAMA, and PIRATA Buoys, Daily, Heat Flux Due To Rain -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf</sourceUrl>
</dataset>
<dataset type="EDDTableFromErddap" datasetID="pmelTaoDyRh" active="true">
<!-- TAO/TRITON, RAMA, and PIRATA Buoys, Daily, Relative Humidity -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh</sourceUrl>
</dataset>
<dataset type="EDDTableFromErddap" datasetID="pmelTaoDyS" active="true">
<!-- TAO/TRITON, RAMA, and PIRATA Buoys, Daily, Salinity -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS</sourceUrl>
</dataset>
<dataset type="EDDTableFromErddap" datasetID="pmelTaoDySsd" active="true">
<!-- TAO/TRITON, RAMA, and PIRATA Buoys, Daily, Sigma-Theta -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd</sourceUrl>
</dataset>
<dataset type="EDDTableFromErddap" datasetID="pmelTaoDySss" active="true">
<!-- TAO/TRITON, RAMA, and PIRATA Buoys, Daily, Sea Surface Salinity -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss</sourceUrl>
</dataset>
<dataset type="EDDTableFromErddap" datasetID="pmelTaoDySst" active="true">
<!-- TAO/TRITON, RAMA, and PIRATA Buoys, Daily, Sea Surface Temperature -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst</sourceUrl>
</dataset>
<dataset type="EDDTableFromErddap" datasetID="pmelTaoDySwnet" active="true">
<!-- TAO/TRITON, RAMA, and PIRATA Buoys, Daily, Net Shortwave Radiation -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet</sourceUrl>
</dataset>
<dataset type="EDDTableFromErddap" datasetID="pmelTaoDyT" active="true">
<!-- TAO/TRITON, RAMA, and PIRATA Buoys, Daily, Temperature -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT</sourceUrl>
</dataset>
<dataset type="EDDTableFromErddap" datasetID="pmelTaoDyTau" active="true">
<!-- TAO/TRITON, RAMA, and PIRATA Buoys, Daily, Wind Stress -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau</sourceUrl>
</dataset>
<dataset type="EDDTableFromErddap" datasetID="pmelTaoDyW" active="true">
<!-- TAO/TRITON, RAMA, and PIRATA Buoys, Daily, Wind -->
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW</sourceUrl>
</dataset>
<dataset type="EDDGridFromErddap" datasetID="erdMWchla1day" active="true">
<sourceUrl>https://coastwatch.pfeg.noaa.gov/erddap/griddap/erdMWchla1day</sourceUrl>
</dataset>
<dataset type="EDDTableFromErddap" datasetID="rlPmelTaoDySst" active="true">
<sourceUrl>http://localhost:8080/erddap/tabledap/pmelTaoDySst</sourceUrl>
</dataset>
<dataset type="EDDGridFromDap" datasetID="hawaii_d90f_20ee_c4cb" active="true">
<sourceUrl>http://apdrc.soest.hawaii.edu/dods/public_data/SODA/soda_pop2.2.4</sourceUrl>
<accessibleViaWMS>false</accessibleViaWMS>
<reloadEveryNMinutes>15000</reloadEveryNMinutes>
<defaultDataQuery>temp[last][0][0:last][0:last],salt[last][0][0:last][0:last],u[last][0][0:last][0:last],v[last][0][0:last][0:last],w[last][0][0:last][0:last]</defaultDataQuery>
<defaultGraphQuery>temp[last][0][0:last][0:last]&.draw=surface&.vars=longitude|latitude|temp</defaultGraphQuery>
<!-- sourceAttributes>
<att name="Conventions">COARDS</att>
<att name="dataType">Grid</att>
<att name="documentation">http://apdrc.soest.hawaii.edu/datadoc/soda_2.2.4.php</att>
<att name="history">Tue Feb 22 14:37:08 HST 2011 : imported by GrADS Data Server 2.0</att>
<att name="title">SODA v2.2.4 monthly means</att>
</sourceAttributes -->
<addAttributes>
<att name="cdm_data_type">Grid</att>
<att name="Conventions">COARDS, CF-1.6, ACDD-1.3</att>
<att name="infoUrl">https://www.atmos.umd.edu/~ocean/</att>
<att name="institution">TAMU/UMD</att>
<att name="keywords">
Earth Science > Oceans > Ocean Circulation > Ocean Currents,
Earth Science > Oceans > Ocean Temperature > Water Temperature,
Earth Science > Oceans > Salinity/Density > Salinity,
circulation, currents, density, depths, eastward, eastward_sea_water_velocity, means, monthly, northward, northward_sea_water_velocity, ocean, oceans, pop, salinity, sea, sea_water_practical_salinity, sea_water_temperature, seawater, soda, tamu, temperature, umd, upward, upward_sea_water_velocity, velocity, water</att>
<att name="keywords_vocabulary">GCMD Science Keywords</att>
<att name="license">[standard]</att>
<att name="Metadata_Conventions">null</att>
<att name="standard_name_vocabulary">CF Standard Name Table v70</att>
<att name="summary">Simple Ocean Data Assimilation (SODA) version 2.2.4 - A reanalysis of ocean
climate. SODA uses the GFDL modular ocean model version 2.2. The model is
forced by observed surface wind stresses from the COADS data set (from 1958
to 1992) and from NCEP (after 1992). Note that the wind stresses were
detrended before use due to inconsistencies with observed sea level pressure
trends. The model is also constrained by constant assimilation of observed
temperatures, salinities, and altimetry using an optimal data assimilation
technique. The observed data comes from: 1) The World Ocean Atlas 1994 which
contains ocean temperatures and salinities from mechanical
bathythermographs, expendable bathythermographs and conductivity-temperature-
depth probes. 2) The expendable bathythermograph archive 3) The TOGA-TAO
thermistor array 4) The Soviet SECTIONS tropical program 5) Satellite
altimetry from Geosat, ERS/1 and TOPEX/Poseidon.
We are now exploring an eddy-permitting reanalysis based on the Parallel
Ocean Program POP-1.4 model with 40 levels in the vertical and a 0.4x0.25
degree displaced pole grid (25 km resolution in the western North
Atlantic). The first version of this we will release is SODA1.2, a
reanalysis driven by ERA-40 winds covering the period 1958-2001 (extended to
the current year using available altimetry).</att>
<att name="title">SODA - POP 2.2.4 Monthly Means, 1871-2010 (At Depths)</att>
</addAttributes>
<axisVariable>
<sourceName>time</sourceName>
<destinationName>time</destinationName>
<!-- sourceAttributes>
<att name="grads_dim">t</att>
<att name="grads_mapping">linear</att>
<att name="grads_min">00z15jan1958</att>
<att name="grads_size">612</att>
<att name="grads_step">1mo</att>
<att name="long_name">time</att>
<att name="maximum">00z15dec2008</att>
<att name="minimum">00z15jan1958</att>
<att name="resolution" type="float">30.436989</att>
<att name="units">days since 1-1-1 00:00:0.0</att>
</sourceAttributes -->
<addAttributes>
<att name="grads_dim"></att>
<att name="grads_mapping"></att>
<att name="grads_min"></att>
<att name="grads_size"></att>
<att name="grads_step"></att>
<att name="ioos_category">Time</att>
<att name="long_name">Centered Time</att>
<att name="maximum"></att>
<att name="minimum"></att>
<att name="resolution"></att>
<att name="units">days since 0001-01-01T00:00:00</att>
<att name="standard_name">time</att>
</addAttributes>
</axisVariable>
<axisVariable>
<sourceName>lev</sourceName>
<destinationName>depth</destinationName>
<!-- sourceAttributes>
<att name="grads_dim">z</att>
<att name="grads_mapping">levels</att>
<att name="long_name">altitude</att>
<att name="maximum" type="double">5374.0</att>
<att name="minimum" type="double">5.0</att>
<att name="name">Depth</att>
<att name="positive">down</att>
<att name="resolution" type="float">137.66667</att>
<att name="units">meters</att>
</sourceAttributes -->
<addAttributes>
<att name="ioos_category">Location</att>
<att name="grads_dim"></att>
<att name="grads_mapping"></att>
<att name="long_name">Depth</att>
<att name="maximum"></att>
<att name="minimum"></att>
<att name="name"></att>
<att name="resolution"></att>
<att name="units">m</att>
</addAttributes>
</axisVariable>
<axisVariable>
<sourceName>lat</sourceName>
<destinationName>latitude</destinationName>
<!-- sourceAttributes>
<att name="grads_dim">y</att>
<att name="grads_mapping">linear</att>
<att name="grads_size">330</att>
<att name="long_name">latitude</att>
<att name="maximum" type="double">89.25</att>
<att name="minimum" type="double">-75.25</att>
<att name="resolution" type="float">0.5</att>
<att name="units">degrees_north</att>
</sourceAttributes -->
<addAttributes>
<att name="grads_dim"></att>
<att name="grads_mapping"></att>
<att name="grads_size"></att>
<att name="maximum"></att>
<att name="minimum"></att>
<att name="resolution"></att>
<att name="ioos_category">Location</att>
<att name="long_name">Latitude</att>
<att name="standard_name">latitude</att>
</addAttributes>
</axisVariable>
<axisVariable>
<sourceName>lon</sourceName>
<destinationName>longitude</destinationName>
<!-- sourceAttributes>
<att name="grads_dim">x</att>
<att name="grads_mapping">linear</att>
<att name="grads_size">720</att>
<att name="long_name">longitude</att>
<att name="maximum" type="double">359.75</att>
<att name="minimum" type="double">0.25</att>
<att name="resolution" type="float">0.5</att>
<att name="units">degrees_east</att>
</sourceAttributes -->
<addAttributes>
<att name="grads_dim"></att>
<att name="grads_mapping"></att>
<att name="grads_size"></att>
<att name="long_name"></att>
<att name="maximum"></att>
<att name="minimum"></att>
<att name="resolution"></att>
<att name="ioos_category">Location</att>
<att name="long_name">Longitude</att>
<att name="standard_name">longitude</att>
</addAttributes>
</axisVariable>
<dataVariable>
<sourceName>temp</sourceName>
<destinationName>temp</destinationName>
<!-- sourceAttributes>
<att name="_FillValue" type="float">-9.99E33</att>
<att name="long_name">temperature [degc] </att>
<att name="missing_value" type="float">-9.99E33</att>
</sourceAttributes -->
<addAttributes>
<att name="colorBarMinimum" type="double">0</att>
<att name="colorBarMaximum" type="double">32</att>
<att name="ioos_category">Temperature</att>
<att name="long_name">Sea Water Temperature</att>
<att name="standard_name">sea_water_temperature</att>
<att name="units">degree_C</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>salt</sourceName>
<destinationName>salt</destinationName>
<!-- sourceAttributes>
<att name="_FillValue" type="float">-9.99E33</att>
<att name="long_name">salinity [psu] </att>
<att name="missing_value" type="float">-9.99E33</att>
</sourceAttributes -->
<addAttributes>
<att name="colorBarMinimum" type="double">32.0</att>
<att name="colorBarMaximum" type="double">37.0</att>
<att name="ioos_category">Salinity</att>
<att name="long_name">Sea Water Practical Salinity</att>
<att name="standard_name">sea_water_practical_salinity</att>
<att name="units">PSU</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>u</sourceName>
<destinationName>u</destinationName>
<!-- sourceAttributes>
<att name="_FillValue" type="float">-9.99E33</att>
<att name="long_name">zonal velocity [m/s] </att>
<att name="missing_value" type="float">-9.99E33</att>
</sourceAttributes -->
<addAttributes>
<att name="colorBarMinimum" type="double">-0.5</att>
<att name="colorBarMaximum" type="double">0.5</att>
<att name="ioos_category">Currents</att>
<att name="long_name">Eastward Sea Water Velocity</att>
<att name="standard_name">eastward_sea_water_velocity</att>
<att name="units">m s-1</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>v</sourceName>
<destinationName>v</destinationName>
<!-- sourceAttributes>
<att name="_FillValue" type="float">-9.99E33</att>
<att name="long_name">meridional velocity [m/s] </att>
<att name="missing_value" type="float">-9.99E33</att>
</sourceAttributes -->
<addAttributes>
<att name="colorBarMinimum" type="double">-0.5</att>
<att name="colorBarMaximum" type="double">0.5</att>
<att name="ioos_category">Currents</att>
<att name="long_name">Northward Sea Water Velocity</att>
<att name="standard_name">northward_sea_water_velocity</att>
<att name="units">m s-1</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>w</sourceName>
<destinationName>w</destinationName>
<!-- sourceAttributes>
<att name="_FillValue" type="float">-9.99E33</att>
<att name="long_name">vertical velocity [m/s] </att>
<att name="missing_value" type="float">-9.99E33</att>
</sourceAttributes -->
<addAttributes>
<att name="colorBarMinimum" type="double">-1e-5</att>
<att name="colorBarMaximum" type="double">1e-5</att>
<att name="comment">WARNING: Please use this variable's data with caution.</att>
<att name="ioos_category">Currents</att>
<att name="long_name">Upward Sea Water Velocity</att>
<att name="standard_name">upward_sea_water_velocity</att>
<att name="units">m s-1</att>
</addAttributes>
</dataVariable>
</dataset>
<dataset type="EDDGridLonPM180" datasetID="hawaii_d90f_20ee_c4cb_LonPM180" active="true">
<dataset type="EDDGridFromErddap" datasetID="hawaii_d90f_20ee_c4cb_LonPM180Child">
<!-- SODA - POP 2.2.4 Monthly Means (At Depths)
minLon=0.25 maxLon=359.75 -->
<sourceUrl>http://localhost:8080/erddap/griddap/hawaii_d90f_20ee_c4cb</sourceUrl>
</dataset>
</dataset>
<dataset type="EDDTableFromSOS" datasetID="nosSosATemp" active="true">
<!-- web page/enter parameters: https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/ -->
<sourceUrl>https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/SOS</sourceUrl>
<sosVersion>1.0.0</sosVersion>
<sosServerType>IOOS_NOS</sosServerType>
<reloadEveryNMinutes>1440</reloadEveryNMinutes>
<observationOfferingIdRegex>.+</observationOfferingIdRegex>
<requestObservedPropertiesSeparately>true</requestObservedPropertiesSeparately>
<bboxOffering></bboxOffering>
<bboxParameter></bboxParameter>
<addAttributes>
<att name="cdm_data_type">TimeSeries</att>
<att name="cdm_timeseries_variables">station_id, longitude, latitude, sensor_id</att>
<att name="Conventions">COARDS, CF-1.6, ACDD-1.3</att>
<att name="Metadata_Conventions">null</att>
<att name="infoUrl">https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/</att>
<att name="institution">NOAA NOS</att>
<att name="keywords">
Earth Science > Atmosphere > Altitude > Station Height,
Earth Science > Atmosphere > Atmospheric Temperature > Air Temperature,
air, air_temperature, altitude, atmosphere, atmospheric, experimental, height, identifier, noaa, nos, sensor, sos, station, temperature, time</att>
<att name="keywords_vocabulary">GCMD Science Keywords</att>
<att name="license">[standard]</att>
<att name="standard_name_vocabulary">CF Standard Name Table v70</att>
<att name="summary">The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have air temperature data. ****These services are for testing and evaluation use only****
Because of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.</att>
<att name="title">NOAA NOS SOS, EXPERIMENTAL, 1853-present, Air Temperature</att>
</addAttributes>
<longitudeSourceName>longitude (degree)</longitudeSourceName>
<latitudeSourceName>latitude (degree)</latitudeSourceName>
<altitudeSourceName>ioos:VerticalPosition</altitudeSourceName>
<timeSourceName>date_time</timeSourceName>
<timeSourceFormat>yyyy-MM-dd'T'HH:mm:ssZ</timeSourceFormat>
<dataVariable>
<sourceName>sensor_id</sourceName>
<dataType>String</dataType>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="ioos_category">Identifier</att>
<att name="long_name">Sensor ID</att>
<att name="observedProperty">http://mmisw.org/ont/cf/parameter/air_temperature</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>air_temperature (C)</sourceName>
<destinationName>air_temperature</destinationName>
<dataType>float</dataType>
<addAttributes>
<att name="colorBarMinimum" type="double">-10</att>
<att name="colorBarMaximum" type="double">40</att>
<att name="ioos_category">Temperature</att>
<att name="long_name">Air Temperature</att>
<att name="observedProperty">http://mmisw.org/ont/cf/parameter/air_temperature</att>
<att name="standard_name">air_temperature</att>
<att name="units">degree_C</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>quality_flags</sourceName>
<destinationName>quality_flags</destinationName>
<dataType>String</dataType>
<addAttributes>
<att name="ioos_category">Quality</att>
<att name="long_name">Quality Flags</att>
<att name="observedProperty">http://mmisw.org/ont/cf/parameter/air_temperature</att>
</addAttributes>
</dataVariable>
</dataset>
<!-- This is an example of EDDTableFromNcFiles, but commented out since you won't have these files.
<dataset type="EDDTableFromNcFiles" datasetID="cwwcNDBCMetF">
<reloadEveryNMinutes>10</reloadEveryNMinutes>
<accessibleViaFiles>true</accessibleViaFiles>
<fileDir>/u00/data/points/ndbcMet/</fileDir>
<recursive>false</recursive>
<fileNameRegex>NDBC_.*\x2Enc</fileNameRegex>
<metadataFrom>last</metadataFrom>
<preExtractRegex>^NDBC_</preExtractRegex>
<postExtractRegex>_met\x2Enc$</postExtractRegex>
<extractRegex>.*</extractRegex>
<columnNameForExtract>station</columnNameForExtract>
<sortedColumnSourceName>TIME</sortedColumnSourceName>
<addAttributes>
<att name="cdm_data_type">TimeSeries</att>
<att name="featureType">TimeSeries</att>
<att name="cdm_timeseries_variables">station, longitude, latitude</att>
<att name="subsetVariables">station, longitude, latitude</att>
<att name="Conventions">COARDS, CF-1.6, Unidata Dataset Discovery v1.0</att>
<att name="Metadata_Conventions">COARDS, CF-1.6, Unidata Dataset Discovery v1.0</att>
<att name="date_created">null</att>
<att name="date_issued">null</att>
<att name="id">null</att>
<att name="infoUrl">http://www.ndbc.noaa.gov/</att>
<att name="institution">NOAA NDBC, CoastWatch WCN</att>
<att name="keywords">
Earth Science > Atmosphere > Air Quality > Visibility,
Earth Science > Atmosphere > Atmospheric Pressure > Surface Pressure,
Earth Science > Atmosphere > Atmospheric Temperature > Surface Air Temperature,
Earth Science > Atmosphere > Atmospheric Winds > Surface Winds,
Earth Science > Oceans > Ocean Temperature > Sea Surface Temperature,
Earth Science > Oceans > Ocean Waves > Wave Height,
Earth Science > Oceans > Ocean Waves > Wave Period,
Earth Science > Oceans > Ocean Waves > Wave Speed/Direction
</att>
<att name="keywords_vocabulary">GCMD Science Keywords</att>
<att name="license">[standard]</att>
<att name="sourceUrl">http://www.ndbc.noaa.gov/</att>
<att name="summary">The National Data Buoy Center (NDBC) distributes meteorological data from
moored buoys maintained by NDBC and others. Moored buoys are the weather
sentinels of the sea. They are deployed in the coastal and offshore waters
from the western Atlantic to the Pacific Ocean around Hawaii, and from the
Bering Sea to the South Pacific. NDBC's moored buoys measure and transmit
barometric pressure; wind direction, speed, and gust; air and sea
temperature; and wave energy spectra from which significant wave height,
dominant wave period, and average wave period are derived. Even the
direction of wave propagation is measured on many moored buoys.
The data is from NOAA NDBC. It has been reformatted by NOAA Coastwatch,
West Coast Node. This dataset only has the data that is closest to a
given hour. The time values in the dataset are rounded to the nearest hour.
This dataset has both historical data (quality controlled, before
2011-04-01T00:00:00) and near real time data (less quality controlled, from
2011-04-01T00:00:00 on).</att>
<att name="testOutOfDate">now-1day</att>
<att name="title">NDBC Standard Meteorological Buoy Data</att>
</addAttributes>
<dataVariable>
<sourceName>station</sourceName>
<destinationName>station</destinationName>
<dataType>String</dataType>
<addAttributes>
<att name="ioos_category">Identifier</att>
<att name="long_name">Station Name</att>
<att name="cf_role">timeseries_id</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>LON</sourceName>
<destinationName>longitude</destinationName>
<dataType>float</dataType>
<addAttributes>
</addAttributes>
</dataVariable>