CMIP7-data-request-api 1.1.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. CMIP7_data_request_api-1.1.2.dist-info/LICENSE +21 -0
  2. CMIP7_data_request_api-1.1.2.dist-info/METADATA +210 -0
  3. CMIP7_data_request_api-1.1.2.dist-info/RECORD +36 -0
  4. CMIP7_data_request_api-1.1.2.dist-info/WHEEL +5 -0
  5. CMIP7_data_request_api-1.1.2.dist-info/entry_points.txt +2 -0
  6. CMIP7_data_request_api-1.1.2.dist-info/top_level.txt +1 -0
  7. data_request_api/__init__.py +1 -0
  8. data_request_api/command_line/__init__.py +0 -0
  9. data_request_api/command_line/export_dreq_lists_json.py +136 -0
  10. data_request_api/dev/JA/__init__.py +0 -0
  11. data_request_api/dev/JA/check_plev_requests.py +416 -0
  12. data_request_api/dev/JA/read_feedback_spreadsheet.py +141 -0
  13. data_request_api/dev/JA/workflow_example_GRtest.py +275 -0
  14. data_request_api/dev/JA/workflow_example_test.py +222 -0
  15. data_request_api/dev/MM/checksum.py +68 -0
  16. data_request_api/dev/MM/walking_data_request.ipynb +380 -0
  17. data_request_api/dev/MS/dreq_content_and_walking_data_request.ipynb +3755 -0
  18. data_request_api/dev/__init__.py +0 -0
  19. data_request_api/stable/__init__.py +0 -0
  20. data_request_api/stable/content/README.MD +106 -0
  21. data_request_api/stable/content/__init__.py +0 -0
  22. data_request_api/stable/content/dreq_api/__init__.py +0 -0
  23. data_request_api/stable/content/dreq_api/consolidate_export.py +488 -0
  24. data_request_api/stable/content/dreq_api/dreq_content.py +593 -0
  25. data_request_api/stable/content/dreq_api/mapping_table.py +335 -0
  26. data_request_api/stable/content/dreq_api/test_dreq_content.py +194 -0
  27. data_request_api/stable/content/dump_transformation.py +550 -0
  28. data_request_api/stable/query/__init__.py +0 -0
  29. data_request_api/stable/query/data_request.py +1120 -0
  30. data_request_api/stable/query/dreq_classes.py +372 -0
  31. data_request_api/stable/query/dreq_query.py +981 -0
  32. data_request_api/stable/query/vocabulary_server.py +208 -0
  33. data_request_api/stable/utilities/__init__.py +0 -0
  34. data_request_api/stable/utilities/logger.py +71 -0
  35. data_request_api/stable/utilities/tools.py +49 -0
  36. data_request_api/version.py +16 -0
@@ -0,0 +1,3755 @@
1
+ {
2
+ "cells": [
3
+ {
4
+ "cell_type": "markdown",
5
+ "id": "9b380490-d6ed-459e-91f4-3430d77c5376",
6
+ "metadata": {},
7
+ "source": [
8
+ "### dreq_content"
9
+ ]
10
+ },
11
+ {
12
+ "cell_type": "code",
13
+ "execution_count": 1,
14
+ "id": "4beed915-49f4-4f3e-9947-14b634e278fc",
15
+ "metadata": {},
16
+ "outputs": [],
17
+ "source": [
18
+ "# See https://github.com/WCRP-CMIP/CMIP7_DReq_Software/pull/1\n",
19
+ "import dreq_content as dc"
20
+ ]
21
+ },
22
+ {
23
+ "cell_type": "code",
24
+ "execution_count": 2,
25
+ "id": "6d7033cc-a037-483b-8497-3d54175f4ad1",
26
+ "metadata": {},
27
+ "outputs": [
28
+ {
29
+ "data": {
30
+ "text/plain": [
31
+ "{'first_export': '/home/ms/GIT/c7dreq/cmip7_request_scripts/dreq_api/dreq_res/first_export/dreq_raw_export.json'}"
32
+ ]
33
+ },
34
+ "execution_count": 2,
35
+ "metadata": {},
36
+ "output_type": "execute_result"
37
+ }
38
+ ],
39
+ "source": [
40
+ "# dc.retrieve(\"all\")\n",
41
+ "# dc.retrieve(\"latest\")\n",
42
+ "# dc.retrieve(\"latest_stable\")\n",
43
+ "# dc.retrieve(\"1.0.0b1\")\n",
44
+ "# dc.retrieve(\"dev\")\n",
45
+ "dc.retrieve(\"first_export\")"
46
+ ]
47
+ },
48
+ {
49
+ "cell_type": "code",
50
+ "execution_count": 3,
51
+ "id": "5e1b990e-fc13-4cf4-ab57-dff6cffcd9ab",
52
+ "metadata": {},
53
+ "outputs": [
54
+ {
55
+ "data": {
56
+ "text/plain": [
57
+ "dict_keys(['Data Request Opportunities (Public)', 'Data Request Physical Parameters (Public)', 'Data Request Variables (Public)'])"
58
+ ]
59
+ },
60
+ "execution_count": 3,
61
+ "metadata": {},
62
+ "output_type": "execute_result"
63
+ }
64
+ ],
65
+ "source": [
66
+ "dreq = dc.load(\"first_export\")\n",
67
+ "dreq.keys()"
68
+ ]
69
+ },
70
+ {
71
+ "cell_type": "code",
72
+ "execution_count": 4,
73
+ "id": "6b7ff358-958c-46a6-b22b-5e9d8faa7ea1",
74
+ "metadata": {},
75
+ "outputs": [
76
+ {
77
+ "data": {
78
+ "text/plain": [
79
+ "['dev']"
80
+ ]
81
+ },
82
+ "execution_count": 4,
83
+ "metadata": {},
84
+ "output_type": "execute_result"
85
+ }
86
+ ],
87
+ "source": [
88
+ "dc.get_versions()"
89
+ ]
90
+ },
91
+ {
92
+ "cell_type": "code",
93
+ "execution_count": 5,
94
+ "id": "979773d4-dea0-43ff-bce3-53f276386acf",
95
+ "metadata": {},
96
+ "outputs": [
97
+ {
98
+ "data": {
99
+ "text/plain": [
100
+ "['1.0.0a', 'first_export']"
101
+ ]
102
+ },
103
+ "execution_count": 5,
104
+ "metadata": {},
105
+ "output_type": "execute_result"
106
+ }
107
+ ],
108
+ "source": [
109
+ "dc.get_versions(local=True)"
110
+ ]
111
+ },
112
+ {
113
+ "cell_type": "code",
114
+ "execution_count": 6,
115
+ "id": "50aa698b-e2e6-4d5a-ad11-31a845c07209",
116
+ "metadata": {},
117
+ "outputs": [
118
+ {
119
+ "name": "stdout",
120
+ "output_type": "stream",
121
+ "text": [
122
+ "Deleting the following version(s):\n",
123
+ "first_export\n"
124
+ ]
125
+ }
126
+ ],
127
+ "source": [
128
+ "dc.delete(version=\"all\", keep_latest=True)"
129
+ ]
130
+ },
131
+ {
132
+ "cell_type": "code",
133
+ "execution_count": 7,
134
+ "id": "ce12efc1-0d2e-47ec-b37e-44da7b5d7f65",
135
+ "metadata": {},
136
+ "outputs": [
137
+ {
138
+ "data": {
139
+ "text/plain": [
140
+ "['1.0.0a']"
141
+ ]
142
+ },
143
+ "execution_count": 7,
144
+ "metadata": {},
145
+ "output_type": "execute_result"
146
+ }
147
+ ],
148
+ "source": [
149
+ "dc.get_versions(local=True)"
150
+ ]
151
+ },
152
+ {
153
+ "cell_type": "markdown",
154
+ "id": "06857eb1-e91f-4fab-8d32-1151d311ea53",
155
+ "metadata": {},
156
+ "source": [
157
+ "### Adaptation of Matts example\n",
158
+ "\n",
159
+ "https://gist.github.com/matthew-mizielinski/c20200a76e38244953803197d4ad7f85"
160
+ ]
161
+ },
162
+ {
163
+ "cell_type": "code",
164
+ "execution_count": 8,
165
+ "id": "69460242-c050-4b25-b875-65c825a0b3c6",
166
+ "metadata": {},
167
+ "outputs": [],
168
+ "source": [
169
+ "# imports\n",
170
+ "from collections import defaultdict\n",
171
+ "import json\n",
172
+ "from dataclasses import dataclass\n",
173
+ "import time"
174
+ ]
175
+ },
176
+ {
177
+ "cell_type": "markdown",
178
+ "id": "9879686e",
179
+ "metadata": {},
180
+ "source": []
181
+ },
182
+ {
183
+ "cell_type": "code",
184
+ "execution_count": 9,
185
+ "id": "9da1fb87-7f58-4d9f-a7e1-9a83fe838849",
186
+ "metadata": {},
187
+ "outputs": [],
188
+ "source": [
189
+ "# Define data classes for each object type.\n",
190
+ "# Have only pulled out a very limited set of objects and their parameters as a demonstration\n",
191
+ "\n",
192
+ "@dataclass\n",
193
+ "class Experiment:\n",
194
+ " record_id: str\n",
195
+ " experiment_name: str\n",
196
+ " mips: list\n",
197
+ " experiment_groups: list\n",
198
+ "\n",
199
+ "@dataclass\n",
200
+ "class Experiment:\n",
201
+ " record_id: str\n",
202
+ " experiment_name: str\n",
203
+ " mips: list\n",
204
+ " experiment_groups: list\n",
205
+ "\n",
206
+ "@dataclass\n",
207
+ "class MIP:\n",
208
+ " record_id: str\n",
209
+ " title: str\n",
210
+ " label: str\n",
211
+ " website: list\n",
212
+ " variable_groups: list\n",
213
+ "\n",
214
+ "@dataclass\n",
215
+ "class ExperimentGroup:\n",
216
+ " record_id: str\n",
217
+ " experiments: list\n",
218
+ " name: str\n",
219
+ " opportunities: list\n",
220
+ "\n",
221
+ "\n",
222
+ "@dataclass\n",
223
+ "class Opportunity:\n",
224
+ " record_id: str\n",
225
+ " description: str\n",
226
+ " experiment_groups: list\n",
227
+ " variable_groups: list\n",
228
+ "\n",
229
+ "\n",
230
+ "@dataclass\n",
231
+ "class VariableGroup:\n",
232
+ " record_id: str\n",
233
+ " title: str\n",
234
+ " variables: list\n",
235
+ " priority: str\n",
236
+ "\n",
237
+ "\n",
238
+ "@dataclass\n",
239
+ "class Variable:\n",
240
+ " record_id: str\n",
241
+ " variable_id: str\n",
242
+ " standard_name: str\n",
243
+ " frequency: str\n",
244
+ " name: str"
245
+ ]
246
+ },
247
+ {
248
+ "cell_type": "code",
249
+ "execution_count": 10,
250
+ "id": "63dbba14-141f-445b-abca-561fc621f194",
251
+ "metadata": {},
252
+ "outputs": [],
253
+ "source": [
254
+ "# build dictionaries allowing Data request network to be navigated\n",
255
+ "\n",
256
+ "def map_record_id(record, records, key):\n",
257
+ " \"\"\"\n",
258
+ " Identifieds a record_id in list of records using key\n",
259
+ " \"\"\"\n",
260
+ " recval=record[key]\n",
261
+ " matches = [r for r,v in records.items() if v[key] == recval]\n",
262
+ " if len(matches) == 1:\n",
263
+ " return matches[0]\n",
264
+ " else:\n",
265
+ " raise KeyError(\"None or multiple matches.\")\n",
266
+ "\n",
267
+ "def build_dictionaries(version):\n",
268
+ " \"\"\"\n",
269
+ " load json in filename and build dictionaries of data request objects\n",
270
+ " \"\"\"\n",
271
+ " # Dictionaries to be returned\n",
272
+ " object_dict = {}\n",
273
+ " structured_dict = defaultdict(dict)\n",
274
+ "\n",
275
+ " raw_data = dc.load(version)\n",
276
+ "\n",
277
+ " # load experiments\n",
278
+ " for record_id, entry in raw_data['Data Request Opportunities (Public)']['Experiment']['records'].items():\n",
279
+ " try:\n",
280
+ " expt = Experiment(\n",
281
+ " record_id=record_id, \n",
282
+ " experiment_name=entry[' Experiment'].strip(), \n",
283
+ " mips=entry['MIP'],\n",
284
+ " experiment_groups=entry['Experiment Group'])\n",
285
+ " except:\n",
286
+ " print(\"Could not interpret experiment: \", json.dumps(entry, indent=4))\n",
287
+ " time.sleep(0.1)\n",
288
+ " continue\n",
289
+ " structured_dict['experiment'][record_id] = expt\n",
290
+ " object_dict[record_id] = expt\n",
291
+ "\n",
292
+ "\n",
293
+ " # load experiment groups\n",
294
+ " for record_id, entry in raw_data['Data Request Opportunities (Public)']['Experiment Group']['records'].items():\n",
295
+ " try:\n",
296
+ " expt_group = ExperimentGroup(\n",
297
+ " record_id=record_id,\n",
298
+ " experiments=entry['Experiments'],\n",
299
+ " name=entry['Name'],\n",
300
+ " opportunities=entry['Opportunities']\n",
301
+ " )\n",
302
+ " except:\n",
303
+ " print(\"Could not interpret experiment_group:\", json.dumps(entry, indent=4))\n",
304
+ " time.sleep(0.1)\n",
305
+ " continue\n",
306
+ " structured_dict['experiment_group'][record_id] = expt_group\n",
307
+ " object_dict[record_id] = expt_group\n",
308
+ "\n",
309
+ "\n",
310
+ " # load MIPs\n",
311
+ " for record_id, entry in raw_data['Data Request Opportunities (Public)']['MIP']['records'].items():\n",
312
+ " try:\n",
313
+ " mip = MIP(\n",
314
+ " record_id=record_id, \n",
315
+ " title=entry['MIP Long Name'], \n",
316
+ " label=entry['MIP Short Name'],\n",
317
+ " variable_groups=entry['Variable Group'],\n",
318
+ " website=entry['MIP website'])\n",
319
+ " except:\n",
320
+ " print(\"Could not interpret MIP: \", json.dumps(entry, indent=4))\n",
321
+ " time.sleep(0.1)\n",
322
+ " continue\n",
323
+ " structured_dict['mip'][record_id] = mip\n",
324
+ " object_dict[record_id] = mip\n",
325
+ "\n",
326
+ " \n",
327
+ " # load opportunities\n",
328
+ " for record_id, entry in raw_data['Data Request Opportunities (Public)']['Opportunity']['records'].items():\n",
329
+ " try:\n",
330
+ " opportunity = Opportunity(\n",
331
+ " record_id=record_id,\n",
332
+ " description=entry['Description'],\n",
333
+ " experiment_groups=entry['Experiment Groups'],\n",
334
+ " variable_groups=entry['Variable Groups']\n",
335
+ " )\n",
336
+ " except:\n",
337
+ " print(\"could not interpret opportunity\", json.dumps(entry, indent=4))\n",
338
+ " time.sleep(0.1)\n",
339
+ " continue\n",
340
+ " structured_dict['opportunity'][record_id] = opportunity\n",
341
+ " object_dict[record_id] = opportunity\n",
342
+ "\n",
343
+ "\n",
344
+ " # load variable groups\n",
345
+ " for record_id, entry in raw_data['Data Request Opportunities (Public)']['Variable Group']['records'].items():\n",
346
+ " try:\n",
347
+ " variable_group = VariableGroup(\n",
348
+ " record_id=record_id,\n",
349
+ " title=entry['Title'],\n",
350
+ " variables=entry['Variables'],\n",
351
+ " priority=entry['Priority Level']\n",
352
+ " )\n",
353
+ " except:\n",
354
+ " print(\"Could not interpret variable group\", json.dumps(entry, indent=4))\n",
355
+ " time.sleep(0.1)\n",
356
+ " continue\n",
357
+ " structured_dict['variable_group'][record_id] = variable_group\n",
358
+ " object_dict[record_id] = variable_group\n",
359
+ "\n",
360
+ "\n",
361
+ " # load variables\n",
362
+ " for record_id, entry in raw_data['Data Request Variables (Public)']['Variable']['records'].items():\n",
363
+ " try:\n",
364
+ " record_id_match = map_record_id(entry,\n",
365
+ " raw_data['Data Request Opportunities (Public)']['Variables']['records'], \n",
366
+ " key = \"Compound Name\") \n",
367
+ " variable = Variable(\n",
368
+ " record_id=record_id_match,\n",
369
+ " variable_id=record_id,\n",
370
+ " standard_name=entry['CF Standard Name (from MIP Variables)'],\n",
371
+ " frequency=entry['Frequency'][0],\n",
372
+ " name=entry['Compound Name']\n",
373
+ " )\n",
374
+ " except:\n",
375
+ " print(\"Could not interpret variable:\", json.dumps(entry, indent=4))\n",
376
+ " time.sleep(0.1)\n",
377
+ " continue\n",
378
+ " structured_dict['variable'][record_id_match] = variable\n",
379
+ " object_dict[record_id_match] = variable\n",
380
+ " \n",
381
+ "\n",
382
+ " # return dictionaries\n",
383
+ " return object_dict, structured_dict"
384
+ ]
385
+ },
386
+ {
387
+ "cell_type": "code",
388
+ "execution_count": 11,
389
+ "id": "92ffb45c-4bfa-43db-8863-b5272a20da92",
390
+ "metadata": {
391
+ "scrolled": true
392
+ },
393
+ "outputs": [
394
+ {
395
+ "name": "stderr",
396
+ "output_type": "stream",
397
+ "text": [
398
+ "Downloading data from 'https://raw.githubusercontent.com/WCRP-CMIP/CMIP7_DReq_Content/first_export/airtable_export/dreq_raw_export.json' to file '/home/ms/GIT/c7dreq/cmip7_request_scripts/dreq_api/dreq_res/first_export/dreq_raw_export.json'.\n",
399
+ "SHA256 hash of downloaded file: feb809bb72007964bbdf287e5f0d62ab96cd373cd663baee1769f3066b74f9a3\n",
400
+ "Use this value as the 'known_hash' argument of 'pooch.retrieve' to ensure that the file hasn't changed if it is downloaded again in the future.\n"
401
+ ]
402
+ },
403
+ {
404
+ "name": "stdout",
405
+ "output_type": "stream",
406
+ "text": [
407
+ "Could not interpret experiment: {\n",
408
+ " \" Experiment\": \"spin-up\",\n",
409
+ " \"MIP\": [\n",
410
+ " \"recdznPjoiemHR2o1\"\n",
411
+ " ]\n",
412
+ "}\n",
413
+ "Could not interpret MIP: {\n",
414
+ " \"MIP Short Name\": \"Other\",\n",
415
+ " \"Variable Group\": [\n",
416
+ " \"recRDRk1w22DH1ccr\"\n",
417
+ " ]\n",
418
+ "}\n",
419
+ "Could not interpret MIP: {\n",
420
+ " \"MIP Long Name\": \"Ice Sheet Model Intercomparison Project\",\n",
421
+ " \"MIP Short Name\": \"ISMIP6\",\n",
422
+ " \"MIP website\": \"https://climate-cryosphere.org/about-ismip6/\"\n",
423
+ "}\n",
424
+ "Could not interpret MIP: {\n",
425
+ " \"MIP Long Name\": \"Irrigation Model Intercomparison Project\",\n",
426
+ " \"MIP Short Name\": \"IRRMIP\",\n",
427
+ " \"MIP website\": \"https://hydr.vub.be/projects/irrmip\"\n",
428
+ "}\n",
429
+ "Could not interpret MIP: {\n",
430
+ " \"MIP Long Name\": \"MethaneMIP: Investigating the near-term climate benefits of methane mitigation\",\n",
431
+ " \"MIP Short Name\": \"MethaneMIP\",\n",
432
+ " \"MIP website\": \"tba\"\n",
433
+ "}\n",
434
+ "Could not interpret MIP: {\n",
435
+ " \"MIP Long Name\": \"Perturbed Parameter Ensemble Model Inter-comparaison Project\",\n",
436
+ " \"MIP Short Name\": \"PPEMIP\",\n",
437
+ " \"MIP website\": \"To be determined\"\n",
438
+ "}\n",
439
+ "Could not interpret MIP: {\n",
440
+ " \"MIP Long Name\": \"Soil Parameter Model Intercomparison Project\",\n",
441
+ " \"MIP Short Name\": \"SP-MIP\",\n",
442
+ " \"MIP website\": \"N/A\"\n",
443
+ "}\n",
444
+ "Could not interpret MIP: {\n",
445
+ " \"MIP Long Name\": \"LongRunMIP\",\n",
446
+ " \"MIP Short Name\": \"LongRunMIP\",\n",
447
+ " \"MIP website\": \"https://www.longrunmip.org/\"\n",
448
+ "}\n",
449
+ "Could not interpret MIP: {\n",
450
+ " \"MIP Long Name\": \"Regional Aerosol Model Intercomparison Project\",\n",
451
+ " \"MIP Short Name\": \"RAMIP \",\n",
452
+ " \"MIP website\": \"https://ramip.uk/\"\n",
453
+ "}\n",
454
+ "Could not interpret MIP: {\n",
455
+ " \"MIP Long Name\": \"Marine Ice Sheet-Ocean Model Intercomparions Project\",\n",
456
+ " \"MIP Short Name\": \"MISOMIP2\",\n",
457
+ " \"MIP website\": \"https://misomip.github.io/\"\n",
458
+ "}\n",
459
+ "Could not interpret MIP: {\n",
460
+ " \"MIP Long Name\": \"Model Uncertainty Model Intercomparison Project\",\n",
461
+ " \"MIP Short Name\": \"MUMIP\",\n",
462
+ " \"MIP website\": \"https://mumip.web.ox.ac.uk\"\n",
463
+ "}\n",
464
+ "Could not interpret MIP: {\n",
465
+ " \"MIP Long Name\": \"Fisheries and Marine Ecosystem Model Intercomparison Project\",\n",
466
+ " \"MIP Short Name\": \"FishMIP\",\n",
467
+ " \"MIP website\": \"https://fishmip.org/\"\n",
468
+ "}\n",
469
+ "Could not interpret MIP: {\n",
470
+ " \"MIP Long Name\": \"Land Surface, Snow and Soil Moistures Model Intercomparison Project\",\n",
471
+ " \"MIP Short Name\": \"LS3MIP\",\n",
472
+ " \"MIP website\": \"https://wiki.c2sm.ethz.ch/LS3MIP\"\n",
473
+ "}\n",
474
+ "Could not interpret MIP: {\n",
475
+ " \"MIP Long Name\": \"Adaptive Emission Reduction Approach Modelling Intercomparison Project\",\n",
476
+ " \"MIP Short Name\": \"AERA-MIP\"\n",
477
+ "}\n",
478
+ "could not interpret opportunity {\n",
479
+ " \"Comments\": [\n",
480
+ " \"rec65jWSjBcjny3D0\"\n",
481
+ " ],\n",
482
+ " \"Cross-thematic group review\": \"Accept (pending actions)\",\n",
483
+ " \"Cross-thematic group review comments\": \"Scientific proposition is fine.\\u00a0\\nIncomplete -no variables provided and daily is high demand, not clear if necessary. But noted why would require daily.\\u00a0\\n\",\n",
484
+ " \"Description\": \"This is a set of daily variables that would be useful to assess the ability of Earth system models to reproduce the observed changes in plant phenology. The proper representation of the plant's active season impacts the accuracy of the Earth system models in representing energy, carbon, and water exchanges between land and atmosphere.\\nFor this reason, the availability of these variables at the vegetation type level can increase our understanding of model limitations (Li et al., 2024, <https://doi.org/10.1175/JCLI-D-23-0179.1>) and their expected future changes.\\n\",\n",
485
+ " \"Earth system author team review\": \"Accept\",\n",
486
+ " \"Earth system review comments\": \"The variable group is provided (namely 'Vegetation\\\\_type'), but for some reason it is still missing in the public view tables.\\n\",\n",
487
+ " \"Ensemble Size\": 1,\n",
488
+ " \"Expected Impacts\": \"The historical experiment provides a benchmark to evaluate the model plant phenology biases (e.g. Peano et al., 2021, https://doi.org/10.5194/bg-18-2405-2021) while scenarios supply future changes. The main variable is the leaf area index (lai) commonly used to estimate the main phenophases (e.g. Peano et al., 2019, <https://doi.org/10.1029/2018JG004881>). The variables of carbon exchange between land and atmosphere (i.e. gpp, npp, rh, and ra) allow us to link the biases in productivity with changes in phenology (e.g. Li et al., 2023, [10.22541/essoar.168298711.15374345/v1](https://doi.org/10.22541/essoar.168298711.15374345/v1)). Finally, the landCoverFrac variable provides the relative influence of each vegetation type on the total grid cell.\\n\",\n",
489
+ " \"Experiment Groups\": [\n",
490
+ " \"recJoILQRKYKsPdd3\",\n",
491
+ " \"recuqVDruA0gukjMw\"\n",
492
+ " ],\n",
493
+ " \"Justification of Resources\": \"To realistically simulate terrestrial ecosystem processes and land-atmosphere carbon, energy, and water exchanges, it is crucial that the seasonality and trend of plant phenology are correctly captured by the Earth system models. This opportunity delineates a set of variables and experiments needed to expand our understanding of model weaknesses and strengths.\",\n",
494
+ " \"Land & land-ice author team review\": \"Accept\",\n",
495
+ " \"Land & land-ice review comments\": \"Need to define vegetation types at a later stage. Adjust title to be more specific. \\n\",\n",
496
+ " \"Lead theme\": \"Land & Land-Ice\",\n",
497
+ " \"Opportunity ID\": \"53\",\n",
498
+ " \"Opportunity size\": 12567,\n",
499
+ " \"Status\": \"Under review\",\n",
500
+ " \"Themes\": [\n",
501
+ " \"Land & Land-Ice\",\n",
502
+ " \"Earth System\"\n",
503
+ " ],\n",
504
+ " \"Title of Opportunity\": \"Plant Phenology\"\n",
505
+ "}\n",
506
+ "Could not interpret variable group {\n",
507
+ " \"Count (Variables)\": 27,\n",
508
+ " \"Name\": \"cordex [test]\",\n",
509
+ " \"Status\": \"New\",\n",
510
+ " \"Variables\": [\n",
511
+ " \"recOZBq9BHMbCGTEv\",\n",
512
+ " \"recU7zEhsax0nQFRl\",\n",
513
+ " \"recRWbs8cUHzQcHVX\",\n",
514
+ " \"recHt8cInylS4t7jd\",\n",
515
+ " \"recI33DcY1xbuNBmN\",\n",
516
+ " \"recJ7OvNbKva50iXY\",\n",
517
+ " \"recUHtYFpenaRTA37\",\n",
518
+ " \"recSp6Wg2Si1y2EbY\",\n",
519
+ " \"recAWS9Eou5dnAGKK\",\n",
520
+ " \"recLvZn0qoDVfdj3z\",\n",
521
+ " \"recpUCZx8ymWulzgb\",\n",
522
+ " \"recT9vSfMHViWKVyc\",\n",
523
+ " \"recJNwptMcbg2kmy5\",\n",
524
+ " \"reci5UqpDW8rY61Wb\",\n",
525
+ " \"recGhg6esXvyq3GqS\",\n",
526
+ " \"rec7iAA9K1zdfDZg7\",\n",
527
+ " \"reciprPhjOacD3GMI\",\n",
528
+ " \"recETrCoV48va99bX\",\n",
529
+ " \"recwy3jLRZdixYt52\",\n",
530
+ " \"recrE2RCXJ7fk4PLO\",\n",
531
+ " \"recMYEyIrZWyC7j9z\",\n",
532
+ " \"recGfiAQ8b62b8D0H\",\n",
533
+ " \"rec2xuSBvpI32Cbqm\",\n",
534
+ " \"rect7UmhZ8vKozdgP\",\n",
535
+ " \"recLpghOhjAcjBpGU\",\n",
536
+ " \"recvqYIzSCXMaCEbF\",\n",
537
+ " \"recmBq6k7SWFMJ4YA\"\n",
538
+ " ]\n",
539
+ "}\n",
540
+ "Could not interpret variable: {\n",
541
+ " \"Atmosphere author team review\": \"In progress\",\n",
542
+ " \"CMIP7 Variable Groups\": \"dynvar_advanced\",\n",
543
+ " \"Cell Measures\": [\n",
544
+ " \"rec5XdFZJqmV9cmq8\"\n",
545
+ " ],\n",
546
+ " \"Cell Methods\": [\n",
547
+ " \"recj82upWagLqGWER\"\n",
548
+ " ],\n",
549
+ " \"Comments\": [\n",
550
+ " \"recepVFCJ6dtYTW0b\"\n",
551
+ " ],\n",
552
+ " \"Compound Name\": \"Emon.tauvogw\",\n",
553
+ " \"Description\": \"Vertical flux of meridional momentum within the orographic GW parameterization\\n\",\n",
554
+ " \"Frequency\": [\n",
555
+ " \"mon\"\n",
556
+ " ],\n",
557
+ " \"Modeling Realm\": [\n",
558
+ " \"atmos\"\n",
559
+ " ],\n",
560
+ " \"Physical Parameter\": [\n",
561
+ " \"reccTVqGw0x6msv3E\"\n",
562
+ " ],\n",
563
+ " \"Spatial Shape\": [\n",
564
+ " \"recAJTPKQTjvOpsr8\"\n",
565
+ " ],\n",
566
+ " \"Status\": \"Under review\",\n",
567
+ " \"Table\": [\n",
568
+ " \"Emon\"\n",
569
+ " ],\n",
570
+ " \"Temporal Shape\": [\n",
571
+ " \"recF1jvxHxPzKHG62\"\n",
572
+ " ],\n",
573
+ " \"Theme\": [\n",
574
+ " \"Atmosphere\"\n",
575
+ " ],\n",
576
+ " \"Title\": \"Northward Reynolds stress from orographic gravity wave parameterization\",\n",
577
+ " \"Type\": \"real\"\n",
578
+ "}\n",
579
+ "Could not interpret variable: {\n",
580
+ " \"CMIP7 Variable Groups\": \"ocean_grid\",\n",
581
+ " \"Cell Measures\": [\n",
582
+ " \"rec5XdFZJqmV9cmq8\"\n",
583
+ " ],\n",
584
+ " \"Cell Methods\": [\n",
585
+ " \"reccn8RUyCIT0DtYs\"\n",
586
+ " ],\n",
587
+ " \"Compound Name\": \"Ofx.dxvo\",\n",
588
+ " \"Description\": \"The width of the ocean model gridbox in at the v-point (dx)\\n\",\n",
589
+ " \"Frequency\": [\n",
590
+ " \"fx\"\n",
591
+ " ],\n",
592
+ " \"Modeling Realm\": [\n",
593
+ " \"ocean\"\n",
594
+ " ],\n",
595
+ " \"Ocean & sea-ice author team review\": \"In progress\",\n",
596
+ " \"Physical Parameter\": [\n",
597
+ " \"recXdUIADU7Y4omGd\"\n",
598
+ " ],\n",
599
+ " \"Spatial Shape\": [\n",
600
+ " \"rec1eFSEpR5EWjdLK\"\n",
601
+ " ],\n",
602
+ " \"Status\": \"Under review\",\n",
603
+ " \"Table\": [\n",
604
+ " \"Ofx\"\n",
605
+ " ],\n",
606
+ " \"Temporal Shape\": [\n",
607
+ " \"recWkMQsqHF3CzF86\"\n",
608
+ " ],\n",
609
+ " \"Theme\": [\n",
610
+ " \"Ocean & sea-ice\"\n",
611
+ " ],\n",
612
+ " \"Title\": \"Eastward gridbox length at v points\",\n",
613
+ " \"Type\": \"real\"\n",
614
+ "}\n",
615
+ "Could not interpret variable: {\n",
616
+ " \"Atmosphere author team review\": \"In progress\",\n",
617
+ " \"CMIP7 Variable Groups\": \"dynvar_basic\",\n",
618
+ " \"Cell Measures\": [\n",
619
+ " \"rec5XdFZJqmV9cmq8\"\n",
620
+ " ],\n",
621
+ " \"Cell Methods\": [\n",
622
+ " \"recj82upWagLqGWER\"\n",
623
+ " ],\n",
624
+ " \"Comments\": [\n",
625
+ " \"recepVFCJ6dtYTW0b\"\n",
626
+ " ],\n",
627
+ " \"Compound Name\": \"EdayZ.tauvogw\",\n",
628
+ " \"Description\": \"Zonal mean vertical flux of meridional momentum within the orographic GW parameterization\\n\",\n",
629
+ " \"Frequency\": [\n",
630
+ " \"day\"\n",
631
+ " ],\n",
632
+ " \"Modeling Realm\": [\n",
633
+ " \"atmos\"\n",
634
+ " ],\n",
635
+ " \"Physical Parameter\": [\n",
636
+ " \"reccTVqGw0x6msv3E\"\n",
637
+ " ],\n",
638
+ " \"Spatial Shape\": [\n",
639
+ " \"rec3ANEmWx0SvZauH\"\n",
640
+ " ],\n",
641
+ " \"Status\": \"Under review\",\n",
642
+ " \"Table\": [\n",
643
+ " \"EdayZ\"\n",
644
+ " ],\n",
645
+ " \"Temporal Shape\": [\n",
646
+ " \"recF1jvxHxPzKHG62\"\n",
647
+ " ],\n",
648
+ " \"Theme\": [\n",
649
+ " \"Atmosphere\"\n",
650
+ " ],\n",
651
+ " \"Title\": \"Zonal mean northward Reynolds stress from orographic gravity wave parameterization \",\n",
652
+ " \"Type\": \"real\"\n",
653
+ "}\n",
654
+ "Could not interpret variable: {\n",
655
+ " \"Atmosphere author team review\": \"In progress\",\n",
656
+ " \"CMIP7 Variable Groups\": \"aerchemmip_3d_monthly\",\n",
657
+ " \"Cell Measures\": [\n",
658
+ " \"recb1V00ayWZnmm79\"\n",
659
+ " ],\n",
660
+ " \"Cell Methods\": [\n",
661
+ " \"recikI5axFizPaxLg\"\n",
662
+ " ],\n",
663
+ " \"Compound Name\": \"AERmon.chepnh4\",\n",
664
+ " \"Description\": \"This is the net chemical production rate of ammonium aerosol in the atmosphere.\\n\",\n",
665
+ " \"Frequency\": [\n",
666
+ " \"mon\"\n",
667
+ " ],\n",
668
+ " \"Modeling Realm\": [\n",
669
+ " \"aerosol\"\n",
670
+ " ],\n",
671
+ " \"Physical Parameter\": [\n",
672
+ " \"recdGCMDuyfny0ksV\"\n",
673
+ " ],\n",
674
+ " \"Spatial Shape\": [\n",
675
+ " \"rece7NrwMj9ACYd39\"\n",
676
+ " ],\n",
677
+ " \"Status\": \"Under review\",\n",
678
+ " \"Table\": [\n",
679
+ " \"AERmon\"\n",
680
+ " ],\n",
681
+ " \"Temporal Shape\": [\n",
682
+ " \"recF1jvxHxPzKHG62\"\n",
683
+ " ],\n",
684
+ " \"Theme\": [\n",
685
+ " \"Atmosphere\"\n",
686
+ " ],\n",
687
+ " \"Title\": \"Net chemical production of ammonium aerosol\",\n",
688
+ " \"Type\": \"real\"\n",
689
+ "}\n",
690
+ "Could not interpret variable: {\n",
691
+ " \"Atmosphere author team review\": \"In progress\",\n",
692
+ " \"CMIP7 Variable Groups\": \"aerchemmip_2d_monthly, FireMIP_monthly\",\n",
693
+ " \"Cell Measures\": [\n",
694
+ " \"recb1V00ayWZnmm79\"\n",
695
+ " ],\n",
696
+ " \"Cell Methods\": [\n",
697
+ " \"recikI5axFizPaxLg\"\n",
698
+ " ],\n",
699
+ " \"Compound Name\": \"AERmon.emibboa\",\n",
700
+ " \"Description\": \"The is the total emission rate of particulate organic matter (organic aerosol) into the atmosphere from all biomass burning (natural and anthropogenic)\\n\",\n",
701
+ " \"Frequency\": [\n",
702
+ " \"mon\"\n",
703
+ " ],\n",
704
+ " \"Modeling Realm\": [\n",
705
+ " \"aerosol\"\n",
706
+ " ],\n",
707
+ " \"Physical Parameter\": [\n",
708
+ " \"recHBea3so0bkgNIZ\"\n",
709
+ " ],\n",
710
+ " \"Spatial Shape\": [\n",
711
+ " \"rec1eFSEpR5EWjdLK\"\n",
712
+ " ],\n",
713
+ " \"Status\": \"Under review\",\n",
714
+ " \"Table\": [\n",
715
+ " \"AERmon\"\n",
716
+ " ],\n",
717
+ " \"Temporal Shape\": [\n",
718
+ " \"recF1jvxHxPzKHG62\"\n",
719
+ " ],\n",
720
+ " \"Theme\": [\n",
721
+ " \"Atmosphere\"\n",
722
+ " ],\n",
723
+ " \"Title\": \"total emission of organic aerosol from all biomass burning \",\n",
724
+ " \"Type\": \"real\"\n",
725
+ "}\n",
726
+ "Could not interpret variable: {\n",
727
+ " \"Cell Measures\": [\n",
728
+ " \"recdWlLVgWuRs0LGa\"\n",
729
+ " ],\n",
730
+ " \"Cell Methods\": [\n",
731
+ " \"recikI5axFizPaxLg\"\n",
732
+ " ],\n",
733
+ " \"Compound Name\": \"Oday.phycmisc\",\n",
734
+ " \"Description\": \"Carbon concentration of miscellaneous phytoplankton\\n\",\n",
735
+ " \"Frequency\": [\n",
736
+ " \"day\"\n",
737
+ " ],\n",
738
+ " \"Modeling Realm\": [\n",
739
+ " \"ocnBgchem\"\n",
740
+ " ],\n",
741
+ " \"Physical Parameter\": [\n",
742
+ " \"recorTXJMb8oMjAHr\"\n",
743
+ " ],\n",
744
+ " \"Processing Note\": \"Analogous to Oday.phyc\\n\",\n",
745
+ " \"Spatial Shape\": [\n",
746
+ " \"rec1eFSEpR5EWjdLK\"\n",
747
+ " ],\n",
748
+ " \"Status\": \"New\",\n",
749
+ " \"Table\": [\n",
750
+ " \"Oday\"\n",
751
+ " ],\n",
752
+ " \"Temporal Shape\": [\n",
753
+ " \"recF1jvxHxPzKHG62\"\n",
754
+ " ],\n",
755
+ " \"Theme\": [\n",
756
+ " \"Ocean & sea-ice\"\n",
757
+ " ],\n",
758
+ " \"Title\": \"Carbon concentration of miscellaneous phytoplankton\",\n",
759
+ " \"Type\": \"real\"\n",
760
+ "}\n",
761
+ "Could not interpret variable: {\n",
762
+ " \"CMIP7 Variable Groups\": \"fishmip_marine_monthly\",\n",
763
+ " \"Cell Measures\": [\n",
764
+ " \"recxdGFHrfcEVyUXq\"\n",
765
+ " ],\n",
766
+ " \"Cell Methods\": [\n",
767
+ " \"recpJFt9qlhSX8odm\"\n",
768
+ " ],\n",
769
+ " \"Compound Name\": \"Omon.phycnano\",\n",
770
+ " \"Description\": \"Mole Concentration of Nanophytoplankton only Expressed as Carbon in Sea Water\\n\",\n",
771
+ " \"Frequency\": [\n",
772
+ " \"mon\"\n",
773
+ " ],\n",
774
+ " \"Modeling Realm\": [\n",
775
+ " \"ocnBgchem\"\n",
776
+ " ],\n",
777
+ " \"Physical Parameter\": [\n",
778
+ " \"recVHnHKSjhtCD3wT\"\n",
779
+ " ],\n",
780
+ " \"Positive Direction\": \"down\",\n",
781
+ " \"Spatial Shape\": [\n",
782
+ " \"recc6uQw5RAS1YKKc\"\n",
783
+ " ],\n",
784
+ " \"Status\": \"New\",\n",
785
+ " \"Table\": [\n",
786
+ " \"Omon\"\n",
787
+ " ],\n",
788
+ " \"Temporal Shape\": [\n",
789
+ " \"recF1jvxHxPzKHG62\"\n",
790
+ " ],\n",
791
+ " \"Theme\": [\n",
792
+ " \"Earth System\",\n",
793
+ " \"Ocean & sea-ice\"\n",
794
+ " ],\n",
795
+ " \"Title\": \"Mole Concentration of Nanophytoplankton Expressed as Carbon in Sea Water\",\n",
796
+ " \"Type\": \"real\"\n",
797
+ "}\n",
798
+ "Could not interpret variable: {\n",
799
+ " \"CMIP7 Variable Groups\": \"seaice_global_monthly_basic\",\n",
800
+ " \"Cell Measures\": [\n",
801
+ " \"recdWlLVgWuRs0LGa\"\n",
802
+ " ],\n",
803
+ " \"Cell Methods\": [\n",
804
+ " \"recikI5axFizPaxLg\"\n",
805
+ " ],\n",
806
+ " \"Compound Name\": \"SImon.sisnmasss\",\n",
807
+ " \"Description\": \"Total mass of snow on sea ice of all Southern-Hemisphere grid cells\\n\",\n",
808
+ " \"Frequency\": [\n",
809
+ " \"mon\"\n",
810
+ " ],\n",
811
+ " \"Modeling Realm\": [\n",
812
+ " \"seaIce\"\n",
813
+ " ],\n",
814
+ " \"Ocean & sea-ice author team review\": \"In progress\",\n",
815
+ " \"Physical Parameter\": [\n",
816
+ " \"recDbBfAHFUonD5xp\"\n",
817
+ " ],\n",
818
+ " \"Spatial Shape\": [\n",
819
+ " \"recoDb6p8Qjm7VaLZ\"\n",
820
+ " ],\n",
821
+ " \"Status\": \"New\",\n",
822
+ " \"Table\": [\n",
823
+ " \"SImon\"\n",
824
+ " ],\n",
825
+ " \"Temporal Shape\": [\n",
826
+ " \"recF1jvxHxPzKHG62\"\n",
827
+ " ],\n",
828
+ " \"Theme\": [\n",
829
+ " \"Ocean & sea-ice\"\n",
830
+ " ],\n",
831
+ " \"Title\": \"Sea-Ice Snow Mass South\",\n",
832
+ " \"Type\": \"real\"\n",
833
+ "}\n",
834
+ "Could not interpret variable: {\n",
835
+ " \"Atmosphere author team review\": \"In progress\",\n",
836
+ " \"Atmosphere review comment\": \"Atmosphere team happy to accept variable.\\n\\nMoved back to in progress, as it has been noted that there are duplicate compound names. Could suggest to the author to submit new physical parameters to avoid this.\\n\\nNOTE need to add extra dimension 'LWP'\",\n",
837
+ " \"CMIP7 Variable Groups\": \"CFMIP_cosp_extra\",\n",
838
+ " \"Cell Measures\": [\n",
839
+ " \"recb1V00ayWZnmm79\"\n",
840
+ " ],\n",
841
+ " \"Cell Methods\": [\n",
842
+ " \"recikI5axFizPaxLg\"\n",
843
+ " ],\n",
844
+ " \"Comments\": [\n",
845
+ " \"rec3DjzGWgwHAOvvd\"\n",
846
+ " ],\n",
847
+ " \"Compound Name\": \"CFmon.clmodisliquid_dup\",\n",
848
+ " \"Description\": \"Percentage liquid-cloud cover as seen by the MODIS instrument simulator. Dimensions of LWP (cloud liquid water path) and r\\\\_eff (droplet effective radius).\\n\",\n",
849
+ " \"Extra Dimensions\": [\n",
850
+ " \"recH0okCoL1Eq84wi\"\n",
851
+ " ],\n",
852
+ " \"Frequency\": [\n",
853
+ " \"mon\"\n",
854
+ " ],\n",
855
+ " \"Modeling Realm\": [\n",
856
+ " \"atmos\"\n",
857
+ " ],\n",
858
+ " \"Physical Parameter\": [\n",
859
+ " \"recYQAq7k1jz4gYO2\"\n",
860
+ " ],\n",
861
+ " \"Processing Note\": \"7 LWP levels x 6 effective radius levels. NOTE: \\\"p1000\\\" is chosen as a coordinate to enable form submission and should be ignored. An extra dimension of LWP should also be added to this request (although it is not an option in the form).\\n\\n[BD removed the p1000 coordinate on 4/9/24]\\n\",\n",
862
+ " \"Spatial Shape\": [\n",
863
+ " \"rec1eFSEpR5EWjdLK\"\n",
864
+ " ],\n",
865
+ " \"Status\": \"Under review\",\n",
866
+ " \"Table\": [\n",
867
+ " \"CFmon\"\n",
868
+ " ],\n",
869
+ " \"Temporal Shape\": [\n",
870
+ " \"recF1jvxHxPzKHG62\"\n",
871
+ " ],\n",
872
+ " \"Theme\": [\n",
873
+ " \"Atmosphere\"\n",
874
+ " ],\n",
875
+ " \"Title\": \"MODIS Liquid Topped Cloud Area Fraction\",\n",
876
+ " \"Type\": \"real\"\n",
877
+ "}\n",
878
+ "Could not interpret variable: {\n",
879
+ " \"CMIP7 Variable Groups\": \"seaice_bgc_monthly\",\n",
880
+ " \"Cell Measures\": [\n",
881
+ " \"recdWlLVgWuRs0LGa\"\n",
882
+ " ],\n",
883
+ " \"Cell Methods\": [\n",
884
+ " \"recikI5axFizPaxLg\"\n",
885
+ " ],\n",
886
+ " \"Compound Name\": \"SImon.sic\",\n",
887
+ " \"Description\": \"Sum of ice algal carbon component content\\n\\n\",\n",
888
+ " \"Frequency\": [\n",
889
+ " \"mon\"\n",
890
+ " ],\n",
891
+ " \"Modeling Realm\": [\n",
892
+ " \"ocnBgchem\",\n",
893
+ " \"seaIce\"\n",
894
+ " ],\n",
895
+ " \"Ocean & sea-ice author team review\": \"In progress\",\n",
896
+ " \"Physical Parameter\": [\n",
897
+ " \"recbqn1KTsygVUaJm\"\n",
898
+ " ],\n",
899
+ " \"Spatial Shape\": [\n",
900
+ " \"rec1eFSEpR5EWjdLK\"\n",
901
+ " ],\n",
902
+ " \"Status\": \"New\",\n",
903
+ " \"Table\": [\n",
904
+ " \"SImon\"\n",
905
+ " ],\n",
906
+ " \"Temporal Shape\": [\n",
907
+ " \"recF1jvxHxPzKHG62\"\n",
908
+ " ],\n",
909
+ " \"Theme\": [\n",
910
+ " \"Ocean & sea-ice\"\n",
911
+ " ],\n",
912
+ " \"Title\": \"Total Ice Algal Carbon Amount\",\n",
913
+ " \"Type\": \"real\"\n",
914
+ "}\n",
915
+ "Could not interpret variable: {\n",
916
+ " \"Cell Measures\": [\n",
917
+ " \"rec5XdFZJqmV9cmq8\"\n",
918
+ " ],\n",
919
+ " \"Cell Methods\": [\n",
920
+ " \"recppqC575nzhrnXJ\"\n",
921
+ " ],\n",
922
+ " \"Compound Name\": \"Oday.fshtrans\",\n",
923
+ " \"Description\": \"The heat transport through the Florida Straits, from the coast of Florida to the Bahamas at 26.7N.\\n\",\n",
924
+ " \"Frequency\": [\n",
925
+ " \"day\"\n",
926
+ " ],\n",
927
+ " \"Modeling Realm\": [\n",
928
+ " \"ocean\"\n",
929
+ " ],\n",
930
+ " \"Ocean & sea-ice author team review\": \"In progress\",\n",
931
+ " \"Physical Parameter\": [\n",
932
+ " \"rec9WZMbiENq6OAyH\"\n",
933
+ " ],\n",
934
+ " \"Processing Note\": \"Integrated depth and longitude section of temperature multiplied by velocity at 25.7N from the Florida coast (~80.5W) to the Bahamas (~77.4W), If the east coast isn't resolved go up to ~77.4W.\\n\",\n",
935
+ " \"Spatial Shape\": [\n",
936
+ " \"recVqSrjNkJ9AnYd2\"\n",
937
+ " ],\n",
938
+ " \"Status\": \"Under review\",\n",
939
+ " \"Table\": [\n",
940
+ " \"Oday\"\n",
941
+ " ],\n",
942
+ " \"Temporal Shape\": [\n",
943
+ " \"recWkMQsqHF3CzF86\"\n",
944
+ " ],\n",
945
+ " \"Theme\": [\n",
946
+ " \"Ocean & sea-ice\"\n",
947
+ " ],\n",
948
+ " \"Title\": \"Florida Strait Heat Transport\",\n",
949
+ " \"Type\": \"real\"\n",
950
+ "}\n",
951
+ "Could not interpret variable: {\n",
952
+ " \"Atmosphere author team review\": \"In progress\",\n",
953
+ " \"CMIP7 Variable Groups\": \"aerchemmip_3d_monthly\",\n",
954
+ " \"Cell Measures\": [\n",
955
+ " \"recb1V00ayWZnmm79\"\n",
956
+ " ],\n",
957
+ " \"Cell Methods\": [\n",
958
+ " \"recikI5axFizPaxLg\"\n",
959
+ " ],\n",
960
+ " \"Compound Name\": \"AERmon.do3chm\",\n",
961
+ " \"Description\": \"This is the net chemical production of ozone in the atmosphere\\n\",\n",
962
+ " \"Frequency\": [\n",
963
+ " \"mon\"\n",
964
+ " ],\n",
965
+ " \"Modeling Realm\": [\n",
966
+ " \"aerosol\"\n",
967
+ " ],\n",
968
+ " \"Physical Parameter\": [\n",
969
+ " \"recPmPpmgOp6rEXZN\"\n",
970
+ " ],\n",
971
+ " \"Spatial Shape\": [\n",
972
+ " \"rece7NrwMj9ACYd39\"\n",
973
+ " ],\n",
974
+ " \"Status\": \"Under review\",\n",
975
+ " \"Table\": [\n",
976
+ " \"AERmon\"\n",
977
+ " ],\n",
978
+ " \"Temporal Shape\": [\n",
979
+ " \"recF1jvxHxPzKHG62\"\n",
980
+ " ],\n",
981
+ " \"Theme\": [\n",
982
+ " \"Atmosphere\"\n",
983
+ " ],\n",
984
+ " \"Title\": \"Net Chemistry Tendency of O3\",\n",
985
+ " \"Type\": \"real\"\n",
986
+ "}\n",
987
+ "Could not interpret variable: {\n",
988
+ " \"Atmosphere author team review\": \"In progress\",\n",
989
+ " \"CMIP7 Variable Groups\": \"baseline_daily\",\n",
990
+ " \"Cell Measures\": [\n",
991
+ " \"recb1V00ayWZnmm79\"\n",
992
+ " ],\n",
993
+ " \"Cell Methods\": [\n",
994
+ " \"recikI5axFizPaxLg\"\n",
995
+ " ],\n",
996
+ " \"Compound Name\": \"day.wbgt2m\",\n",
997
+ " \"Description\": \"**mean 2m daily wet bulb globe temperature**\\n\",\n",
998
+ " \"Frequency\": [\n",
999
+ " \"day\"\n",
1000
+ " ],\n",
1001
+ " \"Impacts & adaptation author team review\": \"In progress\",\n",
1002
+ " \"Modeling Realm\": [\n",
1003
+ " \"atmos\"\n",
1004
+ " ],\n",
1005
+ " \"Physical Parameter\": [\n",
1006
+ " \"rec0d0724BU9uhEpl\"\n",
1007
+ " ],\n",
1008
+ " \"Spatial Shape\": [\n",
1009
+ " \"rec1eFSEpR5EWjdLK\"\n",
1010
+ " ],\n",
1011
+ " \"Status\": \"New\",\n",
1012
+ " \"Table\": [\n",
1013
+ " \"day\"\n",
1014
+ " ],\n",
1015
+ " \"Temporal Shape\": [\n",
1016
+ " \"recWkMQsqHF3CzF86\"\n",
1017
+ " ],\n",
1018
+ " \"Theme\": [\n",
1019
+ " \"Atmosphere\",\n",
1020
+ " \"Impacts & adaptation\"\n",
1021
+ " ],\n",
1022
+ " \"Title\": \"mean 2m daily wet bulb globe temperature\",\n",
1023
+ " \"Type\": \"real\"\n",
1024
+ "}\n",
1025
+ "Could not interpret variable: {\n",
1026
+ " \"Atmosphere author team review\": \"Accept\",\n",
1027
+ " \"Atmosphere review comment\": \"Atmosphere team happy to accept variables based on the fix below.\\n\\nThere was a typo in the initial submission of clmodis and cltmodis which had the metadata for the two variables swapped. MZ contacted submitter to confirm this. On confirmation, the variables have been corrected.\",\n",
1028
+ " \"CMIP7 Variable Groups\": \"radiativeforcing_monthly, SO_BGC-cloud_cloudvars_monthly, CFMIP_cosp_extra\",\n",
1029
+ " \"Cell Measures\": [\n",
1030
+ " \"recb1V00ayWZnmm79\"\n",
1031
+ " ],\n",
1032
+ " \"Cell Methods\": [\n",
1033
+ " \"recj82upWagLqGWER\"\n",
1034
+ " ],\n",
1035
+ " \"Compound Name\": \"CFmon.clmodis\",\n",
1036
+ " \"Description\": \"Percentage of total cloud cover in optical depth categories, as seen by the MODIS instrument simulator. Dimensions of tau (optical depth) and cloud-top pressure are the same used by the ISCCP instrument simulator. This is the equivalent MODIS version of the ISCCP _clisccp _variable.\\n\",\n",
1037
+ " \"Extra Dimensions\": [\n",
1038
+ " \"recTnfQ7oouQjzvOa\"\n",
1039
+ " ],\n",
1040
+ " \"Frequency\": [\n",
1041
+ " \"mon\"\n",
1042
+ " ],\n",
1043
+ " \"Modeling Realm\": [\n",
1044
+ " \"atmos\"\n",
1045
+ " ],\n",
1046
+ " \"Physical Parameter\": [\n",
1047
+ " \"recZSVJN5JKGHxTw1\"\n",
1048
+ " ],\n",
1049
+ " \"Processing Note\": \"7 pressure levels x 7 optical depth levels (x latitude x longitude x time). NOTE: please disregard the _Coordinates_ input; it is only to ensure form can be submitted.\\n\",\n",
1050
+ " \"Spatial Shape\": [\n",
1051
+ " \"recLtudL7wadnHVj9\"\n",
1052
+ " ],\n",
1053
+ " \"Status\": \"Under review\",\n",
1054
+ " \"Table\": [\n",
1055
+ " \"CFmon\"\n",
1056
+ " ],\n",
1057
+ " \"Temporal Shape\": [\n",
1058
+ " \"recF1jvxHxPzKHG62\"\n",
1059
+ " ],\n",
1060
+ " \"Theme\": [\n",
1061
+ " \"Atmosphere\"\n",
1062
+ " ],\n",
1063
+ " \"Title\": \"MODIS Cloud Area Fraction\",\n",
1064
+ " \"Type\": \"real\"\n",
1065
+ "}\n",
1066
+ "Could not interpret variable: {\n",
1067
+ " \"CMIP7 Variable Groups\": \"ocean_grid\",\n",
1068
+ " \"Cell Measures\": [\n",
1069
+ " \"rec5XdFZJqmV9cmq8\"\n",
1070
+ " ],\n",
1071
+ " \"Cell Methods\": [\n",
1072
+ " \"reccn8RUyCIT0DtYs\"\n",
1073
+ " ],\n",
1074
+ " \"Compound Name\": \"Omon.thkcelluo\",\n",
1075
+ " \"Description\": \"The time varying thickness of the gridboxes computed on the u-points\\n\",\n",
1076
+ " \"Frequency\": [\n",
1077
+ " \"mon\"\n",
1078
+ " ],\n",
1079
+ " \"Modeling Realm\": [\n",
1080
+ " \"ocean\"\n",
1081
+ " ],\n",
1082
+ " \"Ocean & sea-ice author team review\": \"In progress\",\n",
1083
+ " \"Physical Parameter\": [\n",
1084
+ " \"recC6iz1hfQYnsGHe\"\n",
1085
+ " ],\n",
1086
+ " \"Spatial Shape\": [\n",
1087
+ " \"rec1eFSEpR5EWjdLK\"\n",
1088
+ " ],\n",
1089
+ " \"Status\": \"Under review\",\n",
1090
+ " \"Table\": [\n",
1091
+ " \"Omon\"\n",
1092
+ " ],\n",
1093
+ " \"Temporal Shape\": [\n",
1094
+ " \"recWkMQsqHF3CzF86\"\n",
1095
+ " ],\n",
1096
+ " \"Theme\": [\n",
1097
+ " \"Ocean & sea-ice\"\n",
1098
+ " ],\n",
1099
+ " \"Title\": \"Time Varying Gridbox thickness at u-points\",\n",
1100
+ " \"Type\": \"real\"\n",
1101
+ "}\n",
1102
+ "Could not interpret variable: {\n",
1103
+ " \"CMIP7 Variable Groups\": \"fish_add_mon\",\n",
1104
+ " \"Cell Measures\": [\n",
1105
+ " \"recdWlLVgWuRs0LGa\"\n",
1106
+ " ],\n",
1107
+ " \"Cell Methods\": [\n",
1108
+ " \"recikI5axFizPaxLg\"\n",
1109
+ " ],\n",
1110
+ " \"Comments\": [\n",
1111
+ " \"recehmU1JOUbk9KQg\"\n",
1112
+ " ],\n",
1113
+ " \"Compound Name\": \"Emon.ppalg\",\n",
1114
+ " \"Description\": \"**algal production**\\n\",\n",
1115
+ " \"Frequency\": [\n",
1116
+ " \"mon\"\n",
1117
+ " ],\n",
1118
+ " \"Modeling Realm\": [\n",
1119
+ " \"ocnBgchem\"\n",
1120
+ " ],\n",
1121
+ " \"Physical Parameter\": [\n",
1122
+ " \"rechUnfVBQnCnjr6t\"\n",
1123
+ " ],\n",
1124
+ " \"Spatial Shape\": [\n",
1125
+ " \"rec1eFSEpR5EWjdLK\"\n",
1126
+ " ],\n",
1127
+ " \"Status\": \"New\",\n",
1128
+ " \"Table\": [\n",
1129
+ " \"Emon\"\n",
1130
+ " ],\n",
1131
+ " \"Temporal Shape\": [\n",
1132
+ " \"recF1jvxHxPzKHG62\"\n",
1133
+ " ],\n",
1134
+ " \"Theme\": [\n",
1135
+ " \"Impacts & adaptation\"\n",
1136
+ " ],\n",
1137
+ " \"Title\": \"algal production\",\n",
1138
+ " \"Type\": \"real\"\n",
1139
+ "}\n",
1140
+ "Could not interpret variable: {\n",
1141
+ " \"Cell Measures\": [\n",
1142
+ " \"recdWlLVgWuRs0LGa\"\n",
1143
+ " ],\n",
1144
+ " \"Cell Methods\": [\n",
1145
+ " \"recikI5axFizPaxLg\"\n",
1146
+ " ],\n",
1147
+ " \"Compound Name\": \"Oday.phycnano\",\n",
1148
+ " \"Description\": \"Carbon concentration of nanophytoplankton\\n\",\n",
1149
+ " \"Frequency\": [\n",
1150
+ " \"day\"\n",
1151
+ " ],\n",
1152
+ " \"Modeling Realm\": [\n",
1153
+ " \"ocnBgchem\"\n",
1154
+ " ],\n",
1155
+ " \"Physical Parameter\": [\n",
1156
+ " \"recVHnHKSjhtCD3wT\"\n",
1157
+ " ],\n",
1158
+ " \"Processing Note\": \"Analogous to Oday.phyc\\n\",\n",
1159
+ " \"Spatial Shape\": [\n",
1160
+ " \"rec1eFSEpR5EWjdLK\"\n",
1161
+ " ],\n",
1162
+ " \"Status\": \"New\",\n",
1163
+ " \"Table\": [\n",
1164
+ " \"Oday\"\n",
1165
+ " ],\n",
1166
+ " \"Temporal Shape\": [\n",
1167
+ " \"recF1jvxHxPzKHG62\"\n",
1168
+ " ],\n",
1169
+ " \"Theme\": [\n",
1170
+ " \"Ocean & sea-ice\"\n",
1171
+ " ],\n",
1172
+ " \"Title\": \"Carbon concentration of nanophytoplankton\",\n",
1173
+ " \"Type\": \"real\"\n",
1174
+ "}\n",
1175
+ "Could not interpret variable: {\n",
1176
+ " \"Atmosphere author team review\": \"In progress\",\n",
1177
+ " \"CMIP7 Variable Groups\": \"aerchemmip_2d_monthly\",\n",
1178
+ " \"Cell Measures\": [\n",
1179
+ " \"recb1V00ayWZnmm79\"\n",
1180
+ " ],\n",
1181
+ " \"Cell Methods\": [\n",
1182
+ " \"recikI5axFizPaxLg\"\n",
1183
+ " ],\n",
1184
+ " \"Compound Name\": \"AERmon.abs550no3\",\n",
1185
+ " \"Description\": \"This is the nitrate aerosol optical depth at 550nm due to absorption\\n\",\n",
1186
+ " \"Frequency\": [\n",
1187
+ " \"mon\"\n",
1188
+ " ],\n",
1189
+ " \"Modeling Realm\": [\n",
1190
+ " \"aerosol\"\n",
1191
+ " ],\n",
1192
+ " \"Physical Parameter\": [\n",
1193
+ " \"recFHlivr1HHc202y\"\n",
1194
+ " ],\n",
1195
+ " \"Spatial Shape\": [\n",
1196
+ " \"rec1eFSEpR5EWjdLK\"\n",
1197
+ " ],\n",
1198
+ " \"Status\": \"Under review\",\n",
1199
+ " \"Table\": [\n",
1200
+ " \"AERmon\"\n",
1201
+ " ],\n",
1202
+ " \"Temporal Shape\": [\n",
1203
+ " \"recF1jvxHxPzKHG62\"\n",
1204
+ " ],\n",
1205
+ " \"Theme\": [\n",
1206
+ " \"Atmosphere\"\n",
1207
+ " ],\n",
1208
+ " \"Title\": \"nitrate aaod@550nm\",\n",
1209
+ " \"Type\": \"real\"\n",
1210
+ "}\n",
1211
+ "Could not interpret variable: {\n",
1212
+ " \"Atmosphere author team review\": \"In progress\",\n",
1213
+ " \"CMIP7 Variable Groups\": \"baseline_daily\",\n",
1214
+ " \"Cell Measures\": [\n",
1215
+ " \"recb1V00ayWZnmm79\"\n",
1216
+ " ],\n",
1217
+ " \"Cell Methods\": [\n",
1218
+ " \"recikI5axFizPaxLg\"\n",
1219
+ " ],\n",
1220
+ " \"Compound Name\": \"day.noaahi2mmax\",\n",
1221
+ " \"Description\": \"max 2m daily NOAA heat index\\n\",\n",
1222
+ " \"Frequency\": [\n",
1223
+ " \"day\"\n",
1224
+ " ],\n",
1225
+ " \"Impacts & adaptation author team review\": \"In progress\",\n",
1226
+ " \"Modeling Realm\": [\n",
1227
+ " \"atmos\"\n",
1228
+ " ],\n",
1229
+ " \"Physical Parameter\": [\n",
1230
+ " \"recI7VgF6Sy7RpHCN\"\n",
1231
+ " ],\n",
1232
+ " \"Spatial Shape\": [\n",
1233
+ " \"rec1eFSEpR5EWjdLK\"\n",
1234
+ " ],\n",
1235
+ " \"Status\": \"New\",\n",
1236
+ " \"Table\": [\n",
1237
+ " \"day\"\n",
1238
+ " ],\n",
1239
+ " \"Temporal Shape\": [\n",
1240
+ " \"recWkMQsqHF3CzF86\"\n",
1241
+ " ],\n",
1242
+ " \"Theme\": [\n",
1243
+ " \"Atmosphere\",\n",
1244
+ " \"Impacts & adaptation\"\n",
1245
+ " ],\n",
1246
+ " \"Title\": \"max 2m daily NOAA heat index\",\n",
1247
+ " \"Type\": \"real\"\n",
1248
+ "}\n",
1249
+ "Could not interpret variable: {\n",
1250
+ " \"CMIP7 Variable Groups\": \"fishmip_marine_monthly\",\n",
1251
+ " \"Cell Measures\": [\n",
1252
+ " \"recdWlLVgWuRs0LGa\"\n",
1253
+ " ],\n",
1254
+ " \"Cell Methods\": [\n",
1255
+ " \"rec7GGssqyuofwgXh\"\n",
1256
+ " ],\n",
1257
+ " \"Compound Name\": \"Omon.intppnano\",\n",
1258
+ " \"Description\": \"Vertically integrated total primary (organic carbon) production by nanophytoplankton.\\n\\n\",\n",
1259
+ " \"Frequency\": [\n",
1260
+ " \"mon\"\n",
1261
+ " ],\n",
1262
+ " \"Modeling Realm\": [\n",
1263
+ " \"ocnBgchem\"\n",
1264
+ " ],\n",
1265
+ " \"Physical Parameter\": [\n",
1266
+ " \"recWzTJ3owJA96DNT\"\n",
1267
+ " ],\n",
1268
+ " \"Spatial Shape\": [\n",
1269
+ " \"rec1eFSEpR5EWjdLK\"\n",
1270
+ " ],\n",
1271
+ " \"Status\": \"New\",\n",
1272
+ " \"Table\": [\n",
1273
+ " \"Omon\"\n",
1274
+ " ],\n",
1275
+ " \"Temporal Shape\": [\n",
1276
+ " \"recF1jvxHxPzKHG62\"\n",
1277
+ " ],\n",
1278
+ " \"Theme\": [\n",
1279
+ " \"Earth System\",\n",
1280
+ " \"Ocean & sea-ice\"\n",
1281
+ " ],\n",
1282
+ " \"Title\": \"Net Primary Organic Carbon Production by Nanophytoplankton\",\n",
1283
+ " \"Type\": \"real\"\n",
1284
+ "}\n",
1285
+ "Could not interpret variable: {\n",
1286
+ " \"Cell Measures\": [\n",
1287
+ " \"rec5XdFZJqmV9cmq8\"\n",
1288
+ " ],\n",
1289
+ " \"Cell Methods\": [\n",
1290
+ " \"reccn8RUyCIT0DtYs\"\n",
1291
+ " ],\n",
1292
+ " \"Compound Name\": \"Oday.fstrans\",\n",
1293
+ " \"Description\": \"The net volume transport through the Florida Strait at 26.5N. The volume transport between Florida Coast (~) and Grand Bahama (~)\\n\",\n",
1294
+ " \"Extra Dimensions\": [\n",
1295
+ " \"recB6tcydInc6D7gf\"\n",
1296
+ " ],\n",
1297
+ " \"Frequency\": [\n",
1298
+ " \"day\"\n",
1299
+ " ],\n",
1300
+ " \"Modeling Realm\": [\n",
1301
+ " \"ocean\"\n",
1302
+ " ],\n",
1303
+ " \"Ocean & sea-ice author team review\": \"In progress\",\n",
1304
+ " \"Physical Parameter\": [\n",
1305
+ " \"recDnQ9hItTdoyqej\"\n",
1306
+ " ],\n",
1307
+ " \"Processing Note\": \"Integrate meridional velocity across longitude and depth, ideally from coast to coast, if there is no coast on the East integrate to (). Make sure to output in Sv (10^6 m^3/s). Include the bolus (parameterized) transport in computation if available.\\n\",\n",
1308
+ " \"Spatial Shape\": [\n",
1309
+ " \"recVqSrjNkJ9AnYd2\"\n",
1310
+ " ],\n",
1311
+ " \"Status\": \"Under review\",\n",
1312
+ " \"Table\": [\n",
1313
+ " \"Oday\"\n",
1314
+ " ],\n",
1315
+ " \"Temporal Shape\": [\n",
1316
+ " \"recWkMQsqHF3CzF86\"\n",
1317
+ " ],\n",
1318
+ " \"Theme\": [\n",
1319
+ " \"Ocean & sea-ice\"\n",
1320
+ " ],\n",
1321
+ " \"Title\": \"Florida Strait Volume Transport\",\n",
1322
+ " \"Type\": \"real\"\n",
1323
+ "}\n",
1324
+ "Could not interpret variable: {\n",
1325
+ " \"Atmosphere author team review\": \"In progress\",\n",
1326
+ " \"CMIP7 Variable Groups\": \"aerchemmip_3d_monthly\",\n",
1327
+ " \"Cell Measures\": [\n",
1328
+ " \"recb1V00ayWZnmm79\"\n",
1329
+ " ],\n",
1330
+ " \"Cell Methods\": [\n",
1331
+ " \"recikI5axFizPaxLg\"\n",
1332
+ " ],\n",
1333
+ " \"Compound Name\": \"AERmon.chegph2oo1d\",\n",
1334
+ " \"Description\": \"This is the primary production rate of the hydroxy (OH) radical via H2O+O1D\\n\",\n",
1335
+ " \"Frequency\": [\n",
1336
+ " \"mon\"\n",
1337
+ " ],\n",
1338
+ " \"Modeling Realm\": [\n",
1339
+ " \"aerosol\"\n",
1340
+ " ],\n",
1341
+ " \"Physical Parameter\": [\n",
1342
+ " \"recBOkQZn7mIX3VKG\"\n",
1343
+ " ],\n",
1344
+ " \"Spatial Shape\": [\n",
1345
+ " \"rece7NrwMj9ACYd39\"\n",
1346
+ " ],\n",
1347
+ " \"Status\": \"Under review\",\n",
1348
+ " \"Table\": [\n",
1349
+ " \"AERmon\"\n",
1350
+ " ],\n",
1351
+ " \"Temporal Shape\": [\n",
1352
+ " \"recF1jvxHxPzKHG62\"\n",
1353
+ " ],\n",
1354
+ " \"Theme\": [\n",
1355
+ " \"Atmosphere\"\n",
1356
+ " ],\n",
1357
+ " \"Title\": \"Primary production of OH (H2O+O1D) \",\n",
1358
+ " \"Type\": \"real\"\n",
1359
+ "}\n",
1360
+ "Could not interpret variable: {\n",
1361
+ " \"CMIP7 Variable Groups\": \"seaice_bgc_monthly\",\n",
1362
+ " \"Cell Measures\": [\n",
1363
+ " \"recdWlLVgWuRs0LGa\"\n",
1364
+ " ],\n",
1365
+ " \"Cell Methods\": [\n",
1366
+ " \"recikI5axFizPaxLg\"\n",
1367
+ " ],\n",
1368
+ " \"Compound Name\": \"SImon.sino3\",\n",
1369
+ " \"Description\": \"Mole amount means moles of substance per unit area\\n\",\n",
1370
+ " \"Frequency\": [\n",
1371
+ " \"mon\"\n",
1372
+ " ],\n",
1373
+ " \"Modeling Realm\": [\n",
1374
+ " \"ocnBgchem\",\n",
1375
+ " \"seaIce\"\n",
1376
+ " ],\n",
1377
+ " \"Ocean & sea-ice author team review\": \"In progress\",\n",
1378
+ " \"Physical Parameter\": [\n",
1379
+ " \"recjAMq0Huj2o7F2L\"\n",
1380
+ " ],\n",
1381
+ " \"Spatial Shape\": [\n",
1382
+ " \"rec1eFSEpR5EWjdLK\"\n",
1383
+ " ],\n",
1384
+ " \"Status\": \"New\",\n",
1385
+ " \"Table\": [\n",
1386
+ " \"SImon\"\n",
1387
+ " ],\n",
1388
+ " \"Temporal Shape\": [\n",
1389
+ " \"recF1jvxHxPzKHG62\"\n",
1390
+ " ],\n",
1391
+ " \"Theme\": [\n",
1392
+ " \"Ocean & sea-ice\"\n",
1393
+ " ],\n",
1394
+ " \"Title\": \"Dissolved Nitrate Amount in Sea Ice\",\n",
1395
+ " \"Type\": \"real\"\n",
1396
+ "}\n",
1397
+ "Could not interpret variable: {\n",
1398
+ " \"Atmosphere author team review\": \"In progress\",\n",
1399
+ " \"CMIP7 Variable Groups\": \"aerchemmip_2d_monthly, FireMIP_monthly\",\n",
1400
+ " \"Cell Measures\": [\n",
1401
+ " \"recb1V00ayWZnmm79\"\n",
1402
+ " ],\n",
1403
+ " \"Cell Methods\": [\n",
1404
+ " \"recikI5axFizPaxLg\"\n",
1405
+ " ],\n",
1406
+ " \"Compound Name\": \"AERmon.emibbvoc\",\n",
1407
+ " \"Description\": \"This is the total emission rate of non-methane volatile organic compounds (NMVOCs) from all biomass burning (natural and anthropogenic)\\n\",\n",
1408
+ " \"Frequency\": [\n",
1409
+ " \"mon\"\n",
1410
+ " ],\n",
1411
+ " \"Modeling Realm\": [\n",
1412
+ " \"aerosol\"\n",
1413
+ " ],\n",
1414
+ " \"Physical Parameter\": [\n",
1415
+ " \"rec3TL53tG42eq5ab\"\n",
1416
+ " ],\n",
1417
+ " \"Spatial Shape\": [\n",
1418
+ " \"rec1eFSEpR5EWjdLK\"\n",
1419
+ " ],\n",
1420
+ " \"Status\": \"Under review\",\n",
1421
+ " \"Table\": [\n",
1422
+ " \"AERmon\"\n",
1423
+ " ],\n",
1424
+ " \"Temporal Shape\": [\n",
1425
+ " \"recF1jvxHxPzKHG62\"\n",
1426
+ " ],\n",
1427
+ " \"Theme\": [\n",
1428
+ " \"Atmosphere\"\n",
1429
+ " ],\n",
1430
+ " \"Title\": \"total emission rate of NMVOC from all biomass burning\",\n",
1431
+ " \"Type\": \"real\"\n",
1432
+ "}\n",
1433
+ "Could not interpret variable: {\n",
1434
+ " \"Atmosphere author team review\": \"In progress\",\n",
1435
+ " \"CMIP7 Variable Groups\": \"aerchemmip_2d_monthly, land_ch4_fluxes\",\n",
1436
+ " \"Cell Measures\": [\n",
1437
+ " \"recb1V00ayWZnmm79\"\n",
1438
+ " ],\n",
1439
+ " \"Cell Methods\": [\n",
1440
+ " \"recikI5axFizPaxLg\"\n",
1441
+ " ],\n",
1442
+ " \"Compound Name\": \"AERmon.ch4losssoil\",\n",
1443
+ " \"Description\": \"This is the loss rate of methane from the atmosphere due to soil sink\\n\",\n",
1444
+ " \"Frequency\": [\n",
1445
+ " \"mon\"\n",
1446
+ " ],\n",
1447
+ " \"Modeling Realm\": [\n",
1448
+ " \"aerosol\"\n",
1449
+ " ],\n",
1450
+ " \"Physical Parameter\": [\n",
1451
+ " \"rec5G3LsgLrbqhh1K\"\n",
1452
+ " ],\n",
1453
+ " \"Spatial Shape\": [\n",
1454
+ " \"rec1eFSEpR5EWjdLK\"\n",
1455
+ " ],\n",
1456
+ " \"Status\": \"Under review\",\n",
1457
+ " \"Table\": [\n",
1458
+ " \"AERmon\"\n",
1459
+ " ],\n",
1460
+ " \"Temporal Shape\": [\n",
1461
+ " \"recF1jvxHxPzKHG62\"\n",
1462
+ " ],\n",
1463
+ " \"Theme\": [\n",
1464
+ " \"Atmosphere\"\n",
1465
+ " ],\n",
1466
+ " \"Title\": \"loss of methane from the atmosphere due to biological consumption in the soil\",\n",
1467
+ " \"Type\": \"real\"\n",
1468
+ "}\n",
1469
+ "Could not interpret variable: {\n",
1470
+ " \"Atmosphere author team review\": \"In progress\",\n",
1471
+ " \"CMIP7 Variable Groups\": \"SO_BGC-cloud_atmos_composition_monthly, aerchemmip_3d_monthly\",\n",
1472
+ " \"Cell Measures\": [\n",
1473
+ " \"recb1V00ayWZnmm79\"\n",
1474
+ " ],\n",
1475
+ " \"Cell Methods\": [\n",
1476
+ " \"recikI5axFizPaxLg\"\n",
1477
+ " ],\n",
1478
+ " \"Compound Name\": \"AERmon.ccn1\",\n",
1479
+ " \"Description\": \"This is the concentration of cloud condensation nuclei (CCN) at 1.0 percent supersaturation, based on aerosol chemical composition and size\\n\",\n",
1480
+ " \"Frequency\": [\n",
1481
+ " \"mon\"\n",
1482
+ " ],\n",
1483
+ " \"Modeling Realm\": [\n",
1484
+ " \"aerosol\"\n",
1485
+ " ],\n",
1486
+ " \"Physical Parameter\": [\n",
1487
+ " \"rec4e562YytkxfnoV\"\n",
1488
+ " ],\n",
1489
+ " \"Spatial Shape\": [\n",
1490
+ " \"rece7NrwMj9ACYd39\"\n",
1491
+ " ],\n",
1492
+ " \"Status\": \"Under review\",\n",
1493
+ " \"Table\": [\n",
1494
+ " \"AERmon\"\n",
1495
+ " ],\n",
1496
+ " \"Temporal Shape\": [\n",
1497
+ " \"recF1jvxHxPzKHG62\"\n",
1498
+ " ],\n",
1499
+ " \"Theme\": [\n",
1500
+ " \"Atmosphere\"\n",
1501
+ " ],\n",
1502
+ " \"Title\": \"CCN concentration at 1.0 percent supersaturation\",\n",
1503
+ " \"Type\": \"real\"\n",
1504
+ "}\n",
1505
+ "Could not interpret variable: {\n",
1506
+ " \"Atmosphere author team review\": \"In progress\",\n",
1507
+ " \"Atmosphere review comment\": \"Atmosphere team happy to accept variable.\\n\\nMoved back to in progress, as it has been noted that there are duplicate compound names. Could suggest to the author to submit new physical parameters to avoid this.\\n\\nNOTE - need to add IWP as an extra dimension\",\n",
1508
+ " \"CMIP7 Variable Groups\": \"CFMIP_cosp_extra\",\n",
1509
+ " \"Cell Measures\": [\n",
1510
+ " \"recb1V00ayWZnmm79\"\n",
1511
+ " ],\n",
1512
+ " \"Cell Methods\": [\n",
1513
+ " \"recikI5axFizPaxLg\"\n",
1514
+ " ],\n",
1515
+ " \"Comments\": [\n",
1516
+ " \"rec3DjzGWgwHAOvvd\"\n",
1517
+ " ],\n",
1518
+ " \"Compound Name\": \"CFmon.clmodisice_dup\",\n",
1519
+ " \"Description\": \"Percentage ice-cloud cover as seen by the MODIS instrument simulator. Dimensions of cloud IWP (cloud ice water path) and r\\\\_eff (effective droplet size).\\n\",\n",
1520
+ " \"Extra Dimensions\": [\n",
1521
+ " \"rectlPDGF4ZuLefL4\"\n",
1522
+ " ],\n",
1523
+ " \"Frequency\": [\n",
1524
+ " \"mon\"\n",
1525
+ " ],\n",
1526
+ " \"Modeling Realm\": [\n",
1527
+ " \"atmos\"\n",
1528
+ " ],\n",
1529
+ " \"Physical Parameter\": [\n",
1530
+ " \"recXC6GsxxtAK9F01\"\n",
1531
+ " ],\n",
1532
+ " \"Processing Note\": \"7 IWP levels x 6 effective radius levels. NOTE: \\\"p1000\\\" is chosen as a coordinate to enable form submission and should be ignored. An extra dimension of IWP should also be added to this request (although it is not an option in the form). Metric is further described in [Pincus 2023](https://essd.copernicus.org/articles/15/2483/2023/essd-15-2483-2023-discussion.html).\\n\\n[BD removed the p1000 coordinate on 4/9/24]\\n\",\n",
1533
+ " \"Spatial Shape\": [\n",
1534
+ " \"rec1eFSEpR5EWjdLK\"\n",
1535
+ " ],\n",
1536
+ " \"Status\": \"Under review\",\n",
1537
+ " \"Table\": [\n",
1538
+ " \"CFmon\"\n",
1539
+ " ],\n",
1540
+ " \"Temporal Shape\": [\n",
1541
+ " \"recF1jvxHxPzKHG62\"\n",
1542
+ " ],\n",
1543
+ " \"Theme\": [\n",
1544
+ " \"Atmosphere\"\n",
1545
+ " ],\n",
1546
+ " \"Title\": \"MODIS Ice Topped Cloud Area Fraction\",\n",
1547
+ " \"Type\": \"real\"\n",
1548
+ "}\n",
1549
+ "Could not interpret variable: {\n",
1550
+ " \"Atmosphere author team review\": \"In progress\",\n",
1551
+ " \"CMIP7 Variable Groups\": \"baseline_daily\",\n",
1552
+ " \"Cell Measures\": [\n",
1553
+ " \"recb1V00ayWZnmm79\"\n",
1554
+ " ],\n",
1555
+ " \"Cell Methods\": [\n",
1556
+ " \"recikI5axFizPaxLg\"\n",
1557
+ " ],\n",
1558
+ " \"Compound Name\": \"day.wbgt2mmax\",\n",
1559
+ " \"Description\": \"**mean 2m daily wet bulb globe temperature**\\n\",\n",
1560
+ " \"Frequency\": [\n",
1561
+ " \"day\"\n",
1562
+ " ],\n",
1563
+ " \"Impacts & adaptation author team review\": \"In progress\",\n",
1564
+ " \"Modeling Realm\": [\n",
1565
+ " \"atmos\"\n",
1566
+ " ],\n",
1567
+ " \"Physical Parameter\": [\n",
1568
+ " \"recUsfmiyuPJjs9eV\"\n",
1569
+ " ],\n",
1570
+ " \"Spatial Shape\": [\n",
1571
+ " \"rec1eFSEpR5EWjdLK\"\n",
1572
+ " ],\n",
1573
+ " \"Status\": \"New\",\n",
1574
+ " \"Table\": [\n",
1575
+ " \"day\"\n",
1576
+ " ],\n",
1577
+ " \"Temporal Shape\": [\n",
1578
+ " \"recWkMQsqHF3CzF86\"\n",
1579
+ " ],\n",
1580
+ " \"Theme\": [\n",
1581
+ " \"Atmosphere\",\n",
1582
+ " \"Impacts & adaptation\"\n",
1583
+ " ],\n",
1584
+ " \"Title\": \"mean 2m daily wet bulb globe temperature\",\n",
1585
+ " \"Type\": \"real\"\n",
1586
+ "}\n",
1587
+ "Could not interpret variable: {\n",
1588
+ " \"Atmosphere author team review\": \"In progress\",\n",
1589
+ " \"CMIP7 Variable Groups\": \"aerchemmip_2d_monthly\",\n",
1590
+ " \"Cell Measures\": [\n",
1591
+ " \"recb1V00ayWZnmm79\"\n",
1592
+ " ],\n",
1593
+ " \"Cell Methods\": [\n",
1594
+ " \"recikI5axFizPaxLg\"\n",
1595
+ " ],\n",
1596
+ " \"Compound Name\": \"AERmon.emibbnh3\",\n",
1597
+ " \"Description\": \"This is the total emission rate of ammonia (NH3) into the atmosphere from all biomass burning (natural and anthropogenic)\\n\",\n",
1598
+ " \"Frequency\": [\n",
1599
+ " \"mon\"\n",
1600
+ " ],\n",
1601
+ " \"Modeling Realm\": [\n",
1602
+ " \"aerosol\"\n",
1603
+ " ],\n",
1604
+ " \"Physical Parameter\": [\n",
1605
+ " \"recQD9z8q72Lg8zUK\"\n",
1606
+ " ],\n",
1607
+ " \"Spatial Shape\": [\n",
1608
+ " \"rec1eFSEpR5EWjdLK\"\n",
1609
+ " ],\n",
1610
+ " \"Status\": \"Under review\",\n",
1611
+ " \"Table\": [\n",
1612
+ " \"AERmon\"\n",
1613
+ " ],\n",
1614
+ " \"Temporal Shape\": [\n",
1615
+ " \"recF1jvxHxPzKHG62\"\n",
1616
+ " ],\n",
1617
+ " \"Theme\": [\n",
1618
+ " \"Atmosphere\"\n",
1619
+ " ],\n",
1620
+ " \"Title\": \"total emission rate of NH3 from all biomass burning\",\n",
1621
+ " \"Type\": \"real\"\n",
1622
+ "}\n",
1623
+ "Could not interpret variable: {\n",
1624
+ " \"CMIP7 Variable Groups\": \"ocean_grid\",\n",
1625
+ " \"Cell Measures\": [\n",
1626
+ " \"rec5XdFZJqmV9cmq8\"\n",
1627
+ " ],\n",
1628
+ " \"Cell Methods\": [\n",
1629
+ " \"reccn8RUyCIT0DtYs\"\n",
1630
+ " ],\n",
1631
+ " \"Compound Name\": \"Ofx.dyto\",\n",
1632
+ " \"Description\": \"The width of the ocean model gridbox in at the t-point (dy)\\n\",\n",
1633
+ " \"Frequency\": [\n",
1634
+ " \"fx\"\n",
1635
+ " ],\n",
1636
+ " \"Modeling Realm\": [\n",
1637
+ " \"ocean\"\n",
1638
+ " ],\n",
1639
+ " \"Ocean & sea-ice author team review\": \"In progress\",\n",
1640
+ " \"Physical Parameter\": [\n",
1641
+ " \"recmI4PRlSiGwMKbw\"\n",
1642
+ " ],\n",
1643
+ " \"Spatial Shape\": [\n",
1644
+ " \"rec1eFSEpR5EWjdLK\"\n",
1645
+ " ],\n",
1646
+ " \"Status\": \"Under review\",\n",
1647
+ " \"Table\": [\n",
1648
+ " \"Ofx\"\n",
1649
+ " ],\n",
1650
+ " \"Temporal Shape\": [\n",
1651
+ " \"recWkMQsqHF3CzF86\"\n",
1652
+ " ],\n",
1653
+ " \"Theme\": [\n",
1654
+ " \"Ocean & sea-ice\"\n",
1655
+ " ],\n",
1656
+ " \"Title\": \"Northward gridbox length at t points\",\n",
1657
+ " \"Type\": \"real\"\n",
1658
+ "}\n",
1659
+ "Could not interpret variable: {\n",
1660
+ " \"CMIP7 Variable Groups\": \"seaice_bgc_daily\",\n",
1661
+ " \"Cell Measures\": [\n",
1662
+ " \"recdWlLVgWuRs0LGa\"\n",
1663
+ " ],\n",
1664
+ " \"Cell Methods\": [\n",
1665
+ " \"recikI5axFizPaxLg\"\n",
1666
+ " ],\n",
1667
+ " \"Compound Name\": \"SIday.sic\",\n",
1668
+ " \"Description\": \"Sum of ice algal carbon component content\\n\",\n",
1669
+ " \"Frequency\": [\n",
1670
+ " \"day\"\n",
1671
+ " ],\n",
1672
+ " \"Modeling Realm\": [\n",
1673
+ " \"ocnBgchem\",\n",
1674
+ " \"seaIce\"\n",
1675
+ " ],\n",
1676
+ " \"Ocean & sea-ice author team review\": \"In progress\",\n",
1677
+ " \"Physical Parameter\": [\n",
1678
+ " \"recbqn1KTsygVUaJm\"\n",
1679
+ " ],\n",
1680
+ " \"Spatial Shape\": [\n",
1681
+ " \"rec1eFSEpR5EWjdLK\"\n",
1682
+ " ],\n",
1683
+ " \"Status\": \"New\",\n",
1684
+ " \"Table\": [\n",
1685
+ " \"SIday\"\n",
1686
+ " ],\n",
1687
+ " \"Temporal Shape\": [\n",
1688
+ " \"recF1jvxHxPzKHG62\"\n",
1689
+ " ],\n",
1690
+ " \"Theme\": [\n",
1691
+ " \"Ocean & sea-ice\"\n",
1692
+ " ],\n",
1693
+ " \"Title\": \"Total Ice Algal Carbon Amount\",\n",
1694
+ " \"Type\": \"real\"\n",
1695
+ "}\n",
1696
+ "Could not interpret variable: {\n",
1697
+ " \"CMIP7 Variable Groups\": \"seaice_bgc_monthly\",\n",
1698
+ " \"Cell Measures\": [\n",
1699
+ " \"recdWlLVgWuRs0LGa\"\n",
1700
+ " ],\n",
1701
+ " \"Cell Methods\": [\n",
1702
+ " \"recikI5axFizPaxLg\"\n",
1703
+ " ],\n",
1704
+ " \"Compound Name\": \"SImon.sichl\",\n",
1705
+ " \"Description\": \"Sum of chlorophyll from all ice algal group concentrations\\n\",\n",
1706
+ " \"Frequency\": [\n",
1707
+ " \"mon\"\n",
1708
+ " ],\n",
1709
+ " \"Modeling Realm\": [\n",
1710
+ " \"ocnBgchem\",\n",
1711
+ " \"seaIce\"\n",
1712
+ " ],\n",
1713
+ " \"Ocean & sea-ice author team review\": \"In progress\",\n",
1714
+ " \"Physical Parameter\": [\n",
1715
+ " \"recDV6V3ZOvB7q4F3\"\n",
1716
+ " ],\n",
1717
+ " \"Spatial Shape\": [\n",
1718
+ " \"rec1eFSEpR5EWjdLK\"\n",
1719
+ " ],\n",
1720
+ " \"Status\": \"New\",\n",
1721
+ " \"Table\": [\n",
1722
+ " \"SImon\"\n",
1723
+ " ],\n",
1724
+ " \"Temporal Shape\": [\n",
1725
+ " \"recF1jvxHxPzKHG62\"\n",
1726
+ " ],\n",
1727
+ " \"Theme\": [\n",
1728
+ " \"Ocean & sea-ice\"\n",
1729
+ " ],\n",
1730
+ " \"Title\": \"Amount of Total Ice Algae Expressed as Chlorophyll in Sea Ice\",\n",
1731
+ " \"Type\": \"real\"\n",
1732
+ "}\n",
1733
+ "Could not interpret variable: {\n",
1734
+ " \"Atmosphere author team review\": \"In progress\",\n",
1735
+ " \"CMIP7 Variable Groups\": \"aerchemmip_2d_monthly\",\n",
1736
+ " \"Cell Measures\": [\n",
1737
+ " \"recb1V00ayWZnmm79\"\n",
1738
+ " ],\n",
1739
+ " \"Cell Methods\": [\n",
1740
+ " \"recikI5axFizPaxLg\"\n",
1741
+ " ],\n",
1742
+ " \"Compound Name\": \"AERmon.rsutch4ref\",\n",
1743
+ " \"Description\": \"This is the outgoing shortwave flux at the top-of-atmosphere for all-sky conditions from a diagnostic call to the radiation scheme with a reference methane field\\n\",\n",
1744
+ " \"Frequency\": [\n",
1745
+ " \"mon\"\n",
1746
+ " ],\n",
1747
+ " \"Modeling Realm\": [\n",
1748
+ " \"aerosol\"\n",
1749
+ " ],\n",
1750
+ " \"Physical Parameter\": [\n",
1751
+ " \"recvTStcCr8HPEHCh\"\n",
1752
+ " ],\n",
1753
+ " \"Spatial Shape\": [\n",
1754
+ " \"rec1eFSEpR5EWjdLK\"\n",
1755
+ " ],\n",
1756
+ " \"Status\": \"Under review\",\n",
1757
+ " \"Table\": [\n",
1758
+ " \"AERmon\"\n",
1759
+ " ],\n",
1760
+ " \"Temporal Shape\": [\n",
1761
+ " \"recF1jvxHxPzKHG62\"\n",
1762
+ " ],\n",
1763
+ " \"Theme\": [\n",
1764
+ " \"Atmosphere\"\n",
1765
+ " ],\n",
1766
+ " \"Title\": \"TOA outgoing shortwave flux assuming reference methane\",\n",
1767
+ " \"Type\": \"real\"\n",
1768
+ "}\n",
1769
+ "Could not interpret variable: {\n",
1770
+ " \"Atmosphere author team review\": \"In progress\",\n",
1771
+ " \"CMIP7 Variable Groups\": \"dynvar_basic\",\n",
1772
+ " \"Cell Measures\": [\n",
1773
+ " \"rec5XdFZJqmV9cmq8\"\n",
1774
+ " ],\n",
1775
+ " \"Cell Methods\": [\n",
1776
+ " \"recj82upWagLqGWER\"\n",
1777
+ " ],\n",
1778
+ " \"Comments\": [\n",
1779
+ " \"recepVFCJ6dtYTW0b\"\n",
1780
+ " ],\n",
1781
+ " \"Compound Name\": \"EdayZ.tauunogw\",\n",
1782
+ " \"Description\": \"Zonal mean vertical wave flux of zonal momentum within the non-orographic GW parameterization.\\n\",\n",
1783
+ " \"Frequency\": [\n",
1784
+ " \"day\"\n",
1785
+ " ],\n",
1786
+ " \"Modeling Realm\": [\n",
1787
+ " \"atmos\"\n",
1788
+ " ],\n",
1789
+ " \"Physical Parameter\": [\n",
1790
+ " \"recudmm973fir1EXS\"\n",
1791
+ " ],\n",
1792
+ " \"Spatial Shape\": [\n",
1793
+ " \"rec3ANEmWx0SvZauH\"\n",
1794
+ " ],\n",
1795
+ " \"Status\": \"Under review\",\n",
1796
+ " \"Table\": [\n",
1797
+ " \"EdayZ\"\n",
1798
+ " ],\n",
1799
+ " \"Temporal Shape\": [\n",
1800
+ " \"recF1jvxHxPzKHG62\"\n",
1801
+ " ],\n",
1802
+ " \"Theme\": [\n",
1803
+ " \"Atmosphere\"\n",
1804
+ " ],\n",
1805
+ " \"Title\": \"Zonal mean westward Reynolds stress from non-orographic gravity wave parameterization \",\n",
1806
+ " \"Type\": \"real\"\n",
1807
+ "}\n",
1808
+ "Could not interpret variable: {\n",
1809
+ " \"CMIP7 Variable Groups\": \"seaice_bgc_daily\",\n",
1810
+ " \"Cell Measures\": [\n",
1811
+ " \"recdWlLVgWuRs0LGa\"\n",
1812
+ " ],\n",
1813
+ " \"Cell Methods\": [\n",
1814
+ " \"recikI5axFizPaxLg\"\n",
1815
+ " ],\n",
1816
+ " \"Compound Name\": \"SIday.sino3\",\n",
1817
+ " \"Description\": \"Mole amount means moles of substance per unit area.\\n\\n\",\n",
1818
+ " \"Frequency\": [\n",
1819
+ " \"day\"\n",
1820
+ " ],\n",
1821
+ " \"Modeling Realm\": [\n",
1822
+ " \"ocnBgchem\",\n",
1823
+ " \"seaIce\"\n",
1824
+ " ],\n",
1825
+ " \"Ocean & sea-ice author team review\": \"In progress\",\n",
1826
+ " \"Physical Parameter\": [\n",
1827
+ " \"recjAMq0Huj2o7F2L\"\n",
1828
+ " ],\n",
1829
+ " \"Spatial Shape\": [\n",
1830
+ " \"rec1eFSEpR5EWjdLK\"\n",
1831
+ " ],\n",
1832
+ " \"Status\": \"New\",\n",
1833
+ " \"Table\": [\n",
1834
+ " \"SIday\"\n",
1835
+ " ],\n",
1836
+ " \"Temporal Shape\": [\n",
1837
+ " \"recF1jvxHxPzKHG62\"\n",
1838
+ " ],\n",
1839
+ " \"Theme\": [\n",
1840
+ " \"Ocean & sea-ice\"\n",
1841
+ " ],\n",
1842
+ " \"Title\": \"Dissolved Nitrate Amount in Sea Ice\",\n",
1843
+ " \"Type\": \"real\"\n",
1844
+ "}\n",
1845
+ "Could not interpret variable: {\n",
1846
+ " \"Atmosphere author team review\": \"In progress\",\n",
1847
+ " \"CMIP7 Variable Groups\": \"SO_BGC-cloud_atmos_composition_monthly, aerchemmip_3d_monthly\",\n",
1848
+ " \"Cell Measures\": [\n",
1849
+ " \"recb1V00ayWZnmm79\"\n",
1850
+ " ],\n",
1851
+ " \"Cell Methods\": [\n",
1852
+ " \"recikI5axFizPaxLg\"\n",
1853
+ " ],\n",
1854
+ " \"Compound Name\": \"AERmon.ccn02\",\n",
1855
+ " \"Description\": \"This is the concentration of cloud condensation nuclei (CCN) at 0.2% supersaturation, based on aerosol chemical composition and size\\n\",\n",
1856
+ " \"Frequency\": [\n",
1857
+ " \"mon\"\n",
1858
+ " ],\n",
1859
+ " \"Modeling Realm\": [\n",
1860
+ " \"aerosol\"\n",
1861
+ " ],\n",
1862
+ " \"Physical Parameter\": [\n",
1863
+ " \"recL4Ah93yLq3g4op\"\n",
1864
+ " ],\n",
1865
+ " \"Spatial Shape\": [\n",
1866
+ " \"rece7NrwMj9ACYd39\"\n",
1867
+ " ],\n",
1868
+ " \"Status\": \"Under review\",\n",
1869
+ " \"Table\": [\n",
1870
+ " \"AERmon\"\n",
1871
+ " ],\n",
1872
+ " \"Temporal Shape\": [\n",
1873
+ " \"recF1jvxHxPzKHG62\"\n",
1874
+ " ],\n",
1875
+ " \"Theme\": [\n",
1876
+ " \"Atmosphere\"\n",
1877
+ " ],\n",
1878
+ " \"Title\": \"CCN concentration at 0.2 percent supersaturation\",\n",
1879
+ " \"Type\": \"real\"\n",
1880
+ "}\n",
1881
+ "Could not interpret variable: {\n",
1882
+ " \"Atmosphere author team review\": \"In progress\",\n",
1883
+ " \"Atmosphere review comment\": \"Atmosphere team happy to accept variable.\\n\\nMoved back to in progress, as it has been noted that there are duplicate compound names. Could suggest to the author to submit new physical parameters to avoid this.\",\n",
1884
+ " \"CMIP7 Variable Groups\": \"radiativeforcing_monthly, SO_BGC-cloud_cloudvars_monthly, CFMIP_cosp_extra\",\n",
1885
+ " \"Cell Measures\": [\n",
1886
+ " \"recb1V00ayWZnmm79\"\n",
1887
+ " ],\n",
1888
+ " \"Cell Methods\": [\n",
1889
+ " \"recj82upWagLqGWER\"\n",
1890
+ " ],\n",
1891
+ " \"Compound Name\": \"CFmon.clmodisice\",\n",
1892
+ " \"Description\": \"Percentage ice-cloud cover in optical depth categories, as seen by the MODIS instrument simulator. Dimensions of tau (optical depth) and cloud-top pressure are the same as used by clisccp output from the ISCCP satellite simulator. \\n\",\n",
1893
+ " \"Extra Dimensions\": [\n",
1894
+ " \"recTnfQ7oouQjzvOa\"\n",
1895
+ " ],\n",
1896
+ " \"Frequency\": [\n",
1897
+ " \"mon\"\n",
1898
+ " ],\n",
1899
+ " \"Modeling Realm\": [\n",
1900
+ " \"atmos\"\n",
1901
+ " ],\n",
1902
+ " \"Physical Parameter\": [\n",
1903
+ " \"recXC6GsxxtAK9F01\"\n",
1904
+ " ],\n",
1905
+ " \"Processing Note\": \"7 pressure levels x 7 optical depth levels. THIS VARIABLE DOES NOT HAVE AN EXTRA COORDINATE - \\\"p1000\\\" is chosen to allow for form submission. [BD removed the p1000 coordinate on 4/9/24]\\n\",\n",
1906
+ " \"Spatial Shape\": [\n",
1907
+ " \"recLtudL7wadnHVj9\"\n",
1908
+ " ],\n",
1909
+ " \"Status\": \"Under review\",\n",
1910
+ " \"Table\": [\n",
1911
+ " \"CFmon\"\n",
1912
+ " ],\n",
1913
+ " \"Temporal Shape\": [\n",
1914
+ " \"recF1jvxHxPzKHG62\"\n",
1915
+ " ],\n",
1916
+ " \"Theme\": [\n",
1917
+ " \"Atmosphere\"\n",
1918
+ " ],\n",
1919
+ " \"Title\": \"MODIS Ice Topped Cloud Area Fraction\",\n",
1920
+ " \"Type\": \"real\"\n",
1921
+ "}\n",
1922
+ "Could not interpret variable: {\n",
1923
+ " \"Atmosphere author team review\": \"In progress\",\n",
1924
+ " \"Atmosphere review comment\": \"Atmosphere team happy to accept variable.\\n\\nMoved back to in progress, as it has been noted that there are duplicate compound names. Could suggest to the author to submit new physical parameters to avoid this.\",\n",
1925
+ " \"CMIP7 Variable Groups\": \"radiativeforcing_monthly, SO_BGC-cloud_cloudvars_monthly, CFMIP_cosp_extra\",\n",
1926
+ " \"Cell Measures\": [\n",
1927
+ " \"recb1V00ayWZnmm79\"\n",
1928
+ " ],\n",
1929
+ " \"Cell Methods\": [\n",
1930
+ " \"recikI5axFizPaxLg\"\n",
1931
+ " ],\n",
1932
+ " \"Compound Name\": \"CFmon.clmodisliquid\",\n",
1933
+ " \"Description\": \"Percentage liquid-cloud cover in optical depth categories, as seen by the MODIS instrument simulator. Dimensions of tau (optical depth) and cloud-top pressure are the samed used by clisccp (ISCCP simulator).\\n\",\n",
1934
+ " \"Extra Dimensions\": [\n",
1935
+ " \"recTnfQ7oouQjzvOa\"\n",
1936
+ " ],\n",
1937
+ " \"Frequency\": [\n",
1938
+ " \"mon\"\n",
1939
+ " ],\n",
1940
+ " \"Modeling Realm\": [\n",
1941
+ " \"atmos\"\n",
1942
+ " ],\n",
1943
+ " \"Physical Parameter\": [\n",
1944
+ " \"recYQAq7k1jz4gYO2\"\n",
1945
+ " ],\n",
1946
+ " \"Processing Note\": \"7 pressure levels x 7 optical depth levels. THIS VARIABLE SHOULD HAVE NO EXTRA COORDINATE - \\\"p1000\\\" is selected simply to submit this form. [BD removed the p1000 coordinate on 4/9/24]\\n\",\n",
1947
+ " \"Spatial Shape\": [\n",
1948
+ " \"rec1eFSEpR5EWjdLK\"\n",
1949
+ " ],\n",
1950
+ " \"Status\": \"Under review\",\n",
1951
+ " \"Table\": [\n",
1952
+ " \"CFmon\"\n",
1953
+ " ],\n",
1954
+ " \"Temporal Shape\": [\n",
1955
+ " \"recF1jvxHxPzKHG62\"\n",
1956
+ " ],\n",
1957
+ " \"Theme\": [\n",
1958
+ " \"Atmosphere\"\n",
1959
+ " ],\n",
1960
+ " \"Title\": \"MODIS Liquid Topped Cloud Area Fraction\",\n",
1961
+ " \"Type\": \"real\"\n",
1962
+ "}\n",
1963
+ "Could not interpret variable: {\n",
1964
+ " \"CMIP7 Variable Groups\": \"seaice_bgc_monthly\",\n",
1965
+ " \"Cell Measures\": [\n",
1966
+ " \"recdWlLVgWuRs0LGa\"\n",
1967
+ " ],\n",
1968
+ " \"Cell Methods\": [\n",
1969
+ " \"recikI5axFizPaxLg\"\n",
1970
+ " ],\n",
1971
+ " \"Compound Name\": \"SImon.sisi\",\n",
1972
+ " \"Description\": \"Mole amount means moles of substance per unit area\\n\",\n",
1973
+ " \"Frequency\": [\n",
1974
+ " \"mon\"\n",
1975
+ " ],\n",
1976
+ " \"Modeling Realm\": [\n",
1977
+ " \"ocnBgchem\",\n",
1978
+ " \"seaIce\"\n",
1979
+ " ],\n",
1980
+ " \"Ocean & sea-ice author team review\": \"In progress\",\n",
1981
+ " \"Physical Parameter\": [\n",
1982
+ " \"recOfHLnXChKH8tjD\"\n",
1983
+ " ],\n",
1984
+ " \"Spatial Shape\": [\n",
1985
+ " \"rec1eFSEpR5EWjdLK\"\n",
1986
+ " ],\n",
1987
+ " \"Status\": \"New\",\n",
1988
+ " \"Table\": [\n",
1989
+ " \"SImon\"\n",
1990
+ " ],\n",
1991
+ " \"Temporal Shape\": [\n",
1992
+ " \"recF1jvxHxPzKHG62\"\n",
1993
+ " ],\n",
1994
+ " \"Theme\": [\n",
1995
+ " \"Ocean & sea-ice\"\n",
1996
+ " ],\n",
1997
+ " \"Title\": \"Dissolved Silicon Amount in Sea Ice\",\n",
1998
+ " \"Type\": \"real\"\n",
1999
+ "}\n",
2000
+ "Could not interpret variable: {\n",
2001
+ " \"Cell Measures\": [\n",
2002
+ " \"recdWlLVgWuRs0LGa\"\n",
2003
+ " ],\n",
2004
+ " \"Cell Methods\": [\n",
2005
+ " \"recikI5axFizPaxLg\"\n",
2006
+ " ],\n",
2007
+ " \"Compound Name\": \"Oday.phycdiat\",\n",
2008
+ " \"Description\": \"Carbon concentration of diatoms\\n\",\n",
2009
+ " \"Frequency\": [\n",
2010
+ " \"day\"\n",
2011
+ " ],\n",
2012
+ " \"Modeling Realm\": [\n",
2013
+ " \"ocnBgchem\"\n",
2014
+ " ],\n",
2015
+ " \"Physical Parameter\": [\n",
2016
+ " \"recJJSJnBBohzs2er\"\n",
2017
+ " ],\n",
2018
+ " \"Processing Note\": \"Analogous to Oday.phyc\\n\",\n",
2019
+ " \"Spatial Shape\": [\n",
2020
+ " \"rec1eFSEpR5EWjdLK\"\n",
2021
+ " ],\n",
2022
+ " \"Status\": \"New\",\n",
2023
+ " \"Table\": [\n",
2024
+ " \"Oday\"\n",
2025
+ " ],\n",
2026
+ " \"Temporal Shape\": [\n",
2027
+ " \"recF1jvxHxPzKHG62\"\n",
2028
+ " ],\n",
2029
+ " \"Theme\": [\n",
2030
+ " \"Ocean & sea-ice\"\n",
2031
+ " ],\n",
2032
+ " \"Title\": \"Carbon concentration of diatoms\",\n",
2033
+ " \"Type\": \"real\"\n",
2034
+ "}\n",
2035
+ "Could not interpret variable: {\n",
2036
+ " \"Atmosphere author team review\": \"In progress\",\n",
2037
+ " \"CMIP7 Variable Groups\": \"aerchemmip_3d_monthly\",\n",
2038
+ " \"Cell Measures\": [\n",
2039
+ " \"recb1V00ayWZnmm79\"\n",
2040
+ " ],\n",
2041
+ " \"Cell Methods\": [\n",
2042
+ " \"recikI5axFizPaxLg\"\n",
2043
+ " ],\n",
2044
+ " \"Compound Name\": \"AERmon.h2loss\",\n",
2045
+ " \"Description\": \"This is the loss rate of molecular hydrogen (H2) from the atmosphere due to chemical destruction\\n\",\n",
2046
+ " \"Frequency\": [\n",
2047
+ " \"mon\"\n",
2048
+ " ],\n",
2049
+ " \"Modeling Realm\": [\n",
2050
+ " \"aerosol\"\n",
2051
+ " ],\n",
2052
+ " \"Physical Parameter\": [\n",
2053
+ " \"recT1opXClzk3DNWp\"\n",
2054
+ " ],\n",
2055
+ " \"Spatial Shape\": [\n",
2056
+ " \"rece7NrwMj9ACYd39\"\n",
2057
+ " ],\n",
2058
+ " \"Status\": \"Under review\",\n",
2059
+ " \"Table\": [\n",
2060
+ " \"AERmon\"\n",
2061
+ " ],\n",
2062
+ " \"Temporal Shape\": [\n",
2063
+ " \"recF1jvxHxPzKHG62\"\n",
2064
+ " ],\n",
2065
+ " \"Theme\": [\n",
2066
+ " \"Atmosphere\"\n",
2067
+ " ],\n",
2068
+ " \"Title\": \"Chemical destruction of atmospheric H2\",\n",
2069
+ " \"Type\": \"real\"\n",
2070
+ "}\n",
2071
+ "Could not interpret variable: {\n",
2072
+ " \"CMIP7 Variable Groups\": \"HealthFloodingDaily\",\n",
2073
+ " \"Cell Measures\": [\n",
2074
+ " \"rec5XdFZJqmV9cmq8\"\n",
2075
+ " ],\n",
2076
+ " \"Cell Methods\": [\n",
2077
+ " \"recikI5axFizPaxLg\"\n",
2078
+ " ],\n",
2079
+ " \"Compound Name\": \"Eday.mrso5\",\n",
2080
+ " \"Description\": \"Soil moisture in the top 5 cm of the soil column\\n\",\n",
2081
+ " \"Frequency\": [\n",
2082
+ " \"day\"\n",
2083
+ " ],\n",
2084
+ " \"Impacts & adaptation author team review\": \"In progress\",\n",
2085
+ " \"Modeling Realm\": [\n",
2086
+ " \"land\"\n",
2087
+ " ],\n",
2088
+ " \"Physical Parameter\": [\n",
2089
+ " \"recLLdqI5WCmjvRFR\"\n",
2090
+ " ],\n",
2091
+ " \"Processing Note\": \"only provided for land locations\\n\",\n",
2092
+ " \"Spatial Shape\": [\n",
2093
+ " \"rec1eFSEpR5EWjdLK\"\n",
2094
+ " ],\n",
2095
+ " \"Status\": \"Under review\",\n",
2096
+ " \"Table\": [\n",
2097
+ " \"Eday\"\n",
2098
+ " ],\n",
2099
+ " \"Temporal Shape\": [\n",
2100
+ " \"recF1jvxHxPzKHG62\"\n",
2101
+ " ],\n",
2102
+ " \"Theme\": [\n",
2103
+ " \"Impacts & adaptation\"\n",
2104
+ " ],\n",
2105
+ " \"Title\": \"mrso5\",\n",
2106
+ " \"Type\": \"real\"\n",
2107
+ "}\n",
2108
+ "Could not interpret variable: {\n",
2109
+ " \"Atmosphere author team review\": \"In progress\",\n",
2110
+ " \"CMIP7 Variable Groups\": \"aerchemmip_3d_monthly\",\n",
2111
+ " \"Cell Measures\": [\n",
2112
+ " \"recb1V00ayWZnmm79\"\n",
2113
+ " ],\n",
2114
+ " \"Cell Methods\": [\n",
2115
+ " \"recikI5axFizPaxLg\"\n",
2116
+ " ],\n",
2117
+ " \"Compound Name\": \"AERmon.h2prod\",\n",
2118
+ " \"Description\": \"This is the production of molecular hydrogen (H2) in the atmosphere due to chemical production\\n\",\n",
2119
+ " \"Frequency\": [\n",
2120
+ " \"mon\"\n",
2121
+ " ],\n",
2122
+ " \"Modeling Realm\": [\n",
2123
+ " \"aerosol\"\n",
2124
+ " ],\n",
2125
+ " \"Physical Parameter\": [\n",
2126
+ " \"recVAOHPlM6fW23eS\"\n",
2127
+ " ],\n",
2128
+ " \"Spatial Shape\": [\n",
2129
+ " \"rece7NrwMj9ACYd39\"\n",
2130
+ " ],\n",
2131
+ " \"Status\": \"Under review\",\n",
2132
+ " \"Table\": [\n",
2133
+ " \"AERmon\"\n",
2134
+ " ],\n",
2135
+ " \"Temporal Shape\": [\n",
2136
+ " \"recF1jvxHxPzKHG62\"\n",
2137
+ " ],\n",
2138
+ " \"Theme\": [\n",
2139
+ " \"Atmosphere\"\n",
2140
+ " ],\n",
2141
+ " \"Title\": \"chemical production of atmospheric H2\",\n",
2142
+ " \"Type\": \"real\"\n",
2143
+ "}\n",
2144
+ "Could not interpret variable: {\n",
2145
+ " \"CMIP7 Variable Groups\": \"ocean_grid\",\n",
2146
+ " \"Cell Measures\": [\n",
2147
+ " \"rec5XdFZJqmV9cmq8\"\n",
2148
+ " ],\n",
2149
+ " \"Cell Methods\": [\n",
2150
+ " \"reccn8RUyCIT0DtYs\"\n",
2151
+ " ],\n",
2152
+ " \"Compound Name\": \"Omon.thkcellvo\",\n",
2153
+ " \"Description\": \"The time varying thickness of the gridboxes computed on the v-points\\n\",\n",
2154
+ " \"Frequency\": [\n",
2155
+ " \"mon\"\n",
2156
+ " ],\n",
2157
+ " \"Modeling Realm\": [\n",
2158
+ " \"ocean\"\n",
2159
+ " ],\n",
2160
+ " \"Ocean & sea-ice author team review\": \"In progress\",\n",
2161
+ " \"Physical Parameter\": [\n",
2162
+ " \"rec7dCassjp4qSHej\"\n",
2163
+ " ],\n",
2164
+ " \"Spatial Shape\": [\n",
2165
+ " \"recc6uQw5RAS1YKKc\"\n",
2166
+ " ],\n",
2167
+ " \"Status\": \"Under review\",\n",
2168
+ " \"Table\": [\n",
2169
+ " \"Omon\"\n",
2170
+ " ],\n",
2171
+ " \"Temporal Shape\": [\n",
2172
+ " \"recWkMQsqHF3CzF86\"\n",
2173
+ " ],\n",
2174
+ " \"Theme\": [\n",
2175
+ " \"Ocean & sea-ice\"\n",
2176
+ " ],\n",
2177
+ " \"Title\": \"Time Varying Gridbox thickness at v-points\",\n",
2178
+ " \"Type\": \"real\"\n",
2179
+ "}\n",
2180
+ "Could not interpret variable: {\n",
2181
+ " \"Cell Measures\": [\n",
2182
+ " \"recdWlLVgWuRs0LGa\"\n",
2183
+ " ],\n",
2184
+ " \"Cell Methods\": [\n",
2185
+ " \"recikI5axFizPaxLg\"\n",
2186
+ " ],\n",
2187
+ " \"Compound Name\": \"Oday.phycpico\",\n",
2188
+ " \"Description\": \"Carbon concentration of picophytoplankton\\n\\n\",\n",
2189
+ " \"Frequency\": [\n",
2190
+ " \"day\"\n",
2191
+ " ],\n",
2192
+ " \"Modeling Realm\": [\n",
2193
+ " \"ocnBgchem\"\n",
2194
+ " ],\n",
2195
+ " \"Physical Parameter\": [\n",
2196
+ " \"recFnt2iqlNrdj6Do\"\n",
2197
+ " ],\n",
2198
+ " \"Processing Note\": \"Analogous to Oday.phyc\\n\",\n",
2199
+ " \"Spatial Shape\": [\n",
2200
+ " \"rec1eFSEpR5EWjdLK\"\n",
2201
+ " ],\n",
2202
+ " \"Status\": \"New\",\n",
2203
+ " \"Table\": [\n",
2204
+ " \"Oday\"\n",
2205
+ " ],\n",
2206
+ " \"Temporal Shape\": [\n",
2207
+ " \"recF1jvxHxPzKHG62\"\n",
2208
+ " ],\n",
2209
+ " \"Theme\": [\n",
2210
+ " \"Ocean & sea-ice\"\n",
2211
+ " ],\n",
2212
+ " \"Title\": \"Carbon concentration of picophytoplankton\",\n",
2213
+ " \"Type\": \"real\"\n",
2214
+ "}\n",
2215
+ "Could not interpret variable: {\n",
2216
+ " \"Atmosphere author team review\": \"In progress\",\n",
2217
+ " \"CMIP7 Variable Groups\": \"aerchemmip_3d_monthly\",\n",
2218
+ " \"Cell Measures\": [\n",
2219
+ " \"recb1V00ayWZnmm79\"\n",
2220
+ " ],\n",
2221
+ " \"Cell Methods\": [\n",
2222
+ " \"recikI5axFizPaxLg\"\n",
2223
+ " ],\n",
2224
+ " \"Compound Name\": \"AERmon.tropdo3chm\",\n",
2225
+ " \"Description\": \"This is the net chemical tendency of ozone in the troposphere. The distinction between the stratosphere and troposphere should be consistent with the definition of the tropopause used in the calculation of the tropopause pressure (ptp).\\n\",\n",
2226
+ " \"Frequency\": [\n",
2227
+ " \"mon\"\n",
2228
+ " ],\n",
2229
+ " \"Modeling Realm\": [\n",
2230
+ " \"aerosol\"\n",
2231
+ " ],\n",
2232
+ " \"Physical Parameter\": [\n",
2233
+ " \"rec3CA33HLrwsRlp4\"\n",
2234
+ " ],\n",
2235
+ " \"Spatial Shape\": [\n",
2236
+ " \"rece7NrwMj9ACYd39\"\n",
2237
+ " ],\n",
2238
+ " \"Status\": \"Under review\",\n",
2239
+ " \"Table\": [\n",
2240
+ " \"AERmon\"\n",
2241
+ " ],\n",
2242
+ " \"Temporal Shape\": [\n",
2243
+ " \"recF1jvxHxPzKHG62\"\n",
2244
+ " ],\n",
2245
+ " \"Theme\": [\n",
2246
+ " \"Atmosphere\"\n",
2247
+ " ],\n",
2248
+ " \"Title\": \"Net Chemistry Tendency of O3 in troposphere\",\n",
2249
+ " \"Type\": \"real\"\n",
2250
+ "}\n",
2251
+ "Could not interpret variable: {\n",
2252
+ " \"Cell Measures\": [\n",
2253
+ " \"rec5XdFZJqmV9cmq8\"\n",
2254
+ " ],\n",
2255
+ " \"Cell Methods\": [\n",
2256
+ " \"recIIDtju99NbGIgz\"\n",
2257
+ " ],\n",
2258
+ " \"Compound Name\": \"3hr.swh\",\n",
2259
+ " \"Coordinates\": [\n",
2260
+ " \"rece3ISIXdShIMuSy\"\n",
2261
+ " ],\n",
2262
+ " \"Description\": \"Wind driven surface gravity waves at the ocean surface, generated by the wave model , wave Height\\n\",\n",
2263
+ " \"Frequency\": [\n",
2264
+ " \"3hr\"\n",
2265
+ " ],\n",
2266
+ " \"Modeling Realm\": [\n",
2267
+ " \"ocean\"\n",
2268
+ " ],\n",
2269
+ " \"Physical Parameter\": [\n",
2270
+ " \"recbj9gTPQ3HUIcb5\"\n",
2271
+ " ],\n",
2272
+ " \"Processing Note\": \"Grid point normal output from wave model\\n\",\n",
2273
+ " \"Spatial Shape\": [\n",
2274
+ " \"rec1eFSEpR5EWjdLK\"\n",
2275
+ " ],\n",
2276
+ " \"Status\": \"New\",\n",
2277
+ " \"Table\": [\n",
2278
+ " \"3hr\"\n",
2279
+ " ],\n",
2280
+ " \"Temporal Shape\": [\n",
2281
+ " \"recaK23tKc4fabb41\"\n",
2282
+ " ],\n",
2283
+ " \"Theme\": [\n",
2284
+ " \"Ocean & sea-ice\"\n",
2285
+ " ],\n",
2286
+ " \"Title\": \"Total Wave Significant Wave Height\",\n",
2287
+ " \"Type\": \"real\"\n",
2288
+ "}\n",
2289
+ "Could not interpret variable: {\n",
2290
+ " \"Atmosphere author team review\": \"In progress\",\n",
2291
+ " \"CMIP7 Variable Groups\": \"dynvar_advanced\",\n",
2292
+ " \"Cell Measures\": [\n",
2293
+ " \"rec5XdFZJqmV9cmq8\"\n",
2294
+ " ],\n",
2295
+ " \"Cell Methods\": [\n",
2296
+ " \"recj82upWagLqGWER\"\n",
2297
+ " ],\n",
2298
+ " \"Comments\": [\n",
2299
+ " \"recnbcHLfeGkBAPMd\",\n",
2300
+ " \"recepVFCJ6dtYTW0b\"\n",
2301
+ " ],\n",
2302
+ " \"Compound Name\": \"Emon.tauuogw\",\n",
2303
+ " \"Description\": \"The vertical flux of zonal momentum within the orographic GW parameterization.\\n\",\n",
2304
+ " \"Frequency\": [\n",
2305
+ " \"mon\"\n",
2306
+ " ],\n",
2307
+ " \"Modeling Realm\": [\n",
2308
+ " \"atmos\"\n",
2309
+ " ],\n",
2310
+ " \"Ocean & sea-ice author team review\": \"In progress\",\n",
2311
+ " \"Physical Parameter\": [\n",
2312
+ " \"recdshpvFjqZFIUfn\"\n",
2313
+ " ],\n",
2314
+ " \"Spatial Shape\": [\n",
2315
+ " \"recAJTPKQTjvOpsr8\"\n",
2316
+ " ],\n",
2317
+ " \"Status\": \"Under review\",\n",
2318
+ " \"Table\": [\n",
2319
+ " \"Emon\"\n",
2320
+ " ],\n",
2321
+ " \"Temporal Shape\": [\n",
2322
+ " \"recF1jvxHxPzKHG62\"\n",
2323
+ " ],\n",
2324
+ " \"Theme\": [\n",
2325
+ " \"Atmosphere\"\n",
2326
+ " ],\n",
2327
+ " \"Title\": \"Westward Reynolds stress from orographic gravity wave parameterization\",\n",
2328
+ " \"Type\": \"real\"\n",
2329
+ "}\n",
2330
+ "Could not interpret variable: {\n",
2331
+ " \"CMIP7 Variable Groups\": \"seaice_bgc_daily\",\n",
2332
+ " \"Cell Measures\": [\n",
2333
+ " \"recdWlLVgWuRs0LGa\"\n",
2334
+ " ],\n",
2335
+ " \"Cell Methods\": [\n",
2336
+ " \"recikI5axFizPaxLg\"\n",
2337
+ " ],\n",
2338
+ " \"Compound Name\": \"SIday.sigpp\",\n",
2339
+ " \"Description\": \"Total GPP of ice algae in sea ice\\n\",\n",
2340
+ " \"Frequency\": [\n",
2341
+ " \"day\"\n",
2342
+ " ],\n",
2343
+ " \"Modeling Realm\": [\n",
2344
+ " \"ocnBgchem\",\n",
2345
+ " \"seaIce\"\n",
2346
+ " ],\n",
2347
+ " \"Ocean & sea-ice author team review\": \"In progress\",\n",
2348
+ " \"Physical Parameter\": [\n",
2349
+ " \"recb4LRfY4TUFD9Xz\"\n",
2350
+ " ],\n",
2351
+ " \"Spatial Shape\": [\n",
2352
+ " \"rec1eFSEpR5EWjdLK\"\n",
2353
+ " ],\n",
2354
+ " \"Status\": \"New\",\n",
2355
+ " \"Table\": [\n",
2356
+ " \"SIday\"\n",
2357
+ " ],\n",
2358
+ " \"Temporal Shape\": [\n",
2359
+ " \"recF1jvxHxPzKHG62\"\n",
2360
+ " ],\n",
2361
+ " \"Theme\": [\n",
2362
+ " \"Ocean & sea-ice\"\n",
2363
+ " ],\n",
2364
+ " \"Title\": \"Gross primary production in sea ice as carbon amount flu\",\n",
2365
+ " \"Type\": \"real\"\n",
2366
+ "}\n",
2367
+ "Could not interpret variable: {\n",
2368
+ " \"CMIP7 Variable Groups\": \"seaice_bgc_daily\",\n",
2369
+ " \"Cell Measures\": [\n",
2370
+ " \"recdWlLVgWuRs0LGa\"\n",
2371
+ " ],\n",
2372
+ " \"Cell Methods\": [\n",
2373
+ " \"recikI5axFizPaxLg\"\n",
2374
+ " ],\n",
2375
+ " \"Compound Name\": \"SIday.sisi\",\n",
2376
+ " \"Description\": \"Mole amount means moles of substance per unit area\\n\",\n",
2377
+ " \"Frequency\": [\n",
2378
+ " \"day\"\n",
2379
+ " ],\n",
2380
+ " \"Modeling Realm\": [\n",
2381
+ " \"ocnBgchem\",\n",
2382
+ " \"seaIce\"\n",
2383
+ " ],\n",
2384
+ " \"Ocean & sea-ice author team review\": \"In progress\",\n",
2385
+ " \"Physical Parameter\": [\n",
2386
+ " \"recOfHLnXChKH8tjD\"\n",
2387
+ " ],\n",
2388
+ " \"Spatial Shape\": [\n",
2389
+ " \"rec1eFSEpR5EWjdLK\"\n",
2390
+ " ],\n",
2391
+ " \"Status\": \"New\",\n",
2392
+ " \"Table\": [\n",
2393
+ " \"SIday\"\n",
2394
+ " ],\n",
2395
+ " \"Temporal Shape\": [\n",
2396
+ " \"recF1jvxHxPzKHG62\"\n",
2397
+ " ],\n",
2398
+ " \"Theme\": [\n",
2399
+ " \"Ocean & sea-ice\"\n",
2400
+ " ],\n",
2401
+ " \"Title\": \"Dissolved Silicon Amount in Sea Ice\",\n",
2402
+ " \"Type\": \"real\"\n",
2403
+ "}\n",
2404
+ "Could not interpret variable: {\n",
2405
+ " \"Atmosphere author team review\": \"In progress\",\n",
2406
+ " \"CMIP7 Variable Groups\": \"aerchemmip_2d_monthly\",\n",
2407
+ " \"Cell Measures\": [\n",
2408
+ " \"recb1V00ayWZnmm79\"\n",
2409
+ " ],\n",
2410
+ " \"Cell Methods\": [\n",
2411
+ " \"recikI5axFizPaxLg\"\n",
2412
+ " ],\n",
2413
+ " \"Compound Name\": \"AERmon.emibbnox\",\n",
2414
+ " \"Description\": \"This is the total emission rate of nitrogen oxides (NOx) from all biomass burning (natural and anthropogenic)\\n\",\n",
2415
+ " \"Frequency\": [\n",
2416
+ " \"mon\"\n",
2417
+ " ],\n",
2418
+ " \"Modeling Realm\": [\n",
2419
+ " \"aerosol\"\n",
2420
+ " ],\n",
2421
+ " \"Physical Parameter\": [\n",
2422
+ " \"recp4Wj5QuumZKnXL\"\n",
2423
+ " ],\n",
2424
+ " \"Spatial Shape\": [\n",
2425
+ " \"rec1eFSEpR5EWjdLK\"\n",
2426
+ " ],\n",
2427
+ " \"Status\": \"Under review\",\n",
2428
+ " \"Table\": [\n",
2429
+ " \"AERmon\"\n",
2430
+ " ],\n",
2431
+ " \"Temporal Shape\": [\n",
2432
+ " \"recF1jvxHxPzKHG62\"\n",
2433
+ " ],\n",
2434
+ " \"Theme\": [\n",
2435
+ " \"Atmosphere\"\n",
2436
+ " ],\n",
2437
+ " \"Title\": \"total emission rate of NOx from all biomass burning\",\n",
2438
+ " \"Type\": \"real\"\n",
2439
+ "}\n",
2440
+ "Could not interpret variable: {\n",
2441
+ " \"Atmosphere author team review\": \"In progress\",\n",
2442
+ " \"CMIP7 Variable Groups\": \"dynvar_basic\",\n",
2443
+ " \"Cell Measures\": [\n",
2444
+ " \"rec5XdFZJqmV9cmq8\"\n",
2445
+ " ],\n",
2446
+ " \"Cell Methods\": [\n",
2447
+ " \"recj82upWagLqGWER\"\n",
2448
+ " ],\n",
2449
+ " \"Comments\": [\n",
2450
+ " \"recepVFCJ6dtYTW0b\"\n",
2451
+ " ],\n",
2452
+ " \"Compound Name\": \"EdayZ.tauvnogw\",\n",
2453
+ " \"Description\": \"Zonal mean vertical wave flux of meridional momentum within the non-orographic GW parameterization\\n\",\n",
2454
+ " \"Frequency\": [\n",
2455
+ " \"day\"\n",
2456
+ " ],\n",
2457
+ " \"Modeling Realm\": [\n",
2458
+ " \"atmos\"\n",
2459
+ " ],\n",
2460
+ " \"Physical Parameter\": [\n",
2461
+ " \"rec8pQorcjxcMorxp\"\n",
2462
+ " ],\n",
2463
+ " \"Spatial Shape\": [\n",
2464
+ " \"rec3ANEmWx0SvZauH\"\n",
2465
+ " ],\n",
2466
+ " \"Status\": \"Under review\",\n",
2467
+ " \"Table\": [\n",
2468
+ " \"EdayZ\"\n",
2469
+ " ],\n",
2470
+ " \"Temporal Shape\": [\n",
2471
+ " \"recF1jvxHxPzKHG62\"\n",
2472
+ " ],\n",
2473
+ " \"Theme\": [\n",
2474
+ " \"Atmosphere\"\n",
2475
+ " ],\n",
2476
+ " \"Title\": \"Zonal mean northward Reynolds stress from non-orographic gravity wave parameterization \",\n",
2477
+ " \"Type\": \"real\"\n",
2478
+ "}\n",
2479
+ "Could not interpret variable: {\n",
2480
+ " \"Atmosphere author team review\": \"In progress\",\n",
2481
+ " \"CMIP7 Variable Groups\": \"aerchemmip_2d_monthly\",\n",
2482
+ " \"Cell Measures\": [\n",
2483
+ " \"recb1V00ayWZnmm79\"\n",
2484
+ " ],\n",
2485
+ " \"Cell Methods\": [\n",
2486
+ " \"recikI5axFizPaxLg\"\n",
2487
+ " ],\n",
2488
+ " \"Compound Name\": \"AERmon.rlutcsch4ref\",\n",
2489
+ " \"Description\": \"This is the outgoing longwave flux at the top-of-atmosphere for clear-sky conditions from a diagnostic call to the radiation scheme with a reference methane field\\n\",\n",
2490
+ " \"Frequency\": [\n",
2491
+ " \"mon\"\n",
2492
+ " ],\n",
2493
+ " \"Modeling Realm\": [\n",
2494
+ " \"aerosol\"\n",
2495
+ " ],\n",
2496
+ " \"Physical Parameter\": [\n",
2497
+ " \"rectXRF7sbEaOofjZ\"\n",
2498
+ " ],\n",
2499
+ " \"Spatial Shape\": [\n",
2500
+ " \"rec1eFSEpR5EWjdLK\"\n",
2501
+ " ],\n",
2502
+ " \"Status\": \"Under review\",\n",
2503
+ " \"Table\": [\n",
2504
+ " \"AERmon\"\n",
2505
+ " ],\n",
2506
+ " \"Temporal Shape\": [\n",
2507
+ " \"recF1jvxHxPzKHG62\"\n",
2508
+ " ],\n",
2509
+ " \"Theme\": [\n",
2510
+ " \"Atmosphere\"\n",
2511
+ " ],\n",
2512
+ " \"Title\": \"TOA outgoing longwave flux assuming clear sky and reference methane field \",\n",
2513
+ " \"Type\": \"real\"\n",
2514
+ "}\n",
2515
+ "Could not interpret variable: {\n",
2516
+ " \"Atmosphere author team review\": \"In progress\",\n",
2517
+ " \"CMIP7 Variable Groups\": \"aerchemmip_2d_monthly, FireMIP_monthly\",\n",
2518
+ " \"Cell Measures\": [\n",
2519
+ " \"recb1V00ayWZnmm79\"\n",
2520
+ " ],\n",
2521
+ " \"Cell Methods\": [\n",
2522
+ " \"recikI5axFizPaxLg\"\n",
2523
+ " ],\n",
2524
+ " \"Compound Name\": \"AERmon.emibbdms\",\n",
2525
+ " \"Description\": \"This is the total emission rate of dimethyl sulfide (DMS) into the atmosphere from all biomass burning (natural and anthropogenic)\\n\",\n",
2526
+ " \"Frequency\": [\n",
2527
+ " \"mon\"\n",
2528
+ " ],\n",
2529
+ " \"Modeling Realm\": [\n",
2530
+ " \"aerosol\"\n",
2531
+ " ],\n",
2532
+ " \"Physical Parameter\": [\n",
2533
+ " \"recdwVnIIZjJ0HgPs\"\n",
2534
+ " ],\n",
2535
+ " \"Spatial Shape\": [\n",
2536
+ " \"rec1eFSEpR5EWjdLK\"\n",
2537
+ " ],\n",
2538
+ " \"Status\": \"Under review\",\n",
2539
+ " \"Table\": [\n",
2540
+ " \"AERmon\"\n",
2541
+ " ],\n",
2542
+ " \"Temporal Shape\": [\n",
2543
+ " \"recF1jvxHxPzKHG62\"\n",
2544
+ " ],\n",
2545
+ " \"Theme\": [\n",
2546
+ " \"Atmosphere\"\n",
2547
+ " ],\n",
2548
+ " \"Title\": \"total emission of DMS from all biomass burning\",\n",
2549
+ " \"Type\": \"real\"\n",
2550
+ "}\n",
2551
+ "Could not interpret variable: {\n",
2552
+ " \"CMIP7 Variable Groups\": \"ocean_grid\",\n",
2553
+ " \"Cell Measures\": [\n",
2554
+ " \"rec5XdFZJqmV9cmq8\"\n",
2555
+ " ],\n",
2556
+ " \"Cell Methods\": [\n",
2557
+ " \"reccn8RUyCIT0DtYs\"\n",
2558
+ " ],\n",
2559
+ " \"Compound Name\": \"Ofx.dxto\",\n",
2560
+ " \"Description\": \"The width of the ocean model gridbox in at the t-point (dx)\\n\",\n",
2561
+ " \"Frequency\": [\n",
2562
+ " \"fx\"\n",
2563
+ " ],\n",
2564
+ " \"Modeling Realm\": [\n",
2565
+ " \"ocean\"\n",
2566
+ " ],\n",
2567
+ " \"Ocean & sea-ice author team review\": \"In progress\",\n",
2568
+ " \"Physical Parameter\": [\n",
2569
+ " \"recZns4lkiL6dpO6e\"\n",
2570
+ " ],\n",
2571
+ " \"Spatial Shape\": [\n",
2572
+ " \"rec1eFSEpR5EWjdLK\"\n",
2573
+ " ],\n",
2574
+ " \"Status\": \"Under review\",\n",
2575
+ " \"Table\": [\n",
2576
+ " \"Ofx\"\n",
2577
+ " ],\n",
2578
+ " \"Temporal Shape\": [\n",
2579
+ " \"recWkMQsqHF3CzF86\"\n",
2580
+ " ],\n",
2581
+ " \"Theme\": [\n",
2582
+ " \"Ocean & sea-ice\"\n",
2583
+ " ],\n",
2584
+ " \"Title\": \"Eastward gridbox length at t-points\",\n",
2585
+ " \"Type\": \"real\"\n",
2586
+ "}\n",
2587
+ "Could not interpret variable: {\n",
2588
+ " \"Atmosphere author team review\": \"In progress\",\n",
2589
+ " \"CMIP7 Variable Groups\": \"aerchemmip_2d_monthly, FireMIP_monthly, land_ch4_fluxes\",\n",
2590
+ " \"Cell Measures\": [\n",
2591
+ " \"recb1V00ayWZnmm79\"\n",
2592
+ " ],\n",
2593
+ " \"Cell Methods\": [\n",
2594
+ " \"recikI5axFizPaxLg\"\n",
2595
+ " ],\n",
2596
+ " \"Compound Name\": \"AERmon.emibbch4\",\n",
2597
+ " \"Description\": \"This is the total emission rate of methane (CH4) into the atmosphere from all biomass burning (natural and anthropogenic)\\n\",\n",
2598
+ " \"Frequency\": [\n",
2599
+ " \"mon\"\n",
2600
+ " ],\n",
2601
+ " \"Modeling Realm\": [\n",
2602
+ " \"aerosol\"\n",
2603
+ " ],\n",
2604
+ " \"Physical Parameter\": [\n",
2605
+ " \"recIYqhZG4SGn5G8g\"\n",
2606
+ " ],\n",
2607
+ " \"Spatial Shape\": [\n",
2608
+ " \"rec1eFSEpR5EWjdLK\"\n",
2609
+ " ],\n",
2610
+ " \"Status\": \"Under review\",\n",
2611
+ " \"Table\": [\n",
2612
+ " \"AERmon\"\n",
2613
+ " ],\n",
2614
+ " \"Temporal Shape\": [\n",
2615
+ " \"recF1jvxHxPzKHG62\"\n",
2616
+ " ],\n",
2617
+ " \"Theme\": [\n",
2618
+ " \"Atmosphere\"\n",
2619
+ " ],\n",
2620
+ " \"Title\": \"total emission of CH4 from all biomass burning\",\n",
2621
+ " \"Type\": \"real\"\n",
2622
+ "}\n",
2623
+ "Could not interpret variable: {\n",
2624
+ " \"Atmosphere author team review\": \"In progress\",\n",
2625
+ " \"CMIP7 Variable Groups\": \"aerchemmip_fixed\",\n",
2626
+ " \"Cell Measures\": [\n",
2627
+ " \"recb1V00ayWZnmm79\"\n",
2628
+ " ],\n",
2629
+ " \"Cell Methods\": [\n",
2630
+ " \"recikI5axFizPaxLg\"\n",
2631
+ " ],\n",
2632
+ " \"Compound Name\": \"AERfx.ch4ref\",\n",
2633
+ " \"Description\": \"This is the methane mole fraction that is used in a diagnostic call to the model's radiation scheme. It is only applicable when a methane double call is active in the model.\\n\",\n",
2634
+ " \"Frequency\": [\n",
2635
+ " \"mon\"\n",
2636
+ " ],\n",
2637
+ " \"Modeling Realm\": [\n",
2638
+ " \"aerosol\"\n",
2639
+ " ],\n",
2640
+ " \"Physical Parameter\": [\n",
2641
+ " \"recDgXAzY79ypex3L\"\n",
2642
+ " ],\n",
2643
+ " \"Spatial Shape\": [\n",
2644
+ " \"rece7NrwMj9ACYd39\"\n",
2645
+ " ],\n",
2646
+ " \"Status\": \"Under review\",\n",
2647
+ " \"Table\": [\n",
2648
+ " \"AERfx\"\n",
2649
+ " ],\n",
2650
+ " \"Temporal Shape\": [\n",
2651
+ " \"recLkfM3DEviZi55e\"\n",
2652
+ " ],\n",
2653
+ " \"Theme\": [\n",
2654
+ " \"Atmosphere\"\n",
2655
+ " ],\n",
2656
+ " \"Title\": \"Reference mole fraction of methane in air\",\n",
2657
+ " \"Type\": \"real\"\n",
2658
+ "}\n",
2659
+ "Could not interpret variable: {\n",
2660
+ " \"CMIP7 Variable Groups\": \"ocean_grid\",\n",
2661
+ " \"Cell Measures\": [\n",
2662
+ " \"rec5XdFZJqmV9cmq8\"\n",
2663
+ " ],\n",
2664
+ " \"Cell Methods\": [\n",
2665
+ " \"reccn8RUyCIT0DtYs\"\n",
2666
+ " ],\n",
2667
+ " \"Compound Name\": \"Ofx.dyvo\",\n",
2668
+ " \"Description\": \"The width of the ocean model gridbox in at the v-point (dy)\\n\",\n",
2669
+ " \"Frequency\": [\n",
2670
+ " \"fx\"\n",
2671
+ " ],\n",
2672
+ " \"Modeling Realm\": [\n",
2673
+ " \"ocean\"\n",
2674
+ " ],\n",
2675
+ " \"Ocean & sea-ice author team review\": \"In progress\",\n",
2676
+ " \"Physical Parameter\": [\n",
2677
+ " \"recPMB2ADR2tGHw7n\"\n",
2678
+ " ],\n",
2679
+ " \"Spatial Shape\": [\n",
2680
+ " \"rec1eFSEpR5EWjdLK\"\n",
2681
+ " ],\n",
2682
+ " \"Status\": \"Under review\",\n",
2683
+ " \"Table\": [\n",
2684
+ " \"Ofx\"\n",
2685
+ " ],\n",
2686
+ " \"Temporal Shape\": [\n",
2687
+ " \"recWkMQsqHF3CzF86\"\n",
2688
+ " ],\n",
2689
+ " \"Theme\": [\n",
2690
+ " \"Ocean & sea-ice\"\n",
2691
+ " ],\n",
2692
+ " \"Title\": \"Northward gridbox length at v points\",\n",
2693
+ " \"Type\": \"real\"\n",
2694
+ "}\n",
2695
+ "Could not interpret variable: {\n",
2696
+ " \"Atmosphere author team review\": \"In progress\",\n",
2697
+ " \"CMIP7 Variable Groups\": \"dynvar_basic\",\n",
2698
+ " \"Cell Measures\": [\n",
2699
+ " \"rec5XdFZJqmV9cmq8\"\n",
2700
+ " ],\n",
2701
+ " \"Cell Methods\": [\n",
2702
+ " \"recj82upWagLqGWER\"\n",
2703
+ " ],\n",
2704
+ " \"Comments\": [\n",
2705
+ " \"recepVFCJ6dtYTW0b\"\n",
2706
+ " ],\n",
2707
+ " \"Compound Name\": \"EdayZ.tauuogw\",\n",
2708
+ " \"Description\": \"Zonal mean of the vertical flux of zonal momentum within the orographic GW parameterization\\n\",\n",
2709
+ " \"Frequency\": [\n",
2710
+ " \"day\"\n",
2711
+ " ],\n",
2712
+ " \"Modeling Realm\": [\n",
2713
+ " \"atmos\"\n",
2714
+ " ],\n",
2715
+ " \"Physical Parameter\": [\n",
2716
+ " \"recdshpvFjqZFIUfn\"\n",
2717
+ " ],\n",
2718
+ " \"Spatial Shape\": [\n",
2719
+ " \"rec3ANEmWx0SvZauH\"\n",
2720
+ " ],\n",
2721
+ " \"Status\": \"Under review\",\n",
2722
+ " \"Table\": [\n",
2723
+ " \"EdayZ\"\n",
2724
+ " ],\n",
2725
+ " \"Temporal Shape\": [\n",
2726
+ " \"recF1jvxHxPzKHG62\"\n",
2727
+ " ],\n",
2728
+ " \"Theme\": [\n",
2729
+ " \"Atmosphere\"\n",
2730
+ " ],\n",
2731
+ " \"Title\": \"Zonal mean westward Reynolds stress from orographic gravity wave parameterization\",\n",
2732
+ " \"Type\": \"real\"\n",
2733
+ "}\n",
2734
+ "Could not interpret variable: {\n",
2735
+ " \"Atmosphere author team review\": \"In progress\",\n",
2736
+ " \"CMIP7 Variable Groups\": \"baseline_daily\",\n",
2737
+ " \"Cell Measures\": [\n",
2738
+ " \"recb1V00ayWZnmm79\"\n",
2739
+ " ],\n",
2740
+ " \"Cell Methods\": [\n",
2741
+ " \"recikI5axFizPaxLg\"\n",
2742
+ " ],\n",
2743
+ " \"Compound Name\": \"day.noaahi2m\",\n",
2744
+ " \"Description\": \"**mean 2m daily NOAA heat index**\\n\",\n",
2745
+ " \"Frequency\": [\n",
2746
+ " \"day\"\n",
2747
+ " ],\n",
2748
+ " \"Impacts & adaptation author team review\": \"In progress\",\n",
2749
+ " \"Modeling Realm\": [\n",
2750
+ " \"atmos\"\n",
2751
+ " ],\n",
2752
+ " \"Physical Parameter\": [\n",
2753
+ " \"recwepTYtve7Ig0r4\"\n",
2754
+ " ],\n",
2755
+ " \"Spatial Shape\": [\n",
2756
+ " \"rec1eFSEpR5EWjdLK\"\n",
2757
+ " ],\n",
2758
+ " \"Status\": \"New\",\n",
2759
+ " \"Table\": [\n",
2760
+ " \"day\"\n",
2761
+ " ],\n",
2762
+ " \"Temporal Shape\": [\n",
2763
+ " \"recWkMQsqHF3CzF86\"\n",
2764
+ " ],\n",
2765
+ " \"Theme\": [\n",
2766
+ " \"Atmosphere\",\n",
2767
+ " \"Impacts & adaptation\"\n",
2768
+ " ],\n",
2769
+ " \"Title\": \"mean 2m daily NOAA heat index\",\n",
2770
+ " \"Type\": \"real\"\n",
2771
+ "}\n",
2772
+ "Could not interpret variable: {\n",
2773
+ " \"Atmosphere author team review\": \"In progress\",\n",
2774
+ " \"CMIP7 Variable Groups\": \"dynvar_advanced\",\n",
2775
+ " \"Cell Measures\": [\n",
2776
+ " \"rec5XdFZJqmV9cmq8\"\n",
2777
+ " ],\n",
2778
+ " \"Cell Methods\": [\n",
2779
+ " \"recj82upWagLqGWER\"\n",
2780
+ " ],\n",
2781
+ " \"Comments\": [\n",
2782
+ " \"recepVFCJ6dtYTW0b\"\n",
2783
+ " ],\n",
2784
+ " \"Compound Name\": \"Emon.tauunogw\",\n",
2785
+ " \"Description\": \"Vertical flux of zonal momentum within the non-orographic GW parameterization.\\n\",\n",
2786
+ " \"Frequency\": [\n",
2787
+ " \"mon\"\n",
2788
+ " ],\n",
2789
+ " \"Modeling Realm\": [\n",
2790
+ " \"atmos\"\n",
2791
+ " ],\n",
2792
+ " \"Physical Parameter\": [\n",
2793
+ " \"recudmm973fir1EXS\"\n",
2794
+ " ],\n",
2795
+ " \"Spatial Shape\": [\n",
2796
+ " \"recAJTPKQTjvOpsr8\"\n",
2797
+ " ],\n",
2798
+ " \"Status\": \"Under review\",\n",
2799
+ " \"Table\": [\n",
2800
+ " \"Emon\"\n",
2801
+ " ],\n",
2802
+ " \"Temporal Shape\": [\n",
2803
+ " \"recF1jvxHxPzKHG62\"\n",
2804
+ " ],\n",
2805
+ " \"Theme\": [\n",
2806
+ " \"Atmosphere\"\n",
2807
+ " ],\n",
2808
+ " \"Title\": \"Westward Reynolds stress from non-orographic gravity wave parameterization \",\n",
2809
+ " \"Type\": \"real\"\n",
2810
+ "}\n",
2811
+ "Could not interpret variable: {\n",
2812
+ " \"Atmosphere author team review\": \"In progress\",\n",
2813
+ " \"CMIP7 Variable Groups\": \"aerchemmip_2d_monthly, FireMIP_monthly\",\n",
2814
+ " \"Cell Measures\": [\n",
2815
+ " \"recb1V00ayWZnmm79\"\n",
2816
+ " ],\n",
2817
+ " \"Cell Methods\": [\n",
2818
+ " \"recikI5axFizPaxLg\"\n",
2819
+ " ],\n",
2820
+ " \"Compound Name\": \"AERmon.emibbbc\",\n",
2821
+ " \"Description\": \"This is the total emission rate of black carbon aerosol into the atmosphere from all biomass burning (natural and anthropogenic)\\n\",\n",
2822
+ " \"Frequency\": [\n",
2823
+ " \"mon\"\n",
2824
+ " ],\n",
2825
+ " \"Modeling Realm\": [\n",
2826
+ " \"aerosol\"\n",
2827
+ " ],\n",
2828
+ " \"Physical Parameter\": [\n",
2829
+ " \"reci81EMUfbRcIXPE\"\n",
2830
+ " ],\n",
2831
+ " \"Spatial Shape\": [\n",
2832
+ " \"rec1eFSEpR5EWjdLK\"\n",
2833
+ " ],\n",
2834
+ " \"Status\": \"Under review\",\n",
2835
+ " \"Table\": [\n",
2836
+ " \"AERmon\"\n",
2837
+ " ],\n",
2838
+ " \"Temporal Shape\": [\n",
2839
+ " \"recF1jvxHxPzKHG62\"\n",
2840
+ " ],\n",
2841
+ " \"Theme\": [\n",
2842
+ " \"Atmosphere\"\n",
2843
+ " ],\n",
2844
+ " \"Title\": \"total emission rate of black carbon aerosol mass from all biomass burning\",\n",
2845
+ " \"Type\": \"real\"\n",
2846
+ "}\n",
2847
+ "Could not interpret variable: {\n",
2848
+ " \"Atmosphere author team review\": \"In progress\",\n",
2849
+ " \"CMIP7 Variable Groups\": \"aerchemmip_2d_monthly, FireMIP_monthly\",\n",
2850
+ " \"Cell Measures\": [\n",
2851
+ " \"recb1V00ayWZnmm79\"\n",
2852
+ " ],\n",
2853
+ " \"Cell Methods\": [\n",
2854
+ " \"recikI5axFizPaxLg\"\n",
2855
+ " ],\n",
2856
+ " \"Compound Name\": \"AERmon.emibbco\",\n",
2857
+ " \"Description\": \"This is the total emission rate of carbon monoxide (CO) into the atmosphere from all biomass burning (natural and anthropogenic)\\n\",\n",
2858
+ " \"Frequency\": [\n",
2859
+ " \"mon\"\n",
2860
+ " ],\n",
2861
+ " \"Modeling Realm\": [\n",
2862
+ " \"aerosol\"\n",
2863
+ " ],\n",
2864
+ " \"Physical Parameter\": [\n",
2865
+ " \"recZB8ujvzYFXRMfJ\"\n",
2866
+ " ],\n",
2867
+ " \"Spatial Shape\": [\n",
2868
+ " \"rec1eFSEpR5EWjdLK\"\n",
2869
+ " ],\n",
2870
+ " \"Status\": \"Under review\",\n",
2871
+ " \"Table\": [\n",
2872
+ " \"AERmon\"\n",
2873
+ " ],\n",
2874
+ " \"Temporal Shape\": [\n",
2875
+ " \"recF1jvxHxPzKHG62\"\n",
2876
+ " ],\n",
2877
+ " \"Theme\": [\n",
2878
+ " \"Atmosphere\"\n",
2879
+ " ],\n",
2880
+ " \"Title\": \"total emission rate of CO from all biomass burning\",\n",
2881
+ " \"Type\": \"real\"\n",
2882
+ "}\n",
2883
+ "Could not interpret variable: {\n",
2884
+ " \"CMIP7 Variable Groups\": \"seaice_bgc_daily\",\n",
2885
+ " \"Cell Measures\": [\n",
2886
+ " \"recdWlLVgWuRs0LGa\"\n",
2887
+ " ],\n",
2888
+ " \"Cell Methods\": [\n",
2889
+ " \"recikI5axFizPaxLg\"\n",
2890
+ " ],\n",
2891
+ " \"Compound Name\": \"SIday.sichl\",\n",
2892
+ " \"Description\": \"Sum of chlorophyll from all ice algal group concentrations\\n\",\n",
2893
+ " \"Frequency\": [\n",
2894
+ " \"day\"\n",
2895
+ " ],\n",
2896
+ " \"Modeling Realm\": [\n",
2897
+ " \"ocnBgchem\",\n",
2898
+ " \"seaIce\"\n",
2899
+ " ],\n",
2900
+ " \"Ocean & sea-ice author team review\": \"In progress\",\n",
2901
+ " \"Physical Parameter\": [\n",
2902
+ " \"recDV6V3ZOvB7q4F3\"\n",
2903
+ " ],\n",
2904
+ " \"Spatial Shape\": [\n",
2905
+ " \"rec1eFSEpR5EWjdLK\"\n",
2906
+ " ],\n",
2907
+ " \"Status\": \"New\",\n",
2908
+ " \"Table\": [\n",
2909
+ " \"SIday\"\n",
2910
+ " ],\n",
2911
+ " \"Temporal Shape\": [\n",
2912
+ " \"recF1jvxHxPzKHG62\"\n",
2913
+ " ],\n",
2914
+ " \"Theme\": [\n",
2915
+ " \"Ocean & sea-ice\"\n",
2916
+ " ],\n",
2917
+ " \"Title\": \"Amount of Total Ice Algae Expressed as Chlorophyll in Sea Ice\",\n",
2918
+ " \"Type\": \"real\"\n",
2919
+ "}\n",
2920
+ "Could not interpret variable: {\n",
2921
+ " \"CMIP7 Variable Groups\": \"seaice_bgc_monthly\",\n",
2922
+ " \"Cell Measures\": [\n",
2923
+ " \"recdWlLVgWuRs0LGa\"\n",
2924
+ " ],\n",
2925
+ " \"Cell Methods\": [\n",
2926
+ " \"recikI5axFizPaxLg\"\n",
2927
+ " ],\n",
2928
+ " \"Compound Name\": \"SImon.sigpp\",\n",
2929
+ " \"Description\": \"Total GPP of ice algae in sea ice\\n\",\n",
2930
+ " \"Frequency\": [\n",
2931
+ " \"mon\"\n",
2932
+ " ],\n",
2933
+ " \"Modeling Realm\": [\n",
2934
+ " \"ocnBgchem\",\n",
2935
+ " \"seaIce\"\n",
2936
+ " ],\n",
2937
+ " \"Ocean & sea-ice author team review\": \"In progress\",\n",
2938
+ " \"Physical Parameter\": [\n",
2939
+ " \"recb4LRfY4TUFD9Xz\"\n",
2940
+ " ],\n",
2941
+ " \"Spatial Shape\": [\n",
2942
+ " \"rec1eFSEpR5EWjdLK\"\n",
2943
+ " ],\n",
2944
+ " \"Status\": \"New\",\n",
2945
+ " \"Table\": [\n",
2946
+ " \"SImon\"\n",
2947
+ " ],\n",
2948
+ " \"Temporal Shape\": [\n",
2949
+ " \"recF1jvxHxPzKHG62\"\n",
2950
+ " ],\n",
2951
+ " \"Theme\": [\n",
2952
+ " \"Ocean & sea-ice\"\n",
2953
+ " ],\n",
2954
+ " \"Title\": \"Gross primary production in sea ice as carbon amount flux\",\n",
2955
+ " \"Type\": \"real\"\n",
2956
+ "}\n",
2957
+ "Could not interpret variable: {\n",
2958
+ " \"Atmosphere author team review\": \"In progress\",\n",
2959
+ " \"CMIP7 Variable Groups\": \"aerchemmip_2d_monthly\",\n",
2960
+ " \"Cell Measures\": [\n",
2961
+ " \"recb1V00ayWZnmm79\"\n",
2962
+ " ],\n",
2963
+ " \"Cell Methods\": [\n",
2964
+ " \"recikI5axFizPaxLg\"\n",
2965
+ " ],\n",
2966
+ " \"Compound Name\": \"AERmon.rlutch4ref\",\n",
2967
+ " \"Description\": \"This is the outgoing longwave flux at the top-of-atmosphere for all-sky conditions from a diagnostic call to the radiation scheme using a reference methane field\\n\",\n",
2968
+ " \"Frequency\": [\n",
2969
+ " \"mon\"\n",
2970
+ " ],\n",
2971
+ " \"Modeling Realm\": [\n",
2972
+ " \"aerosol\"\n",
2973
+ " ],\n",
2974
+ " \"Physical Parameter\": [\n",
2975
+ " \"recD9c9XrKMh2ubrN\"\n",
2976
+ " ],\n",
2977
+ " \"Spatial Shape\": [\n",
2978
+ " \"rec1eFSEpR5EWjdLK\"\n",
2979
+ " ],\n",
2980
+ " \"Status\": \"Under review\",\n",
2981
+ " \"Table\": [\n",
2982
+ " \"AERmon\"\n",
2983
+ " ],\n",
2984
+ " \"Temporal Shape\": [\n",
2985
+ " \"recF1jvxHxPzKHG62\"\n",
2986
+ " ],\n",
2987
+ " \"Theme\": [\n",
2988
+ " \"Atmosphere\"\n",
2989
+ " ],\n",
2990
+ " \"Title\": \"TOA outgoing longwave flux assuming reference methane field\",\n",
2991
+ " \"Type\": \"real\"\n",
2992
+ "}\n",
2993
+ "Could not interpret variable: {\n",
2994
+ " \"Atmosphere author team review\": \"In progress\",\n",
2995
+ " \"CMIP7 Variable Groups\": \"aerchemmip_2d_monthly\",\n",
2996
+ " \"Cell Measures\": [\n",
2997
+ " \"recb1V00ayWZnmm79\"\n",
2998
+ " ],\n",
2999
+ " \"Cell Methods\": [\n",
3000
+ " \"recikI5axFizPaxLg\"\n",
3001
+ " ],\n",
3002
+ " \"Compound Name\": \"AERmon.rsutcsch4ref\",\n",
3003
+ " \"Description\": \"This is the outgoing shortwave flux at the top-of-atmosphere for clear-sky conditions from a diagnostic call to the radiation scheme with a reference methane field\\n\",\n",
3004
+ " \"Frequency\": [\n",
3005
+ " \"mon\"\n",
3006
+ " ],\n",
3007
+ " \"Modeling Realm\": [\n",
3008
+ " \"aerosol\"\n",
3009
+ " ],\n",
3010
+ " \"Physical Parameter\": [\n",
3011
+ " \"rec5gctP2ZvbmATZh\"\n",
3012
+ " ],\n",
3013
+ " \"Spatial Shape\": [\n",
3014
+ " \"rec1eFSEpR5EWjdLK\"\n",
3015
+ " ],\n",
3016
+ " \"Status\": \"Under review\",\n",
3017
+ " \"Table\": [\n",
3018
+ " \"AERmon\"\n",
3019
+ " ],\n",
3020
+ " \"Temporal Shape\": [\n",
3021
+ " \"recF1jvxHxPzKHG62\"\n",
3022
+ " ],\n",
3023
+ " \"Theme\": [\n",
3024
+ " \"Atmosphere\"\n",
3025
+ " ],\n",
3026
+ " \"Title\": \"TOA outgoing shortwave flux assuming clear-sky and reference methane field \",\n",
3027
+ " \"Type\": \"real\"\n",
3028
+ "}\n",
3029
+ "Could not interpret variable: {\n",
3030
+ " \"CMIP7 Variable Groups\": \"biodiv_marine_daily\",\n",
3031
+ " \"Cell Measures\": [\n",
3032
+ " \"recdWlLVgWuRs0LGa\"\n",
3033
+ " ],\n",
3034
+ " \"Cell Methods\": [\n",
3035
+ " \"rec7GGssqyuofwgXh\"\n",
3036
+ " ],\n",
3037
+ " \"Compound Name\": \"Oday.intppnano\",\n",
3038
+ " \"Description\": \"Vertically integrated primary (organic carbon) production by the nanophytoplankton component alone\\n\",\n",
3039
+ " \"Frequency\": [\n",
3040
+ " \"day\"\n",
3041
+ " ],\n",
3042
+ " \"Modeling Realm\": [\n",
3043
+ " \"ocnBgchem\"\n",
3044
+ " ],\n",
3045
+ " \"Ocean & sea-ice author team review\": \"In progress\",\n",
3046
+ " \"Physical Parameter\": [\n",
3047
+ " \"recWzTJ3owJA96DNT\"\n",
3048
+ " ],\n",
3049
+ " \"Spatial Shape\": [\n",
3050
+ " \"rec1eFSEpR5EWjdLK\"\n",
3051
+ " ],\n",
3052
+ " \"Status\": \"New\",\n",
3053
+ " \"Table\": [\n",
3054
+ " \"Oday\"\n",
3055
+ " ],\n",
3056
+ " \"Temporal Shape\": [\n",
3057
+ " \"recF1jvxHxPzKHG62\"\n",
3058
+ " ],\n",
3059
+ " \"Theme\": [\n",
3060
+ " \"Ocean & sea-ice\"\n",
3061
+ " ],\n",
3062
+ " \"Title\": \"Net Primary Mole Productivity of Carbon by nanophytoplankton\",\n",
3063
+ " \"Type\": \"real\"\n",
3064
+ "}\n",
3065
+ "Could not interpret variable: {\n",
3066
+ " \"Atmosphere author team review\": \"In progress\",\n",
3067
+ " \"CMIP7 Variable Groups\": \"aerchemmip_2d_monthly, land_ch4_fluxes\",\n",
3068
+ " \"Cell Measures\": [\n",
3069
+ " \"recb1V00ayWZnmm79\"\n",
3070
+ " ],\n",
3071
+ " \"Cell Methods\": [\n",
3072
+ " \"recikI5axFizPaxLg\"\n",
3073
+ " ],\n",
3074
+ " \"Compound Name\": \"AERmon.emilkch4\",\n",
3075
+ " \"Description\": \"This is the emission rate of methane (CH4) into the atmosphere from freshwater lakes\\n\",\n",
3076
+ " \"Frequency\": [\n",
3077
+ " \"mon\"\n",
3078
+ " ],\n",
3079
+ " \"Modeling Realm\": [\n",
3080
+ " \"aerosol\"\n",
3081
+ " ],\n",
3082
+ " \"Physical Parameter\": [\n",
3083
+ " \"recV3yVzDDvNAnEa1\"\n",
3084
+ " ],\n",
3085
+ " \"Spatial Shape\": [\n",
3086
+ " \"rec1eFSEpR5EWjdLK\"\n",
3087
+ " ],\n",
3088
+ " \"Status\": \"Under review\",\n",
3089
+ " \"Table\": [\n",
3090
+ " \"AERmon\"\n",
3091
+ " ],\n",
3092
+ " \"Temporal Shape\": [\n",
3093
+ " \"recF1jvxHxPzKHG62\"\n",
3094
+ " ],\n",
3095
+ " \"Theme\": [\n",
3096
+ " \"Atmosphere\"\n",
3097
+ " ],\n",
3098
+ " \"Title\": \"lake emission rate of CH4\",\n",
3099
+ " \"Type\": \"real\"\n",
3100
+ "}\n",
3101
+ "Could not interpret variable: {\n",
3102
+ " \"Cell Measures\": [\n",
3103
+ " \"recdWlLVgWuRs0LGa\"\n",
3104
+ " ],\n",
3105
+ " \"Cell Methods\": [\n",
3106
+ " \"recikI5axFizPaxLg\"\n",
3107
+ " ],\n",
3108
+ " \"Compound Name\": \"Oday.phycdiaz\",\n",
3109
+ " \"Description\": \"carbon concentration of diazotrophs\\n\",\n",
3110
+ " \"Frequency\": [\n",
3111
+ " \"day\"\n",
3112
+ " ],\n",
3113
+ " \"Modeling Realm\": [\n",
3114
+ " \"ocnBgchem\"\n",
3115
+ " ],\n",
3116
+ " \"Physical Parameter\": [\n",
3117
+ " \"rec7WGemSwlotP2e9\"\n",
3118
+ " ],\n",
3119
+ " \"Processing Note\": \"Analogous to Oday.phyc\\n\",\n",
3120
+ " \"Spatial Shape\": [\n",
3121
+ " \"rec1eFSEpR5EWjdLK\"\n",
3122
+ " ],\n",
3123
+ " \"Status\": \"New\",\n",
3124
+ " \"Table\": [\n",
3125
+ " \"Oday\"\n",
3126
+ " ],\n",
3127
+ " \"Temporal Shape\": [\n",
3128
+ " \"recF1jvxHxPzKHG62\"\n",
3129
+ " ],\n",
3130
+ " \"Theme\": [\n",
3131
+ " \"Ocean & sea-ice\"\n",
3132
+ " ],\n",
3133
+ " \"Title\": \"Carbon concentration of diazotrophs\",\n",
3134
+ " \"Type\": \"real\"\n",
3135
+ "}\n",
3136
+ "Could not interpret variable: {\n",
3137
+ " \"CMIP7 Variable Groups\": \"biodiv_marine_daily\",\n",
3138
+ " \"Cell Measures\": [\n",
3139
+ " \"recdWlLVgWuRs0LGa\"\n",
3140
+ " ],\n",
3141
+ " \"Cell Methods\": [\n",
3142
+ " \"rec7GGssqyuofwgXh\"\n",
3143
+ " ],\n",
3144
+ " \"Compound Name\": \"Oday.intppcocco\",\n",
3145
+ " \"Description\": \"Vertically integrated primary (organic carbon) production by the coccolithophores component alone\\n\",\n",
3146
+ " \"Frequency\": [\n",
3147
+ " \"day\"\n",
3148
+ " ],\n",
3149
+ " \"Modeling Realm\": [\n",
3150
+ " \"ocnBgchem\"\n",
3151
+ " ],\n",
3152
+ " \"Ocean & sea-ice author team review\": \"In progress\",\n",
3153
+ " \"Physical Parameter\": [\n",
3154
+ " \"recCvmBGO3xlXfmzb\"\n",
3155
+ " ],\n",
3156
+ " \"Spatial Shape\": [\n",
3157
+ " \"rec1eFSEpR5EWjdLK\"\n",
3158
+ " ],\n",
3159
+ " \"Status\": \"New\",\n",
3160
+ " \"Table\": [\n",
3161
+ " \"Oday\"\n",
3162
+ " ],\n",
3163
+ " \"Temporal Shape\": [\n",
3164
+ " \"recF1jvxHxPzKHG62\"\n",
3165
+ " ],\n",
3166
+ " \"Theme\": [\n",
3167
+ " \"Ocean & sea-ice\"\n",
3168
+ " ],\n",
3169
+ " \"Title\": \"Net Primary Mole Productivity of Carbon by coccolithophores\",\n",
3170
+ " \"Type\": \"real\"\n",
3171
+ "}\n",
3172
+ "Could not interpret variable: {\n",
3173
+ " \"Atmosphere author team review\": \"In progress\",\n",
3174
+ " \"CMIP7 Variable Groups\": \"aerchemmip_3d_monthly\",\n",
3175
+ " \"Cell Measures\": [\n",
3176
+ " \"recb1V00ayWZnmm79\"\n",
3177
+ " ],\n",
3178
+ " \"Cell Methods\": [\n",
3179
+ " \"recikI5axFizPaxLg\"\n",
3180
+ " ],\n",
3181
+ " \"Compound Name\": \"AERmon.tropch4lossoh\",\n",
3182
+ " \"Description\": \"This is the loss rate of tropospheric methane due to reaction with the hydroxy (OH) radical. The distinction between stratosphere and troposphere should be consistent with the tropopause used to calculate the pressure of the tropopause (ptp). \\n\",\n",
3183
+ " \"Frequency\": [\n",
3184
+ " \"mon\"\n",
3185
+ " ],\n",
3186
+ " \"Modeling Realm\": [\n",
3187
+ " \"aerosol\"\n",
3188
+ " ],\n",
3189
+ " \"Physical Parameter\": [\n",
3190
+ " \"recxNZTvqU9k0i9Es\"\n",
3191
+ " ],\n",
3192
+ " \"Spatial Shape\": [\n",
3193
+ " \"rece7NrwMj9ACYd39\"\n",
3194
+ " ],\n",
3195
+ " \"Status\": \"Under review\",\n",
3196
+ " \"Table\": [\n",
3197
+ " \"AERmon\"\n",
3198
+ " ],\n",
3199
+ " \"Temporal Shape\": [\n",
3200
+ " \"recF1jvxHxPzKHG62\"\n",
3201
+ " ],\n",
3202
+ " \"Theme\": [\n",
3203
+ " \"Atmosphere\"\n",
3204
+ " ],\n",
3205
+ " \"Title\": \"Tropospheric loss of methane by OH\",\n",
3206
+ " \"Type\": \"real\"\n",
3207
+ "}\n",
3208
+ "Could not interpret variable: {\n",
3209
+ " \"CMIP7 Variable Groups\": \"ocean_grid\",\n",
3210
+ " \"Cell Measures\": [\n",
3211
+ " \"rec5XdFZJqmV9cmq8\"\n",
3212
+ " ],\n",
3213
+ " \"Cell Methods\": [\n",
3214
+ " \"reccn8RUyCIT0DtYs\"\n",
3215
+ " ],\n",
3216
+ " \"Compound Name\": \"Ofx.thkcellto\",\n",
3217
+ " \"Description\": \"The time varying thickness of the gridboxes computed on the t-points\\n\",\n",
3218
+ " \"Frequency\": [\n",
3219
+ " \"mon\"\n",
3220
+ " ],\n",
3221
+ " \"Modeling Realm\": [\n",
3222
+ " \"ocean\"\n",
3223
+ " ],\n",
3224
+ " \"Ocean & sea-ice author team review\": \"In progress\",\n",
3225
+ " \"Physical Parameter\": [\n",
3226
+ " \"recnpVAZBFYmgB6ct\"\n",
3227
+ " ],\n",
3228
+ " \"Spatial Shape\": [\n",
3229
+ " \"rec1eFSEpR5EWjdLK\"\n",
3230
+ " ],\n",
3231
+ " \"Status\": \"Under review\",\n",
3232
+ " \"Table\": [\n",
3233
+ " \"Ofx\"\n",
3234
+ " ],\n",
3235
+ " \"Temporal Shape\": [\n",
3236
+ " \"recWkMQsqHF3CzF86\"\n",
3237
+ " ],\n",
3238
+ " \"Theme\": [\n",
3239
+ " \"Ocean & sea-ice\"\n",
3240
+ " ],\n",
3241
+ " \"Title\": \"Time Varying Gridbox thickness at t-points\",\n",
3242
+ " \"Type\": \"real\"\n",
3243
+ "}\n",
3244
+ "Could not interpret variable: {\n",
3245
+ " \"CMIP7 Variable Groups\": \"seaice_global_monthly_basic\",\n",
3246
+ " \"Cell Measures\": [\n",
3247
+ " \"recdWlLVgWuRs0LGa\"\n",
3248
+ " ],\n",
3249
+ " \"Cell Methods\": [\n",
3250
+ " \"recikI5axFizPaxLg\"\n",
3251
+ " ],\n",
3252
+ " \"Compound Name\": \"SImon.sisnmassn\",\n",
3253
+ " \"Description\": \"Total mass of snow on sea ice of all Northern-Hemisphere grid cells\\n\",\n",
3254
+ " \"Frequency\": [\n",
3255
+ " \"mon\"\n",
3256
+ " ],\n",
3257
+ " \"Modeling Realm\": [\n",
3258
+ " \"seaIce\"\n",
3259
+ " ],\n",
3260
+ " \"Ocean & sea-ice author team review\": \"In progress\",\n",
3261
+ " \"Physical Parameter\": [\n",
3262
+ " \"reci6HFzk3j91HEHp\"\n",
3263
+ " ],\n",
3264
+ " \"Spatial Shape\": [\n",
3265
+ " \"recoDb6p8Qjm7VaLZ\"\n",
3266
+ " ],\n",
3267
+ " \"Status\": \"New\",\n",
3268
+ " \"Table\": [\n",
3269
+ " \"SImon\"\n",
3270
+ " ],\n",
3271
+ " \"Temporal Shape\": [\n",
3272
+ " \"recF1jvxHxPzKHG62\"\n",
3273
+ " ],\n",
3274
+ " \"Theme\": [\n",
3275
+ " \"Ocean & sea-ice\"\n",
3276
+ " ],\n",
3277
+ " \"Title\": \"Sea-Ice Snow Mass North\",\n",
3278
+ " \"Type\": \"real\"\n",
3279
+ "}\n",
3280
+ "Could not interpret variable: {\n",
3281
+ " \"CMIP7 Variable Groups\": \"ocean_grid\",\n",
3282
+ " \"Cell Measures\": [\n",
3283
+ " \"rec5XdFZJqmV9cmq8\"\n",
3284
+ " ],\n",
3285
+ " \"Cell Methods\": [\n",
3286
+ " \"reccn8RUyCIT0DtYs\"\n",
3287
+ " ],\n",
3288
+ " \"Compound Name\": \"Ofx.dxuo\",\n",
3289
+ " \"Description\": \"The width of the ocean model gridbox in at the u-point (dx)\\n\",\n",
3290
+ " \"Frequency\": [\n",
3291
+ " \"fx\"\n",
3292
+ " ],\n",
3293
+ " \"Modeling Realm\": [\n",
3294
+ " \"ocean\"\n",
3295
+ " ],\n",
3296
+ " \"Ocean & sea-ice author team review\": \"In progress\",\n",
3297
+ " \"Physical Parameter\": [\n",
3298
+ " \"recUDAjvp3rFWUmed\"\n",
3299
+ " ],\n",
3300
+ " \"Spatial Shape\": [\n",
3301
+ " \"rec1eFSEpR5EWjdLK\"\n",
3302
+ " ],\n",
3303
+ " \"Status\": \"Under review\",\n",
3304
+ " \"Table\": [\n",
3305
+ " \"Ofx\"\n",
3306
+ " ],\n",
3307
+ " \"Temporal Shape\": [\n",
3308
+ " \"recWkMQsqHF3CzF86\"\n",
3309
+ " ],\n",
3310
+ " \"Theme\": [\n",
3311
+ " \"Ocean & sea-ice\"\n",
3312
+ " ],\n",
3313
+ " \"Title\": \"Eastward gridbox length at u points\",\n",
3314
+ " \"Type\": \"real\"\n",
3315
+ "}\n",
3316
+ "Could not interpret variable: {\n",
3317
+ " \"Atmosphere author team review\": \"In progress\",\n",
3318
+ " \"CMIP7 Variable Groups\": \"aerchemmip_2d_monthly, FireMIP_monthly\",\n",
3319
+ " \"Cell Measures\": [\n",
3320
+ " \"recb1V00ayWZnmm79\"\n",
3321
+ " ],\n",
3322
+ " \"Cell Methods\": [\n",
3323
+ " \"recikI5axFizPaxLg\"\n",
3324
+ " ],\n",
3325
+ " \"Compound Name\": \"AERmon.emibbso2\",\n",
3326
+ " \"Description\": \"This is the total emission rate of SO2 into the atmosphere from all biomass burning (natural and anthropogenic). \\n\",\n",
3327
+ " \"Frequency\": [\n",
3328
+ " \"mon\"\n",
3329
+ " ],\n",
3330
+ " \"Modeling Realm\": [\n",
3331
+ " \"aerosol\"\n",
3332
+ " ],\n",
3333
+ " \"Physical Parameter\": [\n",
3334
+ " \"recEmINEO8E5pBEKq\"\n",
3335
+ " ],\n",
3336
+ " \"Spatial Shape\": [\n",
3337
+ " \"rec1eFSEpR5EWjdLK\"\n",
3338
+ " ],\n",
3339
+ " \"Status\": \"Under review\",\n",
3340
+ " \"Table\": [\n",
3341
+ " \"AERmon\"\n",
3342
+ " ],\n",
3343
+ " \"Temporal Shape\": [\n",
3344
+ " \"recF1jvxHxPzKHG62\"\n",
3345
+ " ],\n",
3346
+ " \"Theme\": [\n",
3347
+ " \"Atmosphere\"\n",
3348
+ " ],\n",
3349
+ " \"Title\": \"total emission rate of SO2 from all biomass burning\",\n",
3350
+ " \"Type\": \"real\"\n",
3351
+ "}\n",
3352
+ "Could not interpret variable: {\n",
3353
+ " \"CMIP7 Variable Groups\": \"ocean_grid\",\n",
3354
+ " \"Cell Measures\": [\n",
3355
+ " \"rec5XdFZJqmV9cmq8\"\n",
3356
+ " ],\n",
3357
+ " \"Cell Methods\": [\n",
3358
+ " \"reccn8RUyCIT0DtYs\"\n",
3359
+ " ],\n",
3360
+ " \"Compound Name\": \"Ofx.dyuo\",\n",
3361
+ " \"Description\": \"The width of the ocean model gridbox in at the u-point (dy)\\n\",\n",
3362
+ " \"Frequency\": [\n",
3363
+ " \"fx\"\n",
3364
+ " ],\n",
3365
+ " \"Modeling Realm\": [\n",
3366
+ " \"ocean\"\n",
3367
+ " ],\n",
3368
+ " \"Ocean & sea-ice author team review\": \"In progress\",\n",
3369
+ " \"Physical Parameter\": [\n",
3370
+ " \"recbdIJNFgY5pasqx\"\n",
3371
+ " ],\n",
3372
+ " \"Spatial Shape\": [\n",
3373
+ " \"rec1eFSEpR5EWjdLK\"\n",
3374
+ " ],\n",
3375
+ " \"Status\": \"Under review\",\n",
3376
+ " \"Table\": [\n",
3377
+ " \"Ofx\"\n",
3378
+ " ],\n",
3379
+ " \"Temporal Shape\": [\n",
3380
+ " \"recWkMQsqHF3CzF86\"\n",
3381
+ " ],\n",
3382
+ " \"Theme\": [\n",
3383
+ " \"Ocean & sea-ice\"\n",
3384
+ " ],\n",
3385
+ " \"Title\": \"Northward gridbox length at u points\",\n",
3386
+ " \"Type\": \"real\"\n",
3387
+ "}\n",
3388
+ "Could not interpret variable: {\n",
3389
+ " \"CMIP7 Variable Groups\": \"paleo_fx, hydrology, paleo_permafrost\",\n",
3390
+ " \"Cell Measures\": [\n",
3391
+ " \"recb1V00ayWZnmm79\"\n",
3392
+ " ],\n",
3393
+ " \"Cell Methods\": [\n",
3394
+ " \"recppqC575nzhrnXJ\"\n",
3395
+ " ],\n",
3396
+ " \"Compound Name\": \"fx.sftlkf\",\n",
3397
+ " \"Description\": \"This variable describes the fraction of a land surface grid cell that is characterized as lake. It shall complement variable fx.sftlf that defines the fraction of land for a grid cell, while information of the lake fraction could only be indirectly derived (e.g. via LMon.LandCoverFrac). For grid cells fully covered by lake the value should be 1, for grid cells without lake coverage the value should be zero.\\n\",\n",
3398
+ " \"Earth system author team review\": \"In progress\",\n",
3399
+ " \"Frequency\": [\n",
3400
+ " \"fx\"\n",
3401
+ " ],\n",
3402
+ " \"Land & land-ice author team review\": \"In progress\",\n",
3403
+ " \"Modeling Realm\": [\n",
3404
+ " \"land\"\n",
3405
+ " ],\n",
3406
+ " \"Ocean & sea-ice author team review\": \"In progress\",\n",
3407
+ " \"Physical Parameter\": [\n",
3408
+ " \"recYhEruMrz4kTNrE\"\n",
3409
+ " ],\n",
3410
+ " \"Spatial Shape\": [\n",
3411
+ " \"rec1eFSEpR5EWjdLK\"\n",
3412
+ " ],\n",
3413
+ " \"Status\": \"Under review\",\n",
3414
+ " \"Table\": [\n",
3415
+ " \"fx\"\n",
3416
+ " ],\n",
3417
+ " \"Temporal Shape\": [\n",
3418
+ " \"recWkMQsqHF3CzF86\"\n",
3419
+ " ],\n",
3420
+ " \"Theme\": [\n",
3421
+ " \"Land & land-ice\",\n",
3422
+ " \"Earth System\",\n",
3423
+ " \"Ocean & sea-ice\"\n",
3424
+ " ],\n",
3425
+ " \"Title\": \"lake fraction\",\n",
3426
+ " \"Type\": \"real\"\n",
3427
+ "}\n",
3428
+ "Could not interpret variable: {\n",
3429
+ " \"Atmosphere author team review\": \"In progress\",\n",
3430
+ " \"CMIP7 Variable Groups\": \"dynvar_advanced\",\n",
3431
+ " \"Cell Measures\": [\n",
3432
+ " \"rec5XdFZJqmV9cmq8\"\n",
3433
+ " ],\n",
3434
+ " \"Cell Methods\": [\n",
3435
+ " \"recj82upWagLqGWER\"\n",
3436
+ " ],\n",
3437
+ " \"Comments\": [\n",
3438
+ " \"recepVFCJ6dtYTW0b\"\n",
3439
+ " ],\n",
3440
+ " \"Compound Name\": \"Emon.tauvnogw\",\n",
3441
+ " \"Description\": \"\\u00a0Vertical flux of meridional momentum within the non-orographic GW parameterization.\\n\",\n",
3442
+ " \"Frequency\": [\n",
3443
+ " \"mon\"\n",
3444
+ " ],\n",
3445
+ " \"Modeling Realm\": [\n",
3446
+ " \"atmos\"\n",
3447
+ " ],\n",
3448
+ " \"Physical Parameter\": [\n",
3449
+ " \"rec8pQorcjxcMorxp\"\n",
3450
+ " ],\n",
3451
+ " \"Spatial Shape\": [\n",
3452
+ " \"recAJTPKQTjvOpsr8\"\n",
3453
+ " ],\n",
3454
+ " \"Status\": \"Under review\",\n",
3455
+ " \"Table\": [\n",
3456
+ " \"Emon\"\n",
3457
+ " ],\n",
3458
+ " \"Temporal Shape\": [\n",
3459
+ " \"recF1jvxHxPzKHG62\"\n",
3460
+ " ],\n",
3461
+ " \"Theme\": [\n",
3462
+ " \"Atmosphere\"\n",
3463
+ " ],\n",
3464
+ " \"Title\": \"Northward Reynolds stress from non-orographic gravity wave parameterization\",\n",
3465
+ " \"Type\": \"real\"\n",
3466
+ "}\n"
3467
+ ]
3468
+ }
3469
+ ],
3470
+ "source": [
3471
+ "object_dict, structured_dict = build_dictionaries(\"first_export\")"
3472
+ ]
3473
+ },
3474
+ {
3475
+ "cell_type": "code",
3476
+ "execution_count": 12,
3477
+ "id": "6c561ead-5a55-4a38-b33e-4e8786e6bfb1",
3478
+ "metadata": {},
3479
+ "outputs": [],
3480
+ "source": [
3481
+ "# dictionary to allow lookup up of experiments\n",
3482
+ "experiment_name_to_record_id = {i.experiment_name: i.record_id \n",
3483
+ " for i in structured_dict['experiment'].values()}"
3484
+ ]
3485
+ },
3486
+ {
3487
+ "cell_type": "code",
3488
+ "execution_count": 13,
3489
+ "id": "26af5f3a-bf0a-453a-8548-195ef962a5b5",
3490
+ "metadata": {},
3491
+ "outputs": [
3492
+ {
3493
+ "data": {
3494
+ "text/plain": [
3495
+ "'rec7mTVv08z3iBObw'"
3496
+ ]
3497
+ },
3498
+ "execution_count": 13,
3499
+ "metadata": {},
3500
+ "output_type": "execute_result"
3501
+ }
3502
+ ],
3503
+ "source": [
3504
+ "experiment_name_to_record_id['historical']"
3505
+ ]
3506
+ },
3507
+ {
3508
+ "cell_type": "code",
3509
+ "execution_count": 14,
3510
+ "id": "aab9868c-6786-4c52-84d8-fe61b7d7c735",
3511
+ "metadata": {},
3512
+ "outputs": [
3513
+ {
3514
+ "data": {
3515
+ "text/plain": [
3516
+ "'recR7YVoWYdbQp3wk'"
3517
+ ]
3518
+ },
3519
+ "execution_count": 14,
3520
+ "metadata": {},
3521
+ "output_type": "execute_result"
3522
+ }
3523
+ ],
3524
+ "source": [
3525
+ "experiment_name_to_record_id['amip']"
3526
+ ]
3527
+ },
3528
+ {
3529
+ "cell_type": "code",
3530
+ "execution_count": 15,
3531
+ "id": "9c124a33-1999-487f-bfdd-da23f1ea3a86",
3532
+ "metadata": {},
3533
+ "outputs": [],
3534
+ "source": [
3535
+ "# Walk data request network from experiment to variable list:\n",
3536
+ "\n",
3537
+ "def walk_experiment_to_variables(experiment_id, object_dict):\n",
3538
+ " \"\"\"\n",
3539
+ " Navigate data request from specified experiment ids to record ids of corresponding variables\n",
3540
+ " \"\"\"\n",
3541
+ " expt_groups = set(object_dict[experiment_id].experiment_groups)\n",
3542
+ " print(\"found {} connected experiment groups\".format(len(expt_groups)))\n",
3543
+ "\n",
3544
+ " opportunities = set()\n",
3545
+ " for expt_group_id in expt_groups:\n",
3546
+ " expt_group_object = object_dict[expt_group_id] \n",
3547
+ " for opportunity_id in expt_group_object.opportunities:\n",
3548
+ " opportunities.add(opportunity_id)\n",
3549
+ "\n",
3550
+ " print(\"found {} connected opportunities\".format(len(opportunities)))\n",
3551
+ "\n",
3552
+ " variable_groups = set()\n",
3553
+ " for opportunity_id in opportunities:\n",
3554
+ " try:\n",
3555
+ " opportunity_object = object_dict[opportunity_id]\n",
3556
+ " except KeyError:\n",
3557
+ " print(f\"Opportunity '{opportunity_id}' could not be interpreted or does not exist\")\n",
3558
+ " for variable_group_id in opportunity_object.variable_groups:\n",
3559
+ " variable_groups.add(variable_group_id)\n",
3560
+ "\n",
3561
+ " print(\"found {} connected variable groups\".format(len(variable_groups)))\n",
3562
+ "\n",
3563
+ " variables = set()\n",
3564
+ " for variable_group_id in variable_groups:\n",
3565
+ " variable_group_object = object_dict[variable_group_id]\n",
3566
+ " for variable_id in variable_group_object.variables:\n",
3567
+ " variables.add(variable_id)\n",
3568
+ "\n",
3569
+ " print(\"found {} connected variables\".format(len(variables)))\n",
3570
+ "\n",
3571
+ " return list(variables)"
3572
+ ]
3573
+ },
3574
+ {
3575
+ "cell_type": "code",
3576
+ "execution_count": 16,
3577
+ "id": "accb60b6-6414-4adb-8bbb-c0ee7051455a",
3578
+ "metadata": {},
3579
+ "outputs": [
3580
+ {
3581
+ "name": "stdout",
3582
+ "output_type": "stream",
3583
+ "text": [
3584
+ "found 6 connected experiment groups\n",
3585
+ "found 71 connected opportunities\n",
3586
+ "Opportunity 'recPEd5VYE2273wr4' could not be interpreted or does not exist\n",
3587
+ "found 150 connected variable groups\n",
3588
+ "found 1501 connected variables\n"
3589
+ ]
3590
+ }
3591
+ ],
3592
+ "source": [
3593
+ "historical_variables = walk_experiment_to_variables(experiment_name_to_record_id['historical'],\n",
3594
+ " object_dict)"
3595
+ ]
3596
+ },
3597
+ {
3598
+ "cell_type": "code",
3599
+ "execution_count": 17,
3600
+ "id": "e022df1e-d3e4-4758-a089-0de36527fc50",
3601
+ "metadata": {},
3602
+ "outputs": [
3603
+ {
3604
+ "data": {
3605
+ "text/plain": [
3606
+ "['recPEd5VYE2273wr4']"
3607
+ ]
3608
+ },
3609
+ "execution_count": 17,
3610
+ "metadata": {},
3611
+ "output_type": "execute_result"
3612
+ }
3613
+ ],
3614
+ "source": [
3615
+ "# There is one opportunity without assigned variable groups\n",
3616
+ "[i for i in dreq[\"Data Request Opportunities (Public)\"][\"Opportunity\"][\"records\"] if \"Variable Groups\" not in dreq[\"Data Request Opportunities (Public)\"][\"Opportunity\"][\"records\"][i].keys()]"
3617
+ ]
3618
+ },
3619
+ {
3620
+ "cell_type": "code",
3621
+ "execution_count": 18,
3622
+ "id": "0538ddb5-853f-4a8c-be17-db20b637b612",
3623
+ "metadata": {},
3624
+ "outputs": [
3625
+ {
3626
+ "data": {
3627
+ "text/plain": [
3628
+ "{'Comments': ['rec65jWSjBcjny3D0'],\n",
3629
+ " 'Cross-thematic group review': 'Accept (pending actions)',\n",
3630
+ " 'Cross-thematic group review comments': 'Scientific proposition is fine.\\xa0\\nIncomplete -no variables provided and daily is high demand, not clear if necessary. But noted why would require daily.\\xa0\\n',\n",
3631
+ " 'Description': \"This is a set of daily variables that would be useful to assess the ability of Earth system models to reproduce the observed changes in plant phenology. The proper representation of the plant's active season impacts the accuracy of the Earth system models in representing energy, carbon, and water exchanges between land and atmosphere.\\nFor this reason, the availability of these variables at the vegetation type level can increase our understanding of model limitations (Li et al., 2024, <https://doi.org/10.1175/JCLI-D-23-0179.1>) and their expected future changes.\\n\",\n",
3632
+ " 'Earth system author team review': 'Accept',\n",
3633
+ " 'Earth system review comments': \"The variable group is provided (namely 'Vegetation\\\\_type'), but for some reason it is still missing in the public view tables.\\n\",\n",
3634
+ " 'Ensemble Size': 1,\n",
3635
+ " 'Expected Impacts': 'The historical experiment provides a benchmark to evaluate the model plant phenology biases (e.g. Peano et al., 2021, https://doi.org/10.5194/bg-18-2405-2021) while scenarios supply future changes. The main variable is the leaf area index (lai) commonly used to estimate the main phenophases (e.g. Peano et al., 2019, <https://doi.org/10.1029/2018JG004881>). The variables of carbon exchange between land and atmosphere (i.e. gpp, npp, rh, and ra) allow us to link the biases in productivity with changes in phenology (e.g. Li et al., 2023, [10.22541/essoar.168298711.15374345/v1](https://doi.org/10.22541/essoar.168298711.15374345/v1)). Finally, the landCoverFrac variable provides the relative influence of each vegetation type on the total grid cell.\\n',\n",
3636
+ " 'Experiment Groups': ['recJoILQRKYKsPdd3', 'recuqVDruA0gukjMw'],\n",
3637
+ " 'Justification of Resources': 'To realistically simulate terrestrial ecosystem processes and land-atmosphere carbon, energy, and water exchanges, it is crucial that the seasonality and trend of plant phenology are correctly captured by the Earth system models. This opportunity delineates a set of variables and experiments needed to expand our understanding of model weaknesses and strengths.',\n",
3638
+ " 'Land & land-ice author team review': 'Accept',\n",
3639
+ " 'Land & land-ice review comments': 'Need to define vegetation types at a later stage. Adjust title to be more specific. \\n',\n",
3640
+ " 'Lead theme': 'Land & Land-Ice',\n",
3641
+ " 'Opportunity ID': '53',\n",
3642
+ " 'Opportunity size': 12567,\n",
3643
+ " 'Status': 'Under review',\n",
3644
+ " 'Themes': ['Land & Land-Ice', 'Earth System'],\n",
3645
+ " 'Title of Opportunity': 'Plant Phenology'}"
3646
+ ]
3647
+ },
3648
+ "execution_count": 18,
3649
+ "metadata": {},
3650
+ "output_type": "execute_result"
3651
+ }
3652
+ ],
3653
+ "source": [
3654
+ "dreq[\"Data Request Opportunities (Public)\"][\"Opportunity\"][\"records\"]['recPEd5VYE2273wr4']"
3655
+ ]
3656
+ },
3657
+ {
3658
+ "cell_type": "code",
3659
+ "execution_count": 19,
3660
+ "id": "e1d2bda8-9f8c-42d1-978a-7649349ce3ca",
3661
+ "metadata": {},
3662
+ "outputs": [
3663
+ {
3664
+ "data": {
3665
+ "text/plain": [
3666
+ "['reccYHboFxdQGnneY',\n",
3667
+ " 'recdhyCim2B2oM1uI',\n",
3668
+ " 'rec2r2N1ePMePtGNE',\n",
3669
+ " 'recavF7FRGoU3GyKy',\n",
3670
+ " 'rec8dVXIVqkB6uA0W',\n",
3671
+ " 'recxsAs5fxvzjrcbB',\n",
3672
+ " 'reccOzAa5W2d8Obfe',\n",
3673
+ " 'rec9sjfRKkI9J8jly',\n",
3674
+ " 'recbIQTx79eAJnor5',\n",
3675
+ " 'reciWYwS6jELgSnpP']"
3676
+ ]
3677
+ },
3678
+ "execution_count": 19,
3679
+ "metadata": {},
3680
+ "output_type": "execute_result"
3681
+ }
3682
+ ],
3683
+ "source": [
3684
+ "# Show first few variable record_ids \n",
3685
+ "historical_variables[:10]"
3686
+ ]
3687
+ },
3688
+ {
3689
+ "cell_type": "code",
3690
+ "execution_count": 20,
3691
+ "id": "2d6b09b7-f103-4e77-b762-517c7e2669f8",
3692
+ "metadata": {},
3693
+ "outputs": [
3694
+ {
3695
+ "data": {
3696
+ "text/plain": [
3697
+ "True"
3698
+ ]
3699
+ },
3700
+ "execution_count": 20,
3701
+ "metadata": {},
3702
+ "output_type": "execute_result"
3703
+ }
3704
+ ],
3705
+ "source": [
3706
+ "# problem: record_ids for variables don't appear to match up in the json file used here\n",
3707
+ "# update: this problem seems fixed by mapping between the bases\n",
3708
+ "any([i in object_dict for i in historical_variables])"
3709
+ ]
3710
+ },
3711
+ {
3712
+ "cell_type": "code",
3713
+ "execution_count": 21,
3714
+ "id": "aa7fd74d-1d37-4a08-94b3-af1c906198cd",
3715
+ "metadata": {},
3716
+ "outputs": [
3717
+ {
3718
+ "data": {
3719
+ "text/plain": [
3720
+ "False"
3721
+ ]
3722
+ },
3723
+ "execution_count": 21,
3724
+ "metadata": {},
3725
+ "output_type": "execute_result"
3726
+ }
3727
+ ],
3728
+ "source": [
3729
+ "# that seems no longer a problem, but still not all variables can be interpreted\n",
3730
+ "all([i in object_dict for i in historical_variables])"
3731
+ ]
3732
+ }
3733
+ ],
3734
+ "metadata": {
3735
+ "kernelspec": {
3736
+ "display_name": "Python 3 (ipykernel)",
3737
+ "language": "python",
3738
+ "name": "python3"
3739
+ },
3740
+ "language_info": {
3741
+ "codemirror_mode": {
3742
+ "name": "ipython",
3743
+ "version": 3
3744
+ },
3745
+ "file_extension": ".py",
3746
+ "mimetype": "text/x-python",
3747
+ "name": "python",
3748
+ "nbconvert_exporter": "python",
3749
+ "pygments_lexer": "ipython3",
3750
+ "version": "3.12.0"
3751
+ }
3752
+ },
3753
+ "nbformat": 4,
3754
+ "nbformat_minor": 5
3755
+ }