-
Notifications
You must be signed in to change notification settings - Fork 0
/
diag_table_new_from_yaml
938 lines (615 loc) · 65.4 KB
/
diag_table_new_from_yaml
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
ACCESS-ESM_CMIP6
1 1 1 0 0 0
#########################################################################################################
# #
# DO NOT EDIT! Instead, edit diag_table_source.yaml and run make_diag_table.py to re-generate this file #
# #
#########################################################################################################
# static 2d grid data
"ocean-2d-area_t", -1, "months", 1, "days", "time"
"ocean_model", "area_t", "area_t", "ocean-2d-area_t", "all", "none", "none", 2
"ocean-2d-area_u", -1, "months", 1, "days", "time"
"ocean_model", "area_u", "area_u", "ocean-2d-area_u", "all", "none", "none", 2
"ocean-2d-geolat_c", -1, "months", 1, "days", "time"
"ocean_model", "geolat_c", "geolat_c", "ocean-2d-geolat_c", "all", "none", "none", 2
"ocean-2d-geolat_t", -1, "months", 1, "days", "time"
"ocean_model", "geolat_t", "geolat_t", "ocean-2d-geolat_t", "all", "none", "none", 2
"ocean-2d-geolon_c", -1, "months", 1, "days", "time"
"ocean_model", "geolon_c", "geolon_c", "ocean-2d-geolon_c", "all", "none", "none", 2
"ocean-2d-geolon_t", -1, "months", 1, "days", "time"
"ocean_model", "geolon_t", "geolon_t", "ocean-2d-geolon_t", "all", "none", "none", 2
"ocean-2d-ht", -1, "months", 1, "days", "time"
"ocean_model", "ht", "ht", "ocean-2d-ht", "all", "none", "none", 2
"ocean-2d-hu", -1, "months", 1, "days", "time"
"ocean_model", "hu", "hu", "ocean-2d-hu", "all", "none", "none", 2
"ocean-2d-kmt", -1, "months", 1, "days", "time"
"ocean_model", "kmt", "kmt", "ocean-2d-kmt", "all", "none", "none", 2
"ocean-2d-kmu", -1, "months", 1, "days", "time"
"ocean_model", "kmu", "kmu", "ocean-2d-kmu", "all", "none", "none", 2
"ocean-2d-pbot0", -1, "months", 1, "days", "time"
"ocean_model", "pbot0", "pbot0", "ocean-2d-pbot0", "all", "none", "none", 2
"ocean-2d-tide_speed_wave", -1, "months", 1, "days", "time"
"ocean_model", "tide_speed_wave", "tide_speed_wave", "ocean-2d-tide_speed_wave", "all", "none", "none", 2
"ocean-2d-roughness_length", -1, "months", 1, "days", "time"
"ocean_model", "roughness_length", "roughness_length", "ocean-2d-roughness_length", "all", "none", "none", 2
"ocean-2d-roughness_amp", -1, "months", 1, "days", "time"
"ocean_model", "roughness_amp", "roughness_amp", "ocean-2d-roughness_amp", "all", "none", "none", 2
"ocean-2d-visc_crit_bih", -1, "months", 1, "days", "time"
"ocean_model", "visc_crit_bih", "visc_crit_bih", "ocean-2d-visc_crit_bih", "all", "none", "none", 2
"ocean-2d-tide_speed_drag", -1, "months", 1, "days", "time"
"ocean_model", "tide_speed_drag", "tide_speed_drag", "ocean-2d-tide_speed_drag", "all", "none", "none", 2
"ocean-2d-tide_speed_mask", -1, "months", 1, "days", "time"
"ocean_model", "tide_speed_mask", "tide_speed_mask", "ocean-2d-tide_speed_mask", "all", "none", "none", 2
# yearly 3d BGC fields
"ocean-3d-adic-1yearly-mean-ym%4yr%2mo", 1, "years", 1, "days", "time", 1, "years"
"ocean_model", "adic", "dissic_raw", "ocean-3d-adic-1yearly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-dic-1yearly-mean-ym%4yr%2mo", 1, "years", 1, "days", "time", 1, "years"
"ocean_model", "dic", "dissicnat_raw", "ocean-3d-dic-1yearly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-caco3-1yearly-mean-ym%4yr%2mo", 1, "years", 1, "days", "time", 1, "years"
"ocean_model", "caco3", "arag_raw", "ocean-3d-caco3-1yearly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-alk-1yearly-mean-ym%4yr%2mo", 1, "years", 1, "days", "time", 1, "years"
"ocean_model", "alk", "talk_raw", "ocean-3d-alk-1yearly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-o2-1yearly-mean-ym%4yr%2mo", 1, "years", 1, "days", "time", 1, "years"
"ocean_model", "o2", "o2_raw", "ocean-3d-o2-1yearly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-no3-1yearly-mean-ym%4yr%2mo", 1, "years", 1, "days", "time", 1, "years"
"ocean_model", "no3", "no3_raw", "ocean-3d-no3-1yearly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-fe-1yearly-mean-ym%4yr%2mo", 1, "years", 1, "days", "time", 1, "years"
"ocean_model", "fe", "fe_raw", "ocean-3d-fe-1yearly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-det-1yearly-mean-ym%4yr%2mo", 1, "years", 1, "days", "time", 1, "years"
"ocean_model", "det", "pon_raw", "ocean-3d-det-1yearly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-phy-1yearly-mean-ym%4yr%2mo", 1, "years", 1, "days", "time", 1, "years"
"ocean_model", "phy", "phyn_raw", "ocean-3d-phy-1yearly-mean-ym%4yr%2mo", "all", "average", "none", 2
# yearly 2d BGC fields
"ocean-2d-stf07-1yearly-mean-ym%4yr%2mo", 1, "years", 1, "days", "time", 1, "years"
"ocean_model", "stf07", "fgco2nat_raw", "ocean-2d-stf07-1yearly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-stf09-1yearly-mean-ym%4yr%2mo", 1, "years", 1, "days", "time", 1, "years"
"ocean_model", "stf09", "fgco2_raw", "ocean-2d-stf09-1yearly-mean-ym%4yr%2mo", "all", "average", "none", 2
# monthly 3d ocean fields
"ocean-3d-tx_trans_rho-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "tx_trans_rho", "tx_trans_rho", "ocean-3d-tx_trans_rho-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-ty_trans_rho-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "ty_trans_rho", "ty_trans_rho", "ocean-3d-ty_trans_rho-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-tx_trans_rho_gm-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "tx_trans_rho_gm", "tx_trans_rho_gm", "ocean-3d-tx_trans_rho_gm-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-ty_trans_rho_gm-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "ty_trans_rho_gm", "ty_trans_rho_gm", "ocean-3d-ty_trans_rho_gm-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-tx_trans_gm-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "tx_trans_gm", "tx_trans_gm", "ocean-3d-tx_trans_gm-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-ty_trans_gm-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "ty_trans_gm", "ty_trans_gm", "ocean-3d-ty_trans_gm-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-tx_trans-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "tx_trans", "tx_trans", "ocean-3d-tx_trans-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-ty_trans-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "ty_trans", "ty_trans", "ocean-3d-ty_trans-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-tz_trans-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "tz_trans", "tz_trans", "ocean-3d-tz_trans-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-tx_trans_submeso-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "tx_trans_submeso", "tx_trans_submeso", "ocean-3d-tx_trans_submeso-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-ty_trans_submeso-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "ty_trans_submeso", "ty_trans_submeso", "ocean-3d-ty_trans_submeso-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-tz_trans_sq-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "tz_trans_sq", "tz_trans_sq", "ocean-3d-tz_trans_sq-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-rho-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "rho", "rho", "ocean-3d-rho-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-rho_dzt-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "rho_dzt", "rho_dzt", "ocean-3d-rho_dzt-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-pot_rho_0-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "pot_rho_0", "pot_rho_0", "ocean-3d-pot_rho_0-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-dzt-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "dzt", "dht", "ocean-3d-dzt-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-pot_temp-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "pot_temp", "pot_temp", "ocean-3d-pot_temp-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-salt-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "salt", "salt", "ocean-3d-salt-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-age_global-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "age_global", "age_global", "ocean-3d-age_global-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-sw_heat-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "sw_heat", "sw_heat", "ocean-3d-sw_heat-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-sw_frac-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "sw_frac", "sw_frac", "ocean-3d-sw_frac-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-temp_runoffmix-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_runoffmix", "temp_runoffmix", "ocean-3d-temp_runoffmix-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-temp_rivermix-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_rivermix", "temp_rivermix", "ocean-3d-temp_rivermix-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-temp_vdiffuse_impl-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_vdiffuse_impl", "temp_vdiffuse_impl", "ocean-3d-temp_vdiffuse_impl-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-salt_vdiffuse_impl-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "salt_vdiffuse_impl", "salt_vdiffuse_impl", "ocean-3d-salt_vdiffuse_impl-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-temp_tendency-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_tendency", "temp_tendency", "ocean-3d-temp_tendency-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-temp_tendency_expl-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_tendency_expl", "temp_tendency_expl", "ocean-3d-temp_tendency_expl-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-salt_tendency-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "salt_tendency", "salt_tendency", "ocean-3d-salt_tendency-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-salt_tendency_expl-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "salt_tendency_expl", "salt_tendency_expl", "ocean-3d-salt_tendency_expl-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-temp_submeso-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_submeso", "temp_submeso", "ocean-3d-temp_submeso-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-salt_submeso-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "salt_submeso", "salt_submeso", "ocean-3d-salt_submeso-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-neutral_rho-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "neutral_rho", "neutral_rho", "ocean-3d-neutral_rho-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-pot_rho_2-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "pot_rho_2", "pot_rho_2", "ocean-3d-pot_rho_2-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-press-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "press", "press", "ocean-3d-press-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-drhodtheta-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "drhodtheta", "drhodtheta", "ocean-3d-drhodtheta-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-drhodsalinity-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "drhodsalinity", "drhodsalinity", "ocean-3d-drhodsalinity-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-cabbeling-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "cabbeling", "cabbeling", "ocean-3d-cabbeling-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-thermobaricity-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "thermobaricity", "thermobaricity", "ocean-3d-thermobaricity-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-mixdownslope_temp-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "mixdownslope_temp", "mixdownslope_temp", "ocean-3d-mixdownslope_temp-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-mixdownslope_salt-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "mixdownslope_salt", "mixdownslope_salt", "ocean-3d-mixdownslope_salt-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-bv_freq-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "bv_freq", "bv_freq", "ocean-3d-bv_freq-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-diff_cbt_wave-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "diff_cbt_wave", "diff_cbt_wave", "ocean-3d-diff_cbt_wave-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-diff_cbt_drag-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "diff_cbt_drag", "diff_cbt_drag", "ocean-3d-diff_cbt_drag-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-mix_efficiency-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "mix_efficiency", "mix_efficiency", "ocean-3d-mix_efficiency-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-power_diss_wave-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "power_diss_wave", "power_diss_wave", "ocean-3d-power_diss_wave-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-power_diss_drag-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "power_diss_drag", "power_diss_drag", "ocean-3d-power_diss_drag-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-diff_cbt_kpp_t-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "diff_cbt_kpp_t", "diff_cbt_kpp_t", "ocean-3d-diff_cbt_kpp_t-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-diff_cbt_kpp_s-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "diff_cbt_kpp_s", "diff_cbt_kpp_s", "ocean-3d-diff_cbt_kpp_s-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-temp_xflux_adv-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_xflux_adv", "temp_xflux_adv", "ocean-3d-temp_xflux_adv-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-temp_yflux_adv-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_yflux_adv", "temp_yflux_adv", "ocean-3d-temp_yflux_adv-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-temp_zflux_adv-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_zflux_adv", "temp_zflux_adv", "ocean-3d-temp_zflux_adv-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-salt_xflux_adv-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "salt_xflux_adv", "salt_xflux_adv", "ocean-3d-salt_xflux_adv-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-salt_yflux_adv-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "salt_yflux_adv", "salt_yflux_adv", "ocean-3d-salt_yflux_adv-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-salt_zflux_adv-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "salt_zflux_adv", "salt_zflux_adv", "ocean-3d-salt_zflux_adv-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-u-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "u", "u", "ocean-3d-u-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-v-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "v", "v", "ocean-3d-v-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-lap_fric_u-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "lap_fric_u", "lap_fric_u", "ocean-3d-lap_fric_u-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-lap_fric_v-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "lap_fric_v", "lap_fric_v", "ocean-3d-lap_fric_v-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-wt-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "wt", "wt", "ocean-3d-wt-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-wrhot-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "wrhot", "wrhot", "ocean-3d-wrhot-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
# monthly 3d BGC fields
"ocean-3d-no3-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "no3", "no3", "ocean-3d-no3-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-phy-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "phy", "phy", "ocean-3d-phy-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-o2-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "o2", "o2", "ocean-3d-o2-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-det-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "det", "det", "ocean-3d-det-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-zoo-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "zoo", "zoo", "ocean-3d-zoo-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-caco3-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "caco3", "caco3", "ocean-3d-caco3-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-dic-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "dic", "dic", "ocean-3d-dic-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-alk-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "alk", "alk", "ocean-3d-alk-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-adic-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "adic", "adic", "ocean-3d-adic-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-fe-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "fe", "fe", "ocean-3d-fe-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-pprod_gross-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "pprod_gross", "pprod_gross", "ocean-3d-pprod_gross-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
# monthly 2d ocean fields
"ocean-2d-pbot_t-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "pbot_t", "pbot_t", "ocean-2d-pbot_t-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-patm_t-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "patm_t", "patm_t", "ocean-2d-patm_t-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-sea_level-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "sea_level", "sea_level", "ocean-2d-sea_level-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-sea_level_sq-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "sea_level_sq", "sea_level_sq", "ocean-2d-sea_level_sq-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-surface_temp-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "surface_temp", "sst", "ocean-2d-surface_temp-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-squared_surface_temp-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "squared_surface_temp", "sst_sq", "ocean-2d-squared_surface_temp-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-surface_salt-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "surface_salt", "sss", "ocean-2d-surface_salt-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-mld-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "mld", "mld", "ocean-2d-mld-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-mld_sq-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "mld_sq", "mld_sq", "ocean-2d-mld_sq-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-lprec-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "lprec", "lprec", "ocean-2d-lprec-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-fprec-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "fprec", "fprec", "ocean-2d-fprec-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-evap-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "evap", "evap", "ocean-2d-evap-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-runoff-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "runoff", "runoff", "ocean-2d-runoff-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-melt-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "melt", "melt", "ocean-2d-melt-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-pme_river-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "pme_river", "pme_river", "ocean-2d-pme_river-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-sfc_salt_flux_ice-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "sfc_salt_flux_ice", "sfc_salt_flux_ice", "ocean-2d-sfc_salt_flux_ice-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-sfc_salt_flux_runoff-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "sfc_salt_flux_runoff", "sfc_salt_flux_runoff", "ocean-2d-sfc_salt_flux_runoff-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-sfc_hflux_from_water_prec-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "sfc_hflux_from_water_prec", "sfc_hflux_from_water_prec", "ocean-2d-sfc_hflux_from_water_prec-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-sfc_hflux_from_water_evap-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "sfc_hflux_from_water_evap", "sfc_hflux_from_water_evap", "ocean-2d-sfc_hflux_from_water_evap-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-sfc_hflux_from_runoff-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "sfc_hflux_from_runoff", "sfc_hflux_from_runoff", "ocean-2d-sfc_hflux_from_runoff-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-fprec_melt_heat-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "fprec_melt_heat", "fprec_melt_heat", "ocean-2d-fprec_melt_heat-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-lw_heat-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "lw_heat", "lw_heat", "ocean-2d-lw_heat-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-evap_heat-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "evap_heat", "evap_heat", "ocean-2d-evap_heat-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-sens_heat-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "sens_heat", "sens_heat", "ocean-2d-sens_heat-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-swflx-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "swflx", "swflx", "ocean-2d-swflx-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-agm-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "agm", "agm", "ocean-2d-agm-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-frazil_2d-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "frazil_2d", "frazil_2d", "ocean-2d-frazil_2d-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-pme-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "pme", "pme", "ocean-2d-pme-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-pme_sbc-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "pme_sbc", "pme_mass", "ocean-2d-pme_sbc-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-river-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "river", "river", "ocean-2d-river-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-swflx_vis-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "swflx_vis", "swflx_vis", "ocean-2d-swflx_vis-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-sfc_hflux_coupler-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "sfc_hflux_coupler", "sfc_hflux_coupler", "ocean-2d-sfc_hflux_coupler-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-sfc_hflux_pme-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "sfc_hflux_pme", "sfc_hflux_pme", "ocean-2d-sfc_hflux_pme-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-temp_runoff-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_runoff", "temp_runoff", "ocean-2d-temp_runoff-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-wfimelt-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "wfimelt", "wfimelt", "ocean-2d-wfimelt-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-wfiform-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "wfiform", "wfiform", "ocean-2d-wfiform-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-anompb-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "anompb", "anompb", "ocean-2d-anompb-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-eta_t-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "eta_t", "eta_t", "ocean-2d-eta_t-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-rhobarz-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "rhobarz", "rhobarz", "ocean-2d-rhobarz-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-conv_rho_ud_t-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "conv_rho_ud_t", "conv_rho_ud_t", "ocean-2d-conv_rho_ud_t-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-bottom_temp-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "bottom_temp", "bottom_temp", "ocean-2d-bottom_temp-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-bottom_salt-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "bottom_salt", "bottom_salt", "ocean-2d-bottom_salt-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-bottom_age_global-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "bottom_age_global", "bottom_age_global", "ocean-2d-bottom_age_global-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-potrho_mix_base-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "potrho_mix_base", "potrho_mix_base", "ocean-2d-potrho_mix_base-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-potrho_mix_depth-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "potrho_mix_depth", "potrho_mix_depth", "ocean-2d-potrho_mix_depth-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-temp_sigma-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_sigma", "temp_sigma", "ocean-2d-temp_sigma-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-eddy_depth-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "eddy_depth", "eddy_depth", "ocean-2d-eddy_depth-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-agm_grid_scaling-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "agm_grid_scaling", "agm_grid_scaling", "ocean-2d-agm_grid_scaling-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-rossby-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "rossby", "rossby", "ocean-2d-rossby-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-rossby_radius-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "rossby_radius", "rossby_radius", "ocean-2d-rossby_radius-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-buoy_freq_ave_submeso-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "buoy_freq_ave_submeso", "buoy_freq_ave_submeso", "ocean-2d-buoy_freq_ave_submeso-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-hblt_submeso-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "hblt_submeso", "hblt_submeso", "ocean-2d-hblt_submeso-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-bvfreq_bottom-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "bvfreq_bottom", "bvfreq_bottom", "ocean-2d-bvfreq_bottom-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-power_waves-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "power_waves", "power_waves", "ocean-2d-power_waves-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-energy_flux-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "energy_flux", "energy_flux", "ocean-2d-energy_flux-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-langmuirfactor-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "langmuirfactor", "langmuirfactor", "ocean-2d-langmuirfactor-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-psiu-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "psiu", "psiu", "ocean-2d-psiu-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-temp_sigma_diff_xflux_int_z-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_sigma_diff_xflux_int_z", "temp_xflux_sigma", "ocean-2d-temp_sigma_diff_xflux_int_z-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-temp_sigma_diff_yflux_int_z-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_sigma_diff_yflux_int_z", "temp_yflux_sigma", "ocean-2d-temp_sigma_diff_yflux_int_z-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-temp_xflux_submeso_int_z-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_xflux_submeso_int_z", "temp_xflux_submeso_int_z", "ocean-2d-temp_xflux_submeso_int_z-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-temp_yflux_submeso_int_z-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_yflux_submeso_int_z", "temp_yflux_submeso_int_z", "ocean-2d-temp_yflux_submeso_int_z-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-salt_xflux_ndiffuse_int_z-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "salt_xflux_ndiffuse_int_z", "salt_xflux_ndiffuse_int_z", "ocean-2d-salt_xflux_ndiffuse_int_z-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-salt_yflux_ndiffuse_int_z-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "salt_yflux_ndiffuse_int_z", "salt_yflux_ndiffuse_int_z", "ocean-2d-salt_yflux_ndiffuse_int_z-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-temp_xflux_ndiffuse_int_z-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_xflux_ndiffuse_int_z", "temp_xflux_ndiffuse_int_z", "ocean-2d-temp_xflux_ndiffuse_int_z-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-temp_yflux_ndiffuse_int_z-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_yflux_ndiffuse_int_z", "temp_yflux_ndiffuse_int_z", "ocean-2d-temp_yflux_ndiffuse_int_z-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-ekman_we-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "ekman_we", "ekman_we", "ocean-2d-ekman_we-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-psiv-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "psiv", "psiv", "ocean-2d-psiv-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-tau_curl-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "tau_curl", "tau_curl", "ocean-2d-tau_curl-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-tau_x-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "tau_x", "tau_x", "ocean-2d-tau_x-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-tau_y-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "tau_y", "tau_y", "ocean-2d-tau_y-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-eta_u-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "eta_u", "eta_u", "ocean-2d-eta_u-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-urhod-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "urhod", "urhod", "ocean-2d-urhod-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-vrhod-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "vrhod", "vrhod", "ocean-2d-vrhod-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-usurf-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "usurf", "u_surf", "ocean-2d-usurf-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-vsurf-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "vsurf", "v_surf", "ocean-2d-vsurf-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-ubott-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "ubott", "u_bott", "ocean-2d-ubott-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-vbott-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "vbott", "v_bott", "ocean-2d-vbott-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-viscosity_scaling-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "viscosity_scaling", "viscosity_scaling", "ocean-2d-viscosity_scaling-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-bmf_u-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "bmf_u", "bmf_u", "ocean-2d-bmf_u-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-bmf_v-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "bmf_v", "bmf_v", "ocean-2d-bmf_v-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-bottom_power_u-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "bottom_power_u", "bottom_power_u", "ocean-2d-bottom_power_u-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-bottom_power_v-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "bottom_power_v", "bottom_power_v", "ocean-2d-bottom_power_v-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-wind_power_u-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "wind_power_u", "wind_power_u", "ocean-2d-wind_power_u-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-wind_power_v-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "wind_power_v", "wind_power_v", "ocean-2d-wind_power_v-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-hblt-1monthly-max-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "hblt", "hblt", "ocean-2d-hblt-1monthly-max-ym%4yr%2mo", "all", "max", "none", 2
# monthly 2d BGC fields
"ocean-2d-stf03-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "stf03", "stf03", "ocean-2d-stf03-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-stf07-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "stf07", "stf07", "ocean-2d-stf07-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-stf09-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "stf09", "stf09", "ocean-2d-stf09-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-stf10-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "stf10", "stf10", "ocean-2d-stf10-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-pco2-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "pco2", "pco2", "ocean-2d-pco2-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-paco2-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "paco2", "paco2", "ocean-2d-paco2-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-pprod_gross_2d-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "pprod_gross_2d", "pprod_gross_2d", "ocean-2d-pprod_gross_2d-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-atm_co2-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "atm_co2", "atm_co2", "ocean-2d-atm_co2-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-wnd-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "wnd", "wnd", "ocean-2d-wnd-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-det_sediment-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "det_sediment", "det_sediment", "ocean-2d-det_sediment-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-caco3_sediment-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "caco3_sediment", "caco3_sediment", "ocean-2d-caco3_sediment-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-surface_no3-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "surface_no3", "no3os_raw", "ocean-2d-surface_no3-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-surface_phy-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "surface_phy", "phynos_raw", "ocean-2d-surface_phy-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-surface_alk-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "surface_alk", "talkos_raw", "ocean-2d-surface_alk-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-surface_dic-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "surface_dic", "dissicnatos_raw", "ocean-2d-surface_dic-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-surface_adic-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "surface_adic", "dissicos_raw", "ocean-2d-surface_adic-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-2d-surface_o2-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "surface_o2", "o2os_raw", "ocean-2d-surface_o2-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
# duplicated monthly 2d BGC fields
"ocean_model", "stf07", "fgco2nat_raw", "ocean-2d-stf07-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean_model", "stf09", "fgco2_raw", "ocean-2d-stf09-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean_model", "stf03", "fgo2_raw", "ocean-2d-stf03-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean_model", "pco2", "spco2nat_raw", "ocean-2d-pco2-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean_model", "paco2", "spco2_raw", "ocean-2d-paco2-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean_model", "pprod_gross_2d", "intpp_raw", "ocean-2d-pprod_gross_2d-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
# monthly 1d ocean fields
"ocean-1d-temp_merid_flux_advect_global-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_merid_flux_advect_global", "temp_merid_flux_advect_global", "ocean-1d-temp_merid_flux_advect_global-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-1d-temp_merid_flux_over_global-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_merid_flux_over_global", "temp_merid_flux_over_global", "ocean-1d-temp_merid_flux_over_global-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-1d-temp_merid_flux_gyre_global-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_merid_flux_gyre_global", "temp_merid_flux_gyre_global", "ocean-1d-temp_merid_flux_gyre_global-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-1d-salt_merid_flux_advect_global-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "salt_merid_flux_advect_global", "salt_merid_flux_advect_global", "ocean-1d-salt_merid_flux_advect_global-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-1d-salt_merid_flux_over_global-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "salt_merid_flux_over_global", "salt_merid_flux_over_global", "ocean-1d-salt_merid_flux_over_global-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-1d-salt_merid_flux_gyre_global-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "salt_merid_flux_gyre_global", "salt_merid_flux_gyre_global", "ocean-1d-salt_merid_flux_gyre_global-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-1d-temp_merid_flux_advect_southern-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_merid_flux_advect_southern", "temp_merid_flux_advect_southern", "ocean-1d-temp_merid_flux_advect_southern-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-1d-temp_merid_flux_over_southern-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_merid_flux_over_southern", "temp_merid_flux_over_southern", "ocean-1d-temp_merid_flux_over_southern-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-1d-temp_merid_flux_gyre_southern-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_merid_flux_gyre_southern", "temp_merid_flux_gyre_southern", "ocean-1d-temp_merid_flux_gyre_southern-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-1d-salt_merid_flux_advect_southern-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "salt_merid_flux_advect_southern", "salt_merid_flux_advect_southern", "ocean-1d-salt_merid_flux_advect_southern-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-1d-salt_merid_flux_over_southern-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "salt_merid_flux_over_southern", "salt_merid_flux_over_southern", "ocean-1d-salt_merid_flux_over_southern-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-1d-salt_merid_flux_gyre_southern-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "salt_merid_flux_gyre_southern", "salt_merid_flux_gyre_southern", "ocean-1d-salt_merid_flux_gyre_southern-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-1d-temp_merid_flux_advect_atlantic-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_merid_flux_advect_atlantic", "temp_merid_flux_advect_atlantic", "ocean-1d-temp_merid_flux_advect_atlantic-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-1d-temp_merid_flux_over_atlantic-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_merid_flux_over_atlantic", "temp_merid_flux_over_atlantic", "ocean-1d-temp_merid_flux_over_atlantic-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-1d-temp_merid_flux_gyre_atlantic-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_merid_flux_gyre_atlantic", "temp_merid_flux_gyre_atlantic", "ocean-1d-temp_merid_flux_gyre_atlantic-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-1d-salt_merid_flux_advect_atlantic-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "salt_merid_flux_advect_atlantic", "salt_merid_flux_advect_atlantic", "ocean-1d-salt_merid_flux_advect_atlantic-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-1d-salt_merid_flux_over_atlantic-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "salt_merid_flux_over_atlantic", "salt_merid_flux_over_atlantic", "ocean-1d-salt_merid_flux_over_atlantic-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-1d-salt_merid_flux_gyre_atlantic-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "salt_merid_flux_gyre_atlantic", "salt_merid_flux_gyre_atlantic", "ocean-1d-salt_merid_flux_gyre_atlantic-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-1d-temp_merid_flux_advect_pacific-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_merid_flux_advect_pacific", "temp_merid_flux_advect_pacific", "ocean-1d-temp_merid_flux_advect_pacific-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-1d-temp_merid_flux_over_pacific-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_merid_flux_over_pacific", "temp_merid_flux_over_pacific", "ocean-1d-temp_merid_flux_over_pacific-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-1d-temp_merid_flux_gyre_pacific-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_merid_flux_gyre_pacific", "temp_merid_flux_gyre_pacific", "ocean-1d-temp_merid_flux_gyre_pacific-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-1d-salt_merid_flux_advect_pacific-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "salt_merid_flux_advect_pacific", "salt_merid_flux_advect_pacific", "ocean-1d-salt_merid_flux_advect_pacific-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-1d-salt_merid_flux_over_pacific-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "salt_merid_flux_over_pacific", "salt_merid_flux_over_pacific", "ocean-1d-salt_merid_flux_over_pacific-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-1d-salt_merid_flux_gyre_pacific-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "salt_merid_flux_gyre_pacific", "salt_merid_flux_gyre_pacific", "ocean-1d-salt_merid_flux_gyre_pacific-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-1d-temp_merid_flux_advect_arctic-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_merid_flux_advect_arctic", "temp_merid_flux_advect_arctic", "ocean-1d-temp_merid_flux_advect_arctic-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-1d-temp_merid_flux_over_arctic-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_merid_flux_over_arctic", "temp_merid_flux_over_arctic", "ocean-1d-temp_merid_flux_over_arctic-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-1d-temp_merid_flux_gyre_arctic-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_merid_flux_gyre_arctic", "temp_merid_flux_gyre_arctic", "ocean-1d-temp_merid_flux_gyre_arctic-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-1d-salt_merid_flux_advect_arctic-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "salt_merid_flux_advect_arctic", "salt_merid_flux_advect_arctic", "ocean-1d-salt_merid_flux_advect_arctic-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-1d-salt_merid_flux_over_arctic-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "salt_merid_flux_over_arctic", "salt_merid_flux_over_arctic", "ocean-1d-salt_merid_flux_over_arctic-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-1d-salt_merid_flux_gyre_arctic-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "salt_merid_flux_gyre_arctic", "salt_merid_flux_gyre_arctic", "ocean-1d-salt_merid_flux_gyre_arctic-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-1d-temp_merid_flux_advect_indian-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_merid_flux_advect_indian", "temp_merid_flux_advect_indian", "ocean-1d-temp_merid_flux_advect_indian-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-1d-temp_merid_flux_over_indian-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_merid_flux_over_indian", "temp_merid_flux_over_indian", "ocean-1d-temp_merid_flux_over_indian-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-1d-temp_merid_flux_gyre_indian-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_merid_flux_gyre_indian", "temp_merid_flux_gyre_indian", "ocean-1d-temp_merid_flux_gyre_indian-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-1d-salt_merid_flux_advect_indian-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "salt_merid_flux_advect_indian", "salt_merid_flux_advect_indian", "ocean-1d-salt_merid_flux_advect_indian-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-1d-salt_merid_flux_over_indian-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "salt_merid_flux_over_indian", "salt_merid_flux_over_indian", "ocean-1d-salt_merid_flux_over_indian-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-1d-salt_merid_flux_gyre_indian-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "salt_merid_flux_gyre_indian", "salt_merid_flux_gyre_indian", "ocean-1d-salt_merid_flux_gyre_indian-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
# monthly scalar ocean fields
"ocean-scalar-total_mass_seawater-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "total_mass_seawater", "total_mass_seawater", "ocean-scalar-total_mass_seawater-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-scalar-total_volume_seawater-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "total_volume_seawater", "total_volume_seawater", "ocean-scalar-total_volume_seawater-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-scalar-eta_global-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "eta_global", "eta_global", "ocean-scalar-eta_global-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-scalar-eta_adjust-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "eta_adjust", "eta_adjust", "ocean-scalar-eta_adjust-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-scalar-pbot_adjust-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "pbot_adjust", "pbot_adjust", "ocean-scalar-pbot_adjust-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-scalar-temp_global_ave-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_global_ave", "temp_global_ave", "ocean-scalar-temp_global_ave-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-scalar-salt_global_ave-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "salt_global_ave", "salt_global_ave", "ocean-scalar-salt_global_ave-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-scalar-total_ocean_pme_river-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "total_ocean_pme_river", "total_ocean_pme_river", "ocean-scalar-total_ocean_pme_river-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-scalar-total_ocean_river-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "total_ocean_river", "total_ocean_river", "ocean-scalar-total_ocean_river-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-scalar-total_ocean_evap-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "total_ocean_evap", "total_ocean_evap", "ocean-scalar-total_ocean_evap-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-scalar-total_ocean_pme_sbc-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "total_ocean_pme_sbc", "total_ocean_pme_sbc", "ocean-scalar-total_ocean_pme_sbc-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-scalar-total_ocean_fprec-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "total_ocean_fprec", "total_ocean_fprec", "ocean-scalar-total_ocean_fprec-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-scalar-total_ocean_lprec-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "total_ocean_lprec", "total_ocean_lprec", "ocean-scalar-total_ocean_lprec-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-scalar-total_ocean_runoff-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "total_ocean_runoff", "total_ocean_runoff", "ocean-scalar-total_ocean_runoff-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-scalar-total_ocean_salt-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "total_ocean_salt", "total_ocean_salt", "ocean-scalar-total_ocean_salt-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-scalar-total_ocean_heat-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "total_ocean_heat", "total_ocean_heat", "ocean-scalar-total_ocean_heat-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-scalar-total_ocean_hflux_pme-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "total_ocean_hflux_pme", "total_ocean_hflux_pme", "ocean-scalar-total_ocean_hflux_pme-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-scalar-total_ocean_swflx-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "total_ocean_swflx", "total_ocean_swflx", "ocean-scalar-total_ocean_swflx-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-scalar-total_ocean_swflx_vis-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "total_ocean_swflx_vis", "total_ocean_swflx_vis", "ocean-scalar-total_ocean_swflx_vis-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-scalar-total_ocean_evap_heat-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "total_ocean_evap_heat", "total_ocean_evap_heat", "ocean-scalar-total_ocean_evap_heat-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-scalar-total_ocean_lw_heat-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "total_ocean_lw_heat", "total_ocean_lw_heat", "ocean-scalar-total_ocean_lw_heat-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-scalar-total_ocean_sens_heat-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "total_ocean_sens_heat", "total_ocean_sens_heat", "ocean-scalar-total_ocean_sens_heat-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-scalar-total_ocean_fprec_melt_heat-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "total_ocean_fprec_melt_heat", "total_ocean_fprec_melt_heat", "ocean-scalar-total_ocean_fprec_melt_heat-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-scalar-total_ocean_runoff_heat-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "total_ocean_runoff_heat", "total_ocean_runoff_heat", "ocean-scalar-total_ocean_runoff_heat-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-scalar-ke_tot-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "ke_tot", "ke_tot", "ocean-scalar-ke_tot-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-scalar-pe_tot-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "pe_tot", "pe_tot", "ocean-scalar-pe_tot-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-scalar-temp_surface_ave-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_surface_ave", "temp_surface_ave", "ocean-scalar-temp_surface_ave-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-scalar-salt_surface_ave-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "salt_surface_ave", "salt_surface_ave", "ocean-scalar-salt_surface_ave-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
# monthly scalar BGC fields
"ocean-scalar-total_co2_flux-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "total_co2_flux", "total_co2_flux", "ocean-scalar-total_co2_flux-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-scalar-total_aco2_flux-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "total_aco2_flux", "total_aco2_flux", "ocean-scalar-total_aco2_flux-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
# Missing monthly fields
"ocean-3d-temp_adv_flux_x_int_z-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_adv_flux_x_int_z", "temp_adv_flux_x_int_z", "ocean-3d-temp_adv_flux_x_int_z-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-temp_adv_flux_y_int_z-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_adv_flux_y_int_z", "temp_adv_flux_y_int_z", "ocean-3d-temp_adv_flux_y_int_z-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-temp_xflux_neutral_int_z-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_xflux_neutral_int_z", "temp_xflux_neutral_int_z", "ocean-3d-temp_xflux_neutral_int_z-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-temp_yflux_neutral_int_z-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_yflux_neutral_int_z", "temp_yflux_neutral_int_z", "ocean-3d-temp_yflux_neutral_int_z-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-temp_xflux_gm_modes_int_z-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_xflux_gm_modes_int_z", "temp_xflux_gm_modes_int_z", "ocean-3d-temp_xflux_gm_modes_int_z-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-temp_yflux_gm_modes_int_z-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "temp_yflux_gm_modes_int_z", "temp_yflux_gm_modes_int_z", "ocean-3d-temp_yflux_gm_modes_int_z-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-f_vis-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "f_vis", "f_vis", "ocean-3d-f_vis-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-con_temp-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "con_temp", "con_temp", "ocean-3d-con_temp-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-neutral_temp-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "neutral_temp", "neutral_temp", "ocean-3d-neutral_temp-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-neutral_salt-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "neutral_salt", "neutral_salt", "ocean-3d-neutral_salt-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-salt_adv_flux_x_int_z-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "salt_adv_flux_x_int_z", "salt_adv_flux_x_int_z", "ocean-3d-salt_adv_flux_x_int_z-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-salt_adv_flux_y_int_z-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "salt_adv_flux_y_int_z", "salt_adv_flux_y_int_z", "ocean-3d-salt_adv_flux_y_int_z-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-salt_xflux_gm_modes_int_z-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "salt_xflux_gm_modes_int_z", "salt_xflux_gm_modes_int_z", "ocean-3d-salt_xflux_gm_modes_int_z-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-salt_yflux_gm_modes_int_z-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "salt_yflux_gm_modes_int_z", "salt_yflux_gm_modes_int_z", "ocean-3d-salt_yflux_gm_modes_int_z-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-salt_xflux_overflow_int_z-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "salt_xflux_overflow_int_z", "salt_xflux_overflow_int_z", "ocean-3d-salt_xflux_overflow_int_z-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-salt_yflux_overflow_int_z-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "salt_yflux_overflow_int_z", "salt_yflux_overflow_int_z", "ocean-3d-salt_yflux_overflow_int_z-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-steep_depth-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "steep_depth", "steep_depth", "ocean-3d-steep_depth-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-slope_blayer_base-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "slope_blayer_base", "slope_blayer_base", "ocean-3d-slope_blayer_base-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-depth_blayer_base-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "depth_blayer_base", "depth_blayer_base", "ocean-3d-depth_blayer_base-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-surf_trans_thick-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "surf_trans_thick", "surf_trans_thick", "ocean-3d-surf_trans_thick-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-surf_turb_thick-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "surf_turb_thick", "surf_turb_thick", "ocean-3d-surf_turb_thick-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-surf_blayer_depth-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "surf_blayer_depth", "surf_blayer_depth", "ocean-3d-surf_blayer_depth-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-export_prod-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "export_prod", "export_prod", "ocean-3d-export_prod-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-export_inorg-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "export_inorg", "export_inorg", "ocean-3d-export_inorg-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2
# Missing annual fields
"ocean-3d-cfc_11-1yearly-mean-ym%4yr%2mo", 1, "years", 1, "days", "time", 1, "years"
"ocean_model", "cfc_11", "cfc_11", "ocean-3d-cfc_11-1yearly-mean-ym%4yr%2mo", "all", "average", "none", 2
"ocean-3d-cfc_12-1yearly-mean-ym%4yr%2mo", 1, "years", 1, "days", "time", 1, "years"
"ocean_model", "cfc_12", "cfc_12", "ocean-3d-cfc_12-1yearly-mean-ym%4yr%2mo", "all", "average", "none", 2
# Missing scalar fields
"ocean-scalar-rhobarz_global-1monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years"
"ocean_model", "rhobarz_global", "rhobarz_global", "ocean-scalar-rhobarz_global-1monthly-mean-ym%4yr%2mo", "all", "average", "none", 2