Skip to content

Instantly share code, notes, and snippets.

@jbusecke
Created September 12, 2023 20:02
Show Gist options
  • Save jbusecke/021583916c0e2906d4053a3a4e872c04 to your computer and use it in GitHub Desktop.
Save jbusecke/021583916c0e2906d4053a3a4e872c04 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"id": "0a53e6e5-1ce6-4b9f-a64c-069225f58ea0",
"metadata": {
"tags": []
},
"outputs": [],
"source": [
"from xmip.utils import google_cmip_col"
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "7d3b7e13-9cdc-4c34-b94d-18b25a1639fa",
"metadata": {
"tags": []
},
"outputs": [
{
"data": {
"text/html": [
"<p><strong>pangeo-cmip6 catalog with 378 dataset(s) from 2655 asset(s)</strong>:</p> <div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>unique</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>activity_id</th>\n",
" <td>9</td>\n",
" </tr>\n",
" <tr>\n",
" <th>institution_id</th>\n",
" <td>30</td>\n",
" </tr>\n",
" <tr>\n",
" <th>source_id</th>\n",
" <td>55</td>\n",
" </tr>\n",
" <tr>\n",
" <th>experiment_id</th>\n",
" <td>26</td>\n",
" </tr>\n",
" <tr>\n",
" <th>member_id</th>\n",
" <td>152</td>\n",
" </tr>\n",
" <tr>\n",
" <th>table_id</th>\n",
" <td>1</td>\n",
" </tr>\n",
" <tr>\n",
" <th>variable_id</th>\n",
" <td>2</td>\n",
" </tr>\n",
" <tr>\n",
" <th>grid_label</th>\n",
" <td>3</td>\n",
" </tr>\n",
" <tr>\n",
" <th>zstore</th>\n",
" <td>2655</td>\n",
" </tr>\n",
" <tr>\n",
" <th>dcpp_init_year</th>\n",
" <td>0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>version</th>\n",
" <td>263</td>\n",
" </tr>\n",
" <tr>\n",
" <th>derived_variable_id</th>\n",
" <td>0</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"col = google_cmip_col()\n",
"cat = col.search(table_id='Lmon', variable_id=['gpp', 'lai'])\n",
"cat"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "9f9adbbb-d32f-4b00-84af-8c711404be28",
"metadata": {},
"outputs": [],
"source": [
"cat2 = col.search(table_id='Lmon', variable_id=['gpp', 'lai'], req)\n",
"cat2"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.10.12"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment