-
Notifications
You must be signed in to change notification settings - Fork 0
/
datasets.xml
17353 lines (16762 loc) · 840 KB
/
datasets.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
<?xml version="1.0" encoding="ISO-8859-1" ?>
<erddapDatasets>
<!-- 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>
<!-- dataforseo.com, an Estonian SEO company; swamped server with request failures on: -->
<!-- 22sep23, 1apr24 -->
136.243.228.193,136.243.228.179,
<!-- lcg-ce4.sfu.computecanada.ca; causing time outs due to high memory: -->
<!-- 01nov24-05nov24; blocked on 05nov24 -->
206.12.127.34
</requestBlacklist>
<!-- If you want to prevent specific people from using the email/URL subscription
system, uncomment the following tag and add their email addresses to the comma-separated list.
You can use the name "*" to blacklist an entire domain, e.g., *@example.com .
-->
<subscriptionEmailBlacklist>
</subscriptionEmailBlacklist>
<dataset type="EDDGridFromNcFiles" datasetID="ubcSSnBathymetryV21-08" active="true">
<reloadEveryNMinutes>10080</reloadEveryNMinutes>
<updateEveryNMillis>10000</updateEveryNMillis>
<fileDir>/SalishSeaCast/grid/</fileDir>
<recursive>false</recursive>
<fileNameRegex>.*bathymetry_202108\.nc$</fileNameRegex>
<metadataFrom>last</metadataFrom>
<matchAxisNDigits>20</matchAxisNDigits>
<fileTableInMemory>false</fileTableInMemory>
<accessibleViaFiles>false</accessibleViaFiles>
<!-- sourceAttributes>
<att name="_NCProperties">version=1|netcdflibversion=4.4.1|hdf5libversion=1.8.17</att>
<att name="comment">Bathymetry processed from Michaels New Full River Bathymetry with 2m crit. bank but deeper river</att>
<att name="Conventions">CF-1.6</att>
<att name="history">[2021-08-06 09:57:36] Created netCDF4 zlib=True dataset.</att>
<att name="institution">Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia</att>
<att name="references">REQUIRED</att>
<att name="source">https://github.com/SalishSeaCast/tools/blob/main/bathymetry/Process202108Bathymetry.ipynb</att>
<att name="title">Bathymetry 202108</att>
</sourceAttributes -->
<addAttributes>
<att name="cdm_data_type">Grid</att>
<att name="Conventions">CF-1.6, COARDS, ACDD-1.3</att>
<att name="creator_name">SalishSeaCast Project Contributors</att>
<att name="creator_email">[email protected]</att>
<att name="creator_url">https://salishsea-meopar-docs.readthedocs.io/</att>
<att name="acknowledgement">Canadian Hydrographic Service (CHS),
National Ocean and Atmospheric Administration (NOAA),
United States Geological Service (USGS),
Digital Research Alliance of Canada
This product has been produced by the University of British Columbia based in part on
Canadian Hydrographic Service charts and/or data, pursuant to CHS Direct User Licence
No. 2016-0504-1260-U.
The incorporation of data sourced from CHS in this product shall not be construed as
constituting an endorsement of CHS of this product.
This product does not meet the requirements of Charts and Nautical Publications Regulations,
1995 under the Canadian Shipping Act, 2001.
Official charts and publications, corrected and up-to-data,
must be used to meet the requirements of those regulations.</att>
<att name="drawLandMask">over</att>
<att name="institution">UBC EOAS</att>
<att name="institution_fullname">Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia</att>
<att name="infoUrl">https://salishsea.eos.ubc.ca/</att>
<att name="keywords">bathymetry, depth, latitude, longitude, nav_lat, nav_lon, ocean, oceans,
Oceans > Bathymetry/Seafloor Topography > Bathymetry,
Salish Sea, sea floor, sea_floor_depth, seafloor, topography</att>
<att name="keywords_vocabulary">GCMD Science Keywords</att>
<att name="license">The SalishSeaCast NEMO model results are copyright
by the SalishSeaCast Project Contributors and The University of British Columbia.
They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0</att>
<att name="standard_name_vocabulary">CF Standard Name Table v29</att>
<att name="summary">SalishSeaCast NEMO Model Grid, Geo-location and Bathymetry, v21-08
Longitude, latitude, and bathymetry of the SalishSeaCast NEMO model grid.
The bathymetry values are those calculated by NEMO from the input bathymetry file.
NEMO modifies the input bathymetry to remove isolated holes, and too-small partial steps;
See the ubcSSn2DMeshMaskV21-08 dataset for the complete details of the calculation grid.
The model grid includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound,
and Johnstone Strait on the coasts of Washington State and British Columbia.
v1: longitude, latitude and bathymetry variables
v16-07: same variables,
bathymetry uniformly deepened by 1 grid level,
smoothed at Juan de Fuca & Johnstone Strait open boundaries,
Fraser River lengthened,
bathymetry deepened near mouth of Fraser River
v17-02: same variables,
Bathymetry composed from 3 datasets:
* USGS Digital elevation model (DEM) of Cascadia, latitude 39N-53N, longitude 116W-133W, Open-File Report 99-369, https://pubs.er.usgs.gov/publication/ofr99369
* NOAA British Columbia, 3 arc-second MSL DEM, https://www.ngdc.noaa.gov/dem/squareCellGrid/download/4956
* CHS Multibeam data and all point cloud data for the Salish Sea.
Straightened and smoothed Juan de Fuca & Johnstone Strait open boundaries.
Added proxy channel for Fraser River upstream of confluence with the Pitt River.
Adjustments by Michael Dunphy to increase resolution of Fraser River channels downstream of
confluence with the Pitt River.
v21-08: same variables,
Bathymetry composed from 3 datasets:
* USGS Digital elevation model (DEM) of Cascadia, latitude 39N-53N, longitude 116W-133W, Open-File Report 99-369, https://pubs.er.usgs.gov/publication/ofr99369
* NOAA British Columbia, 3 arc-second MSL DEM, https://www.ngdc.noaa.gov/dem/squareCellGrid/download/4956
* CHS Multibeam data and all point cloud data for the Salish Sea.
Straightened and smoothed Juan de Fuca & Johnstone Strait open boundaries.
Added proxy channel for Fraser River upstream of confluence with the Pitt River.
Adjustments by Michael Dunphy to increase resolution of Fraser River channels downstream of
confluence with the Pitt River.
Moved coastline to 2m isobath and set depth there to 4m; in contrast to 4m depth at 0m isobath;
volume is approximately conserved.
Deepened Tacoma Narrows to chart depth.
Added Fraser River North Arm spit,
Iona sewage outfall spit,
Robert's Bank port facility,
and Tsawwassen ferry terminal.
</att>
<att name="title">SalishSeaCast NEMO Model Grid, Geo-location and Bathymetry, v21-08</att>
<att name="project">SalishSeaCast NEMO Model</att>
<att name="references">https://github.com/SalishSeaCast/grid/blob/main/bathymetry_202108.nc</att>
<att name="source">https://github.com/SalishSeaCast/tools/blob/main/bathymetry/Process202108Bathymetry.ipynb</att>
<att name="NCO">null</att>
<att name="comment">null</att>
</addAttributes>
<axisVariable>
<sourceName>y</sourceName>
<destinationName>gridY</destinationName>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Grid Y</att>
<att name="standard_name">y</att>
<att name="coverage_content_type">modelResult</att>
<att name="comment">y values are grid indices in the model y-direction.</att>
<att name="ioos_category">location</att>
</addAttributes>
</axisVariable>
<axisVariable>
<sourceName>x</sourceName>
<destinationName>gridX</destinationName>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="long_name">Grid X</att>
<att name="standard_name">x</att>
<att name="coverage_content_type">modelResult</att>
<att name="comment">x values are grid indices in the model x-direction.</att>
<att name="ioos_category">location</att>
</addAttributes>
</axisVariable>
<dataVariable>
<sourceName>Bathymetry</sourceName>
<destinationName>bathymetry</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
<att name="_ChunkSize" type="intList">898 398</att>
<att name="_FillValue" type="double">0.0</att>
<att name="least_significant_digit" type="double">0.1</att>
<att name="units">metres</att>
</sourceAttributes -->
<addAttributes>
<att name="_ChunkSizes">null</att>
<att name="colorBarMaximum" type="double">450.0</att>
<att name="colorBarMinimum" type="double">0.0</att>
<att name="colorBarPalette">OceanDepth</att>
<att name="long_name">Sea Floor Depth</att>
<att name="standard_name">sea_floor_depth</att>
<att name="coverage_content_type">modelResult</att>
<att name="cell_measures">null</att>
<att name="cell_methods">null</att>
<att name="interval_operation">null</att>
<att name="interval_write">null</att>
<att name="online_operation">null</att>
<att name="ioos_category">bathymetry</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>nav_lat</sourceName>
<destinationName>latitude</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
<att name="_ChunkSize" type="intList">898 398</att>
<att name="units">degrees_north</att>
</sourceAttributes -->
<addAttributes>
<att name="_ChunkSizes">null</att>
<att name="colorBarMaximum" type="double">52.0</att>
<att name="colorBarMinimum" type="double">46.0</att>
<att name="coverage_content_type">modelResult</att>
<att name="cell_measures">null</att>
<att name="cell_methods">null</att>
<att name="interval_operation">null</att>
<att name="interval_write">null</att>
<att name="online_operation">null</att>
<att name="ioos_category">location</att>
<att name="standard_name">latitude</att>
<att name="long_name">Latitude</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>nav_lon</sourceName>
<destinationName>longitude</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
<att name="_ChunkSize" type="intList">898 398</att>
<att name="units">degrees_east</att>
</sourceAttributes -->
<addAttributes>
<att name="_ChunkSizes">null</att>
<att name="colorBarMaximum" type="double">-121.0</att>
<att name="colorBarMinimum" type="double">-127.0</att>
<att name="coverage_content_type">modelResult</att>
<att name="cell_measures">null</att>
<att name="cell_methods">null</att>
<att name="interval_operation">null</att>
<att name="interval_write">null</att>
<att name="online_operation">null</att>
<att name="ioos_category">location</att>
<att name="standard_name">longitude</att>
<att name="long_name">Longitude</att>
</addAttributes>
</dataVariable>
</dataset>
<dataset type="EDDGridFromNcFiles" datasetID="ubcSSn2DMeshMaskV21-08" active="true">
<reloadEveryNMinutes>10080</reloadEveryNMinutes>
<updateEveryNMillis>10000</updateEveryNMillis>
<fileDir>/SalishSeaCast/grid/</fileDir>
<recursive>false</recursive>
<fileNameRegex>.*mesh_mask202108\.nc$</fileNameRegex>
<metadataFrom>last</metadataFrom>
<matchAxisNDigits>20</matchAxisNDigits>
<fileTableInMemory>false</fileTableInMemory>
<accessibleViaFiles>false</accessibleViaFiles>
<!-- sourceAttributes>
<att name="Conventions">CF-1.6</att>
<att name="file_name">NEMO-forcing/grid/mesh_mask202108.nc</att>
<att name="history">[2021-08-07 17:25] ncks -4 -L4 -O mesh_mask.nc mesh_mask202108.nc\n
[2023-12-19 13:36] Added metadata to variables in preparation for creation of ERDDAP datasets.</att>
<att name="institution">Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia</att>
<att name="references">https://github.com/SalishSeaCast/tools/blob/main/bathymetry/Process202108Bathymetry.ipynb</att>
<att name="source">NEMO-3.6 Salish Sea configuration</att>
<att name="TimeStamp">07/08/2021 17:25:49 -0700</att>
<att name="title">Salish Sea NEMO bathymetry_202108 Bathymetry Mesh Mask</att>
</sourceAttributes -->
<addAttributes>
<att name="cdm_data_type">Grid</att>
<att name="Conventions">CF-1.6, COARDS, ACDD-1.3</att>
<att name="creator_name">SalishSeaCast Project Contributors</att>
<att name="creator_email">[email protected]</att>
<att name="creator_url">https://salishsea-meopar-docs.readthedocs.io/</att>
<att name="acknowledgement">Canadian Hydrographic Service (CHS),
National Ocean and Atmospheric Administration (NOAA),
United States Geological Service (USGS),
Digital Research Alliance of Canada
This product has been produced by the University of British Columbia based in part on
Canadian Hydrographic Service charts and/or data, pursuant to CHS Direct User Licence
No. 2016-0504-1260-U.
The incorporation of data sourced from CHS in this product shall not be construed as
constituting an endorsement of CHS of this product.
This product does not meet the requirements of Charts and Nautical Publications Regulations,
1995 under the Canadian Shipping Act, 2001.
Official charts and publications, corrected and up-to-data,
must be used to meet the requirements of those regulations.</att>
<att name="drawLandMask">over</att>
<att name="infoUrl">https://salishsea.eos.ubc.ca/</att>
<att name="institution">UBC EOAS</att>
<att name="institution_fullname">Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia</att>
<att name="keywords">bathymetry, coordinates, depth, e1t, e1u, e1v, e1f, e2t, e2u, e2v, e2f, ff, f-grid, fmaskutil,
glamt, glamu, glamv, glamf, gphit, gphiu, gphiv, gphif, grid, grid parameters, mbathy, mesh mask, NEMO, ocean,
Salish Sea, sea, spacing, t-grid, tmaskutil, u-grid, umaskutil, v-grid, vmaskutil, vorticity-grid</att>
<att name="license">The SalishSeaCast NEMO model results are copyright
by the SalishSeaCast Project Contributors and The University of British Columbia.
They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0</att>
<att name="standard_name_vocabulary">CF Standard Name Table v29</att>
<att name="summary">SalishSeaCast NEMO Model Grid, 2D Mesh Mask, v21-08
NEMO grid variable value for the u-v plane of the
SalishSeaCast NEMO model Arakawa-C grid.
The values are those calculated by NEMO from the input coordinates and bathymetry files.
The variable names are those used by NEMO-3.6,
see the NEMO-3.6 book (http://www.nemo-ocean.eu/Media/Files/NEMO_book_V3_6.pdf) for details,
or the long_name attributes of the variables for succinct descriptions of the variables.
The model grid includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound,
and Johnstone Strait on the coasts of Washington State and British Columbia.
v1: e1t, e2t, e1u, e2u, e1v, e2v, e1f, e2f, glamt, gphit, glamu, gphiu, glamv, gphiv,
tmaskutil, umaskutil, vmaskutil, fmaskutil, ff, mbathy variables
v16-07: e1t, e2t, e1u, e2u, e1v, e2v, e1f, e2f, glamt, gphit, glamu, gphiu, glamv, gphiv,
glamf, gphif, tmaskutil, umaskutil, vmaskutil, fmaskutil, ff, mbathy variables
v17-02: tmaskutil, umaskutil, vmaskutil, fmaskutil, glamt, glamu, glamv, glamf, gphit, gphiu, gphiv, gphif,
e1t, e1u, e1v, e1f, e2t, e2u, e2v, e2f, ff, mbathy variables
glamf, gphif, tmaskutil, umaskutil, vmaskutil, fmaskutil, ff, mbathy variables
v21-08: tmaskutil, umaskutil, vmaskutil, fmaskutil, glamt, glamu, glamv, glamf, gphit, gphiu, gphiv, gphif,
e1t, e1u, e1v, e1f, e2t, e2u, e2v, e2f, ff, mbathy variables</att>
<att name="title">SalishSeaCast NEMO Model Grid, 2D Mesh Mask, v21-08</att>
<att name="project">SalishSeaCast NEMO Model</att>
<att name="references">https://github.com/SalishSeaCast/grid/blob/main/mesh_mask202108.nc</att>
<att name="NCO">null</att>
<att name="name">null</att>
<att name="comment">null</att>
</addAttributes>
<axisVariable>
<sourceName>t</sourceName>
<destinationName>time</destinationName>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="coverage_content_type">modelResult</att>
<att name="long_name">Time Axis</att>
<att name="standard_name">time</att>
<att name="calendar">proleptic_gregorian</att>
<att name="time_origin">2007-01-01 00:30:00</att>
<att name="units">seconds since 2007-01-01 00:30:00</att>
</addAttributes>
</axisVariable>
<axisVariable>
<sourceName>y</sourceName>
<destinationName>gridY</destinationName>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="coverage_content_type">modelResult</att>
<att name="long_name">Grid Y</att>
<att name="standard_name">y</att>
<att name="units">count</att>
<att name="comment">gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetryV21-08 dataset.</att>
<att name="ioos_category">location</att>
</addAttributes>
</axisVariable>
<axisVariable>
<sourceName>x</sourceName>
<destinationName>gridX</destinationName>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="coverage_content_type">modelResult</att>
<att name="long_name">Grid X</att>
<att name="standard_name">x</att>
<att name="units">count</att>
<att name="comment">gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetry dataset.</att>
<att name="ioos_category">location</att>
</addAttributes>
</axisVariable>
<dataVariable>
<sourceName>tmaskutil</sourceName>
<destinationName>tmaskutil</destinationName>
<dataType>byte</dataType>
<addAttributes>
<att name="content_coverage_type">modelResult</att>
<att name="long_name">Dry Land Mask for T-grid and W-grid</att>
<att name="standard_name">tmaskutil</att>
<att name="ioos_category">grid_parameter</att>
<att name="flag_meanings">land, water</att>
<att name="flag_values">0, 1</att>
<att name="_ChunkSizes">null</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>umaskutil</sourceName>
<destinationName>umaskutil</destinationName>
<dataType>byte</dataType>
<addAttributes>
<att name="content_coverage_type">modelResult</att>
<att name="long_name">Dry Land Mask for U-grid</att>
<att name="standard_name">umaskutil</att>
<att name="ioos_category">grid_parameter</att>
<att name="flag_meanings">land, water</att>
<att name="flag_values">0, 1</att>
<att name="_ChunkSizes">null</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>vmaskutil</sourceName>
<destinationName>vmaskutil</destinationName>
<dataType>byte</dataType>
<addAttributes>
<att name="content_coverage_type">modelResult</att>
<att name="long_name">Dry Land Mask for V-grid</att>
<att name="standard_name">vmaskutil</att>
<att name="ioos_category">grid_parameter</att>
<att name="flag_meanings">land, water</att>
<att name="flag_values">0, 1</att>
<att name="_ChunkSizes">null</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>fmaskutil</sourceName>
<destinationName>fmaskutil</destinationName>
<dataType>byte</dataType>
<addAttributes>
<att name="content_coverage_type">modelResult</att>
<att name="long_name">Dry Land Mask for vorticity-grid</att>
<att name="standard_name">fmaskutil</att>
<att name="ioos_category">grid_parameter</att>
<att name="flag_meanings">land, water</att>
<att name="flag_values">0, 1</att>
<att name="_ChunkSizes">null</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>glamt</sourceName>
<destinationName>glamt</destinationName>
<dataType>float</dataType>
<addAttributes>
<att name="content_coverage_type">modelResult</att>
<att name="long_name">Longitude of T-grid Points</att>
<att name="standard_name">glamt</att>
<att name="ioos_category">grid_parameter</att>
<att name="units">degrees_east</att>
<att name="_ChunkSizes">null</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>glamu</sourceName>
<destinationName>glamu</destinationName>
<dataType>float</dataType>
<addAttributes>
<att name="content_coverage_type">modelResult</att>
<att name="long_name">Longitude of U-grid Points</att>
<att name="standard_name">glamu</att>
<att name="ioos_category">grid_parameter</att>
<att name="units">degrees_east</att>
<att name="_ChunkSizes">null</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>glamv</sourceName>
<destinationName>glamv</destinationName>
<dataType>float</dataType>
<addAttributes>
<att name="content_coverage_type">modelResult</att>
<att name="long_name">Longitude of V-grid Points</att>
<att name="standard_name">glamv</att>
<att name="ioos_category">grid_parameter</att>
<att name="units">degrees_east</att>
<att name="_ChunkSizes">null</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>glamf</sourceName>
<destinationName>glamf</destinationName>
<dataType>float</dataType>
<addAttributes>
<att name="content_coverage_type">modelResult</att>
<att name="long_name">Longitude of Vorticity-grid Points</att>
<att name="standard_name">glamf</att>
<att name="ioos_category">grid_parameter</att>
<att name="units">degrees_east</att>
<att name="_ChunkSizes">null</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>gphit</sourceName>
<destinationName>gphit</destinationName>
<dataType>float</dataType>
<addAttributes>
<att name="content_coverage_type">modelResult</att>
<att name="long_name">Latitude of T-grid Points</att>
<att name="standard_name">gphit</att>
<att name="ioos_category">grid_parameter</att>
<att name="units">degrees_north</att>
<att name="_ChunkSizes">null</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>gphiu</sourceName>
<destinationName>gphiu</destinationName>
<dataType>float</dataType>
<addAttributes>
<att name="content_coverage_type">modelResult</att>
<att name="long_name">Latitude of U-grid Points</att>
<att name="standard_name">gphiu</att>
<att name="ioos_category">grid_parameter</att>
<att name="units">degrees_north</att>
<att name="_ChunkSizes">null</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>gphiv</sourceName>
<destinationName>gphiv</destinationName>
<dataType>float</dataType>
<addAttributes>
<att name="content_coverage_type">modelResult</att>
<att name="long_name">Latitude of V-grid Points</att>
<att name="standard_name">gphiv</att>
<att name="ioos_category">grid_parameter</att>
<att name="units">degrees_north</att>
<att name="_ChunkSizes">null</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>gphif</sourceName>
<destinationName>gphif</destinationName>
<dataType>float</dataType>
<addAttributes>
<att name="content_coverage_type">modelResult</att>
<att name="long_name">Latitude of Vorticity-grid Points</att>
<att name="standard_name">gphif</att>
<att name="ioos_category">grid_parameter</att>
<att name="units">degrees_north</att>
<att name="_ChunkSizes">null</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>e1t</sourceName>
<destinationName>e1t</destinationName>
<dataType>double</dataType>
<addAttributes>
<att name="content_coverage_type">modelResult</att>
<att name="long_name">Grid Spacing on T-grid in u Direction</att>
<att name="standard_name">e1t</att>
<att name="ioos_category">grid_parameter</att>
<att name="units">m</att>
<att name="_ChunkSizes">null</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>e1u</sourceName>
<destinationName>e1u</destinationName>
<dataType>double</dataType>
<addAttributes>
<att name="content_coverage_type">modelResult</att>
<att name="long_name">Grid Spacing on U-grid in u Direction</att>
<att name="standard_name">e1u</att>
<att name="ioos_category">grid_parameter</att>
<att name="units">m</att>
<att name="_ChunkSizes">null</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>e1v</sourceName>
<destinationName>e1v</destinationName>
<dataType>double</dataType>
<addAttributes>
<att name="content_coverage_type">modelResult</att>
<att name="long_name">Grid Spacing on V-grid in u Direction</att>
<att name="standard_name">e1v</att>
<att name="ioos_category">grid_parameter</att>
<att name="units">m</att>
<att name="_ChunkSizes">null</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>e1f</sourceName>
<destinationName>e1f</destinationName>
<dataType>double</dataType>
<addAttributes>
<att name="content_coverage_type">modelResult</att>
<att name="long_name">Grid Spacing on Vorticity-grid in u Direction</att>
<att name="standard_name">e1f</att>
<att name="ioos_category">grid_parameter</att>
<att name="units">m</att>
<att name="_ChunkSizes">null</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>e2t</sourceName>
<destinationName>e2t</destinationName>
<dataType>double</dataType>
<addAttributes>
<att name="content_coverage_type">modelResult</att>
<att name="long_name">Grid Spacing on T-grid in v Direction</att>
<att name="standard_name">e2t</att>
<att name="ioos_category">grid_parameter</att>
<att name="units">m</att>
<att name="_ChunkSizes">null</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>e2u</sourceName>
<destinationName>e2u</destinationName>
<dataType>double</dataType>
<addAttributes>
<att name="content_coverage_type">modelResult</att>
<att name="long_name">Grid Spacing on U-grid in v Direction</att>
<att name="standard_name">e2u</att>
<att name="ioos_category">grid_parameter</att>
<att name="units">m</att>
<att name="_ChunkSizes">null</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>e2v</sourceName>
<destinationName>e2v</destinationName>
<dataType>double</dataType>
<addAttributes>
<att name="content_coverage_type">modelResult</att>
<att name="long_name">Grid Spacing on V-grid in v Direction</att>
<att name="standard_name">e2v</att>
<att name="ioos_category">grid_parameter</att>
<att name="units">m</att>
<att name="_ChunkSizes">null</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>e2f</sourceName>
<destinationName>e2f</destinationName>
<dataType>double</dataType>
<addAttributes>
<att name="content_coverage_type">modelResult</att>
<att name="long_name">Grid Spacing on Vorticity-grid in v Direction</att>
<att name="standard_name">e2f</att>
<att name="ioos_category">grid_parameter</att>
<att name="units">m</att>
<att name="_ChunkSizes">null</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>ff</sourceName>
<destinationName>ff</destinationName>
<dataType>double</dataType>
<addAttributes>
<att name="content_coverage_type">modelResult</att>
<att name="long_name">Coriolis parameter on Vorticity-grid</att>
<att name="standard_name">ff</att>
<att name="ioos_category">grid_parameter</att>
<att name="units">s-1</att>
<att name="_ChunkSizes">null</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>mbathy</sourceName>
<destinationName>mbathy</destinationName>
<dataType>short</dataType>
<addAttributes>
<att name="content_coverage_type">modelResult</att>
<att name="long_name">Fortran Index of Deepest Water Cell, T-grid</att>
<att name="standard_name">mbathy</att>
<att name="ioos_category">grid_parameter</att>
<att name="units">count</att>
<att name="_ChunkSizes">null</att>
</addAttributes>
</dataVariable>
</dataset>
<dataset type="EDDGridFromNcFiles" datasetID="ubcSSn3DMeshMaskV21-08" active="true">
<reloadEveryNMinutes>10080</reloadEveryNMinutes>
<updateEveryNMillis>10000</updateEveryNMillis>
<fileDir>/SalishSeaCast/grid/</fileDir>
<recursive>false</recursive>
<fileNameRegex>.*mesh_mask202108\.nc$</fileNameRegex>
<metadataFrom>last</metadataFrom>
<matchAxisNDigits>20</matchAxisNDigits>
<fileTableInMemory>false</fileTableInMemory>
<accessibleViaFiles>false</accessibleViaFiles>
<!-- sourceAttributes>
<att name="Conventions">CF-1.6</att>
<att name="file_name">NEMO-forcing/grid/mesh_mask202108.nc</att>
<att name="history">[2021-08-07 17:25] ncks -4 -L4 -O mesh_mask.nc mesh_mask202108.nc\n
[2023-12-19 13:36] Added metadata to variables in preparation for creation of ERDDAP datasets.</att>
<att name="institution">Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia</att>
<att name="references">https://github.com/SalishSeaCast/tools/blob/main/bathymetry/Process202108Bathymetry.ipynb</att>
<att name="source">NEMO-3.6 Salish Sea configuration</att>
<att name="TimeStamp">07/08/2021 17:25:49 -0700</att>
<att name="title">Salish Sea NEMO bathymetry_202108 Bathymetry Mesh Mask</att>
</sourceAttributes -->
<addAttributes>
<att name="cdm_data_type">Grid</att>
<att name="Conventions">CF-1.6, COARDS, ACDD-1.3</att>
<att name="creator_name">SalishSeaCast Project Contributors</att>
<att name="creator_email">[email protected]</att>
<att name="creator_url">https://salishsea-meopar-docs.readthedocs.io/</att>
<att name="acknowledgement">Canadian Hydrographic Service (CHS),
National Ocean and Atmospheric Administration (NOAA),
United States Geological Service (USGS),
Digital Research Alliance of Canada
This product has been produced by the University of British Columbia based in part on
Canadian Hydrographic Service charts and/or data, pursuant to CHS Direct User Licence
No. 2016-0504-1260-U.
The incorporation of data sourced from CHS in this product shall not be construed as
constituting an endorsement of CHS of this product.
This product does not meet the requirements of Charts and Nautical Publications Regulations,
1995 under the Canadian Shipping Act, 2001.
Official charts and publications, corrected and up-to-data,
must be used to meet the requirements of those regulations.</att>
<att name="drawLandMask">over</att>
<att name="infoUrl">https://salishsea.eos.ubc.ca/</att>
<att name="institution">UBC EOAS</att>
<att name="institution_fullname">Dept of Earth, Ocean & Atmospheric Sciences, University of British Columbia</att>
<att name="keywords">bathymetry, coordinates, depth, e3t_0, e3u_0, e3v_0, e3w_0, f-grid, fmask, gdept_0, gdepu, gdepv,
gdepw_0, grid, grid parameters, mesh mask, NEMO, ocean, Salish Sea, sea, spacing, t-grid, tmask, u-grid, umask,
v-grid, vmask, vorticity-grid, w-grid</att>
<att name="license">The SalishSeaCast NEMO model results are copyright
by the SalishSeaCast Project Contributors and The University of British Columbia.
They are licensed under the Apache License, Version 2.0. https://www.apache.org/licenses/LICENSE-2.0</att>
<att name="standard_name_vocabulary">CF Standard Name Table v29</att>
<att name="summary">SalishSeaCast NEMO Model Grid, 3D Mesh Mask, v21-08
NEMO grid variable value for the SalishSeaCast NEMO model Arakawa-C grid.
The values are those calculated by NEMO from the input coordinates and bathymetry files.
The variable names are those used by NEMO-3.6,
see the NEMO-3.6 book (http://www.nemo-ocean.eu/Media/Files/NEMO_book_V3_6.pdf) for details,
or the long_name attributes of the variables for succinct descriptions of the variables.
The model grid includes the Juan de Fuca Strait, the Strait of Georgia, Puget Sound,
and Johnstone Strait on the coasts of Washington State and British Columbia.
v1: e3t_0, e3u_0, e3v_0, e3w_0, gdept_0, gdepu, gdepv, gdepw_0, tmask, umask, vmask, fmask variables
v16-07: e3t, e3u, e3v, e3w, gdept, gdepu, gdepv, gdepw, tmask, umask, vmask, fmask variables
v17-02: tmask, umask, vmask, fmask, e3t_0, e3u_0, e3v_0, e3w_0, gdept_0, gdepu, gdepv, gdepw_0 variables
v21-08: tmask, umask, vmask, fmask, e3t_0, e3u_0, e3v_0, e3w_0, gdept_0, gdepu, gdepv, gdepw_0 variables</att>
<att name="title">SalishSeaCast NEMO Model Grid, 3D Mesh Mask, v21-08</att>
<att name="project">SalishSeaCast NEMO Model</att>
<att name="references">https://github.com/SalishSeaCast/grid/blob/main/mesh_mask202108.nc</att>
<att name="NCO">null</att>
<att name="name">null</att>
<att name="comment">null</att>
</addAttributes>
<axisVariable>
<sourceName>t</sourceName>
<destinationName>time</destinationName>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="coverage_content_type">modelResult</att>
<att name="long_name">Time Axis</att>
<att name="standard_name">time</att>
<att name="calendar">proleptic_gregorian</att>
<att name="time_origin">2007-01-01 00:30:00</att>
<att name="units">seconds since 2007-01-01 00:30:00</att>
</addAttributes>
</axisVariable>
<axisVariable>
<sourceName>z</sourceName>
<destinationName>gridZ</destinationName>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="coverage_content_type">modelResult</att>
<att name="long_name">Grid Z</att>
<att name="standard_name">z</att>
<att name="units">count</att>
<att name="comment">gridZ values are grid indices of the model depth levels.</att>
<att name="ioos_category">location</att>
</addAttributes>
</axisVariable>
<axisVariable>
<sourceName>y</sourceName>
<destinationName>gridY</destinationName>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="coverage_content_type">modelResult</att>
<att name="long_name">Grid Y</att>
<att name="standard_name">y</att>
<att name="units">count</att>
<att name="comment">gridY values are grid indices in the model y-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetryV21-08 dataset.</att>
<att name="ioos_category">location</att>
</addAttributes>
</axisVariable>
<axisVariable>
<sourceName>x</sourceName>
<destinationName>gridX</destinationName>
<!-- sourceAttributes>
</sourceAttributes -->
<addAttributes>
<att name="coverage_content_type">modelResult</att>
<att name="long_name">Grid X</att>
<att name="standard_name">x</att>
<att name="units">count</att>
<att name="comment">gridX values are grid indices in the model x-direction; geo-location data for the SalishSeaCast NEMO model grid is available in the ubcSSnBathymetryV21-08 dataset.</att>
<att name="ioos_category">location</att>
</addAttributes>
</axisVariable>
<dataVariable>
<sourceName>tmask</sourceName>
<destinationName>tmask</destinationName>
<dataType>byte</dataType>
<!-- sourceAttributes>
<att name="_ChunkSize" type="intList">1 20 449 199</att>
<att name="flag_meanings">land, water</att>
<att name="flag_values">0, 1</att>
<att name="long_name">mask for T-grid and W-grid</att>
<att name="standard_name">tmask</att>
</sourceAttributes -->
<addAttributes>
<att name="coverage_content_type">modelResult</att>
<att name="long_name">Land Mask for T-grid and W-grid</att>
<att name="standard_name">tmask</att>
<att name="ioos_category">grid_parameter</att>
<att name="flag_meanings">land, water</att>
<att name="flag_values">0, 1</att>
<att name="_ChunkSizes">null</att>
<att name="cell_measures">null</att>
<att name="cell_methods">null</att>
<att name="interval_operation">null</att>
<att name="interval_write">null</att>
<att name="online_operation">null</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>umask</sourceName>
<destinationName>umask</destinationName>
<dataType>byte</dataType>
<!-- sourceAttributes>
<att name="_ChunkSize" type="intList">1 20 449 199</att>
<att name="flag_meanings">land, water</att>
<att name="flag_values">0, 1</att>
<att name="long_name">mask for U-grid</att>
<att name="standard_name">umask</att>
</sourceAttributes -->
<addAttributes>
<att name="coverage_content_type">modelResult</att>
<att name="long_name">Land Mask for U-grid</att>
<att name="standard_name">umask</att>
<att name="ioos_category">grid_parameter</att>
<att name="flag_meanings">land, water</att>
<att name="flag_values">0, 1</att>
<att name="_ChunkSizes">null</att>
<att name="cell_measures">null</att>
<att name="cell_methods">null</att>
<att name="interval_operation">null</att>
<att name="interval_write">null</att>
<att name="online_operation">null</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>vmask</sourceName>
<destinationName>vmask</destinationName>
<dataType>byte</dataType>
<!-- sourceAttributes>
<att name="_ChunkSize" type="intList">1 20 449 199</att>
<att name="flag_meanings">land, water</att>
<att name="flag_values">0, 1</att>
<att name="long_name">mask for V-grid</att>
<att name="standard_name">vmask</att>
</sourceAttributes -->
<addAttributes>
<att name="coverage_content_type">modelResult</att>
<att name="long_name">Land Mask for V-grid</att>
<att name="standard_name">vmask</att>
<att name="ioos_category">grid_parameter</att>
<att name="flag_meanings">land, water</att>
<att name="flag_values">0, 1</att>
<att name="_ChunkSizes">null</att>
<att name="cell_measures">null</att>
<att name="cell_methods">null</att>
<att name="interval_operation">null</att>
<att name="interval_write">null</att>
<att name="online_operation">null</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>fmask</sourceName>
<destinationName>fmask</destinationName>
<dataType>byte</dataType>
<!-- sourceAttributes>
<att name="_ChunkSize" type="intList">1 20 449 199</att>
<att name="flag_meanings">land, water</att>
<att name="flag_values">0, 1</att>
<att name="long_name">mask for vorticity-grid</att>
<att name="standard_name">fmask</att>
</sourceAttributes -->
<addAttributes>
<att name="coverage_content_type">modelResult</att>
<att name="long_name">Land Mask for vorticity-grid</att>
<att name="standard_name">fmask</att>
<att name="ioos_category">grid_parameter</att>
<att name="flag_meanings">land, water</att>
<att name="flag_values">0, 1</att>
<att name="_ChunkSizes">null</att>
<att name="cell_measures">null</att>
<att name="cell_methods">null</att>
<att name="interval_operation">null</att>
<att name="interval_write">null</att>
<att name="online_operation">null</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>e3t_0</sourceName>
<destinationName>e3t_0</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
<att name="_ChunkSize" type="intList">1 10 225 100</att>
<att name="_FillValue" type="double">NaN</att>
<att name="long_name">grid spacing on T-grid in w direction</att>
<att name="standard_name">e3t_0</att>
<att name="units">m</att>
</sourceAttributes -->
<addAttributes>
<att name="coverage_content_type">modelResult</att>
<att name="long_name">Grid Spacing on T-grid in w Direction</att>
<att name="standard_name">e3t_0</att>
<att name="ioos_category">grid_parameter</att>
<att name="units">m</att>
<att name="_ChunkSizes">null</att>
<att name="cell_measures">null</att>
<att name="cell_methods">null</att>
<att name="interval_operation">null</att>
<att name="interval_write">null</att>
<att name="online_operation">null</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>e3u_0</sourceName>
<destinationName>e3u_0</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
<att name="_ChunkSize" type="intList">1 10 225 100</att>
<att name="_FillValue" type="double">NaN</att>
<att name="long_name">grid spacing on U-grid in w direction</att>
<att name="standard_name">e3u_0</att>
<att name="units">m</att>
</sourceAttributes -->
<addAttributes>
<att name="coverage_content_type">modelResult</att>
<att name="long_name">Grid Spacing on U-grid in w Direction</att>
<att name="standard_name">e3u_0</att>
<att name="ioos_category">grid_parameter</att>
<att name="units">m</att>
<att name="_ChunkSizes">null</att>
<att name="cell_measures">null</att>
<att name="cell_methods">null</att>
<att name="interval_operation">null</att>
<att name="interval_write">null</att>
<att name="online_operation">null</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>e3v_0</sourceName>
<destinationName>e3v_0</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
<att name="_ChunkSize" type="intList">1 10 225 100</att>
<att name="_FillValue" type="double">NaN</att>
<att name="long_name">grid spacing on V-grid in w direction</att>
<att name="standard_name">e3v_0</att>
<att name="units">m</att>
</sourceAttributes -->
<addAttributes>
<att name="coverage_content_type">modelResult</att>
<att name="long_name">Grid Spacing on V-grid in w Direction</att>
<att name="standard_name">e3v_0</att>
<att name="ioos_category">grid_parameter</att>
<att name="units">m</att>
<att name="_ChunkSizes">null</att>
<att name="cell_measures">null</att>
<att name="cell_methods">null</att>
<att name="interval_operation">null</att>
<att name="interval_write">null</att>
<att name="online_operation">null</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>e3w_0</sourceName>
<destinationName>e3w_0</destinationName>
<dataType>double</dataType>
<!-- sourceAttributes>
<att name="_ChunkSize" type="intList">1 10 225 100</att>
<att name="_FillValue" type="double">NaN</att>
<att name="long_name">grid spacing on W-grid in w direction</att>
<att name="standard_name">e3w_0</att>
<att name="units">m</att>
</sourceAttributes -->
<addAttributes>
<att name="coverage_content_type">modelResult</att>
<att name="long_name">Grid Spacing on W-grid in w Direction</att>
<att name="standard_name">e3w_0</att>
<att name="ioos_category">grid_parameter</att>
<att name="units">m</att>
<att name="_ChunkSizes">null</att>
<att name="cell_measures">null</att>
<att name="cell_methods">null</att>
<att name="interval_operation">null</att>
<att name="interval_write">null</att>
<att name="online_operation">null</att>
</addAttributes>
</dataVariable>
<dataVariable>
<sourceName>gdept_0</sourceName>
<destinationName>gdept_0</destinationName>
<dataType>float</dataType>
<!-- sourceAttributes>
<att name="_ChunkSize" type="intList">1 14 300 133</att>
<att name="_FillValue" type="float">NaN</att>
<att name="long_name">depth of T-grid points</att>
<att name="positive">down</att>
<att name="standard_name">gdept_0</att>
<att name="units">m</att>
</sourceAttributes -->
<addAttributes>
<att name="coverage_content_type">modelResult</att>
<att name="long_name">Depth of T-grid Points</att>
<att name="positive">down</att>
<att name="standard_name">gdept_0</att>
<att name="ioos_category">grid_parameter</att>
<att name="units">m</att>