diff --git a/.buildinfo b/.buildinfo index b306d9f..b868cab 100644 --- a/.buildinfo +++ b/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: ea04c89f10cfd36e7f741fb244f51027 +config: f7fcf155f5a10a6883d1e7510fe19f43 tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/_images/68a026d30103b412d36989e564ed614ad7227d1761c014b0c4ab38f1a676782a.png b/_images/68a026d30103b412d36989e564ed614ad7227d1761c014b0c4ab38f1a676782a.png new file mode 100644 index 0000000..257c91f Binary files /dev/null and b/_images/68a026d30103b412d36989e564ed614ad7227d1761c014b0c4ab38f1a676782a.png differ diff --git a/_images/7e1ea413e7fd377606bd9e0019495cfb6485d89013c0a7889a1db62c041e4eb2.png b/_images/7e1ea413e7fd377606bd9e0019495cfb6485d89013c0a7889a1db62c041e4eb2.png deleted file mode 100644 index bea423d..0000000 Binary files a/_images/7e1ea413e7fd377606bd9e0019495cfb6485d89013c0a7889a1db62c041e4eb2.png and /dev/null differ diff --git a/_images/843012da33d062844654203d925bde1ce3b0162f93ac802b45b69c81683c690e.png b/_images/843012da33d062844654203d925bde1ce3b0162f93ac802b45b69c81683c690e.png deleted file mode 100644 index 53089d1..0000000 Binary files a/_images/843012da33d062844654203d925bde1ce3b0162f93ac802b45b69c81683c690e.png and /dev/null differ diff --git a/_images/9bee867a56de88b1034acb99182a91e94d0aeb73c8bf307973bd34cf8c4e3207.png b/_images/9bee867a56de88b1034acb99182a91e94d0aeb73c8bf307973bd34cf8c4e3207.png new file mode 100644 index 0000000..b9a65db Binary files /dev/null and b/_images/9bee867a56de88b1034acb99182a91e94d0aeb73c8bf307973bd34cf8c4e3207.png differ diff --git a/_static/basic.css b/_static/basic.css index e760386..2af6139 100644 --- a/_static/basic.css +++ b/_static/basic.css @@ -4,7 +4,7 @@ * * Sphinx stylesheet -- basic theme. * - * :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS. + * :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ diff --git a/_static/doctools.js b/_static/doctools.js index d06a71d..4d67807 100644 --- a/_static/doctools.js +++ b/_static/doctools.js @@ -4,7 +4,7 @@ * * Base JavaScript utilities for all Sphinx HTML documentation. * - * :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS. + * :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ diff --git a/_static/language_data.js b/_static/language_data.js index 250f566..367b8ed 100644 --- a/_static/language_data.js +++ b/_static/language_data.js @@ -5,7 +5,7 @@ * This script contains the language-specific data used by searchtools.js, * namely the list of stopwords, stemmer, scorer and splitter. * - * :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS. + * :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ @@ -13,7 +13,7 @@ var stopwords = ["a", "and", "are", "as", "at", "be", "but", "by", "for", "if", "in", "into", "is", "it", "near", "no", "not", "of", "on", "or", "such", "that", "the", "their", "then", "there", "these", "they", "this", "to", "was", "will", "with"]; -/* Non-minified version is copied as a separate JS file, is available */ +/* Non-minified version is copied as a separate JS file, if available */ /** * Porter Stemmer diff --git a/_static/searchtools.js b/_static/searchtools.js index 7918c3f..92da3f8 100644 --- a/_static/searchtools.js +++ b/_static/searchtools.js @@ -4,7 +4,7 @@ * * Sphinx JavaScript utilities for the full-text search. * - * :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS. + * :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ @@ -99,7 +99,7 @@ const _displayItem = (item, searchTerms, highlightTerms) => { .then((data) => { if (data) listItem.appendChild( - Search.makeSearchSummary(data, searchTerms) + Search.makeSearchSummary(data, searchTerms, anchor) ); // highlight search terms in the summary if (SPHINX_HIGHLIGHT_ENABLED) // set in sphinx_highlight.js @@ -116,8 +116,8 @@ const _finishSearch = (resultCount) => { ); else Search.status.innerText = _( - `Search finished, found ${resultCount} page(s) matching the search query.` - ); + "Search finished, found ${resultCount} page(s) matching the search query." + ).replace('${resultCount}', resultCount); }; const _displayNextItem = ( results, @@ -137,6 +137,22 @@ const _displayNextItem = ( // search finished, update title and status message else _finishSearch(resultCount); }; +// Helper function used by query() to order search results. +// Each input is an array of [docname, title, anchor, descr, score, filename]. +// Order the results by score (in opposite order of appearance, since the +// `_displayNextItem` function uses pop() to retrieve items) and then alphabetically. +const _orderResultsByScoreThenName = (a, b) => { + const leftScore = a[4]; + const rightScore = b[4]; + if (leftScore === rightScore) { + // same score: sort alphabetically + const leftTitle = a[1].toLowerCase(); + const rightTitle = b[1].toLowerCase(); + if (leftTitle === rightTitle) return 0; + return leftTitle > rightTitle ? -1 : 1; // inverted is intentional + } + return leftScore > rightScore ? 1 : -1; +}; /** * Default splitQuery function. Can be overridden in ``sphinx.search`` with a @@ -160,13 +176,26 @@ const Search = { _queued_query: null, _pulse_status: -1, - htmlToText: (htmlString) => { + htmlToText: (htmlString, anchor) => { const htmlElement = new DOMParser().parseFromString(htmlString, 'text/html'); - htmlElement.querySelectorAll(".headerlink").forEach((el) => { el.remove() }); + for (const removalQuery of [".headerlinks", "script", "style"]) { + htmlElement.querySelectorAll(removalQuery).forEach((el) => { el.remove() }); + } + if (anchor) { + const anchorContent = htmlElement.querySelector(`[role="main"] ${anchor}`); + if (anchorContent) return anchorContent.textContent; + + console.warn( + `Anchored content block not found. Sphinx search tries to obtain it via DOM query '[role=main] ${anchor}'. Check your theme or template.` + ); + } + + // if anchor not specified or not found, fall back to main content const docContent = htmlElement.querySelector('[role="main"]'); - if (docContent !== undefined) return docContent.textContent; + if (docContent) return docContent.textContent; + console.warn( - "Content block not found. Sphinx search tries to obtain it via '[role=main]'. Could you check your theme or template." + "Content block not found. Sphinx search tries to obtain it via DOM query '[role=main]'. Check your theme or template." ); return ""; }, @@ -239,16 +268,7 @@ const Search = { else Search.deferQuery(query); }, - /** - * execute search (requires search index to be loaded) - */ - query: (query) => { - const filenames = Search._index.filenames; - const docNames = Search._index.docnames; - const titles = Search._index.titles; - const allTitles = Search._index.alltitles; - const indexEntries = Search._index.indexentries; - + _parseQuery: (query) => { // stem the search terms and add them to the correct list const stemmer = new Stemmer(); const searchTerms = new Set(); @@ -284,16 +304,32 @@ const Search = { // console.info("required: ", [...searchTerms]); // console.info("excluded: ", [...excludedTerms]); - // array of [docname, title, anchor, descr, score, filename] - let results = []; + return [query, searchTerms, excludedTerms, highlightTerms, objectTerms]; + }, + + /** + * execute search (requires search index to be loaded) + */ + _performSearch: (query, searchTerms, excludedTerms, highlightTerms, objectTerms) => { + const filenames = Search._index.filenames; + const docNames = Search._index.docnames; + const titles = Search._index.titles; + const allTitles = Search._index.alltitles; + const indexEntries = Search._index.indexentries; + + // Collect multiple result groups to be sorted separately and then ordered. + // Each is an array of [docname, title, anchor, descr, score, filename]. + const normalResults = []; + const nonMainIndexResults = []; + _removeChildren(document.getElementById("search-progress")); - const queryLower = query.toLowerCase(); + const queryLower = query.toLowerCase().trim(); for (const [title, foundTitles] of Object.entries(allTitles)) { - if (title.toLowerCase().includes(queryLower) && (queryLower.length >= title.length/2)) { + if (title.toLowerCase().trim().includes(queryLower) && (queryLower.length >= title.length/2)) { for (const [file, id] of foundTitles) { let score = Math.round(100 * queryLower.length / title.length) - results.push([ + normalResults.push([ docNames[file], titles[file] !== title ? `${titles[file]} > ${title}` : title, id !== null ? "#" + id : "", @@ -308,46 +344,47 @@ const Search = { // search for explicit entries in index directives for (const [entry, foundEntries] of Object.entries(indexEntries)) { if (entry.includes(queryLower) && (queryLower.length >= entry.length/2)) { - for (const [file, id] of foundEntries) { - let score = Math.round(100 * queryLower.length / entry.length) - results.push([ + for (const [file, id, isMain] of foundEntries) { + const score = Math.round(100 * queryLower.length / entry.length); + const result = [ docNames[file], titles[file], id ? "#" + id : "", null, score, filenames[file], - ]); + ]; + if (isMain) { + normalResults.push(result); + } else { + nonMainIndexResults.push(result); + } } } } // lookup as object objectTerms.forEach((term) => - results.push(...Search.performObjectSearch(term, objectTerms)) + normalResults.push(...Search.performObjectSearch(term, objectTerms)) ); // lookup as search terms in fulltext - results.push(...Search.performTermsSearch(searchTerms, excludedTerms)); + normalResults.push(...Search.performTermsSearch(searchTerms, excludedTerms)); // let the scorer override scores with a custom scoring function - if (Scorer.score) results.forEach((item) => (item[4] = Scorer.score(item))); - - // now sort the results by score (in opposite order of appearance, since the - // display function below uses pop() to retrieve items) and then - // alphabetically - results.sort((a, b) => { - const leftScore = a[4]; - const rightScore = b[4]; - if (leftScore === rightScore) { - // same score: sort alphabetically - const leftTitle = a[1].toLowerCase(); - const rightTitle = b[1].toLowerCase(); - if (leftTitle === rightTitle) return 0; - return leftTitle > rightTitle ? -1 : 1; // inverted is intentional - } - return leftScore > rightScore ? 1 : -1; - }); + if (Scorer.score) { + normalResults.forEach((item) => (item[4] = Scorer.score(item))); + nonMainIndexResults.forEach((item) => (item[4] = Scorer.score(item))); + } + + // Sort each group of results by score and then alphabetically by name. + normalResults.sort(_orderResultsByScoreThenName); + nonMainIndexResults.sort(_orderResultsByScoreThenName); + + // Combine the result groups in (reverse) order. + // Non-main index entries are typically arbitrary cross-references, + // so display them after other results. + let results = [...nonMainIndexResults, ...normalResults]; // remove duplicate search results // note the reversing of results, so that in the case of duplicates, the highest-scoring entry is kept @@ -361,7 +398,12 @@ const Search = { return acc; }, []); - results = results.reverse(); + return results.reverse(); + }, + + query: (query) => { + const [searchQuery, searchTerms, excludedTerms, highlightTerms, objectTerms] = Search._parseQuery(query); + const results = Search._performSearch(searchQuery, searchTerms, excludedTerms, highlightTerms, objectTerms); // for debugging //Search.lastresults = results.slice(); // a copy @@ -466,14 +508,18 @@ const Search = { // add support for partial matches if (word.length > 2) { const escapedWord = _escapeRegExp(word); - Object.keys(terms).forEach((term) => { - if (term.match(escapedWord) && !terms[word]) - arr.push({ files: terms[term], score: Scorer.partialTerm }); - }); - Object.keys(titleTerms).forEach((term) => { - if (term.match(escapedWord) && !titleTerms[word]) - arr.push({ files: titleTerms[word], score: Scorer.partialTitle }); - }); + if (!terms.hasOwnProperty(word)) { + Object.keys(terms).forEach((term) => { + if (term.match(escapedWord)) + arr.push({ files: terms[term], score: Scorer.partialTerm }); + }); + } + if (!titleTerms.hasOwnProperty(word)) { + Object.keys(titleTerms).forEach((term) => { + if (term.match(escapedWord)) + arr.push({ files: titleTerms[term], score: Scorer.partialTitle }); + }); + } } // no match but word was a required one @@ -496,9 +542,8 @@ const Search = { // create the mapping files.forEach((file) => { - if (fileMap.has(file) && fileMap.get(file).indexOf(word) === -1) - fileMap.get(file).push(word); - else fileMap.set(file, [word]); + if (!fileMap.has(file)) fileMap.set(file, [word]); + else if (fileMap.get(file).indexOf(word) === -1) fileMap.get(file).push(word); }); }); @@ -549,8 +594,8 @@ const Search = { * search summary for a given text. keywords is a list * of stemmed words. */ - makeSearchSummary: (htmlText, keywords) => { - const text = Search.htmlToText(htmlText); + makeSearchSummary: (htmlText, keywords, anchor) => { + const text = Search.htmlToText(htmlText, anchor); if (text === "") return null; const textLower = text.toLowerCase(); diff --git a/aws-access.html b/aws-access.html index cb7bfbf..aebffa4 100644 --- a/aws-access.html +++ b/aws-access.html @@ -42,7 +42,7 @@ - + diff --git a/domains.html b/domains.html index 1c79967..a58a226 100644 --- a/domains.html +++ b/domains.html @@ -42,7 +42,7 @@ - + @@ -1934,7 +1934,7 @@

EUR-11 + dtype='float64', name='rlat', length=412))
  • CORDEX_domain :
    EUR-11
  • The dummy='topo' argument means, we want a dummy variable in the dataset to see how the domain looks like. For the dummy topography, we use the cdo topo operator in the background. So maybe you have to install python-cdo, e.g., conda install -c conda-forge python-cdo. Working with xarray datasets means, that we can use all the nice functions of xarray including plotting. The latest versions of py-cordex also come with an xarray accessor that allows you, e.g., to get a quick overview of the domain, using, e.g.

    @@ -1993,6 +1993,10 @@

    EUR-11

    +
    /Users/runner/micromamba-root/envs/cordex-tutorials/lib/python3.10/site-packages/cartopy/mpl/feature_artist.py:144: UserWarning: facecolor will have no effect as it has been defined as "never".
    +  warnings.warn('facecolor will have no effect as it has been '
    +
    +
    <GeoAxes: >
     
    @@ -2004,17 +2008,7 @@

    EUR-11

    -
    /Users/runner/micromamba-root/envs/cordex-tutorials/lib/python3.10/site-packages/cartopy/mpl/style.py:76: UserWarning: facecolor will have no effect as it has been defined as "never".
    -  warnings.warn('facecolor will have no effect as it has been '
    -/Users/runner/micromamba-root/envs/cordex-tutorials/lib/python3.10/site-packages/cartopy/mpl/style.py:76: UserWarning: facecolor will have no effect as it has been defined as "never".
    -  warnings.warn('facecolor will have no effect as it has been '
    -
    -
    -
    /Users/runner/micromamba-root/envs/cordex-tutorials/lib/python3.10/site-packages/cartopy/mpl/style.py:76: UserWarning: facecolor will have no effect as it has been defined as "never".
    -  warnings.warn('facecolor will have no effect as it has been '
    -
    -
    -_images/7e1ea413e7fd377606bd9e0019495cfb6485d89013c0a7889a1db62c041e4eb2.png +_images/68a026d30103b412d36989e564ed614ad7227d1761c014b0c4ab38f1a676782a.png

    We can also use the dummy topography to plot an overview:

    @@ -2025,7 +2019,7 @@

    EUR-11
    -
    <matplotlib.collections.QuadMesh at 0x144da9cc0>
    +
    <matplotlib.collections.QuadMesh at 0x14b783a30>
     
    _images/e211f9edb4990d7f33888bf922ae5d64fd7f0e734e0d9f8ca1ecaf979c33532f.png @@ -2038,7 +2032,7 @@

    EUR-11

    -
    <matplotlib.collections.QuadMesh at 0x144e61c30>
    +
    <matplotlib.collections.QuadMesh at 0x14b853c40>
     
    _images/2907ce25b108ebf2778c04a147b599ce4cf58e65cd6d0e6218c6c0a9a06ae1f4.png @@ -2111,7 +2105,7 @@

    EUR-11

    -_images/843012da33d062844654203d925bde1ce3b0162f93ac802b45b69c81683c690e.png +_images/9bee867a56de88b1034acb99182a91e94d0aeb73c8bf307973bd34cf8c4e3207.png
    @@ -2342,8 +2336,10 @@

    Using the grid information for interpolation -
    --2024-04-09 16:29:42--  https://raw.githubusercontent.com/remo-rcm/pyremo-data/main/orog_fx_MPI-ESM1-2-HR_historical_r1i1p1f1_gn.nc
    -Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.108.133, 185.199.109.133, 185.199.110.133, ...
    +
    --2024-05-08 19:03:02--  https://raw.githubusercontent.com/remo-rcm/pyremo-data/main/orog_fx_MPI-ESM1-2-HR_historical_r1i1p1f1_gn.nc
    +
    +
    +
    Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.108.133, 185.199.110.133, 185.199.109.133, ...
     Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.108.133|:443... connected.
     HTTP request sent, awaiting response... 
     
    @@ -2357,9 +2353,9 @@

    Using the grid information for interpolation
    @@ -3243,7 +3239,7 @@

    Interpolation using -
    <matplotlib.collections.QuadMesh at 0x145562c20>
    +
    <matplotlib.collections.QuadMesh at 0x14c2ffbe0>
     
    _images/2f8cc3edd325058dc20fcaf0aa2cb29e3d514bdff471e83adc004313235c9ca5.png @@ -3293,7 +3289,7 @@

    Alternative interpolation methods -
    <matplotlib.collections.QuadMesh at 0x146476aa0>
    +
    <matplotlib.collections.QuadMesh at 0x14d250d60>
     
    _images/7170b68778e58985cddc27ff10c7332fdb506e9ac887ff846a3f6c692bfc2925.png @@ -3307,7 +3303,7 @@

    Alternative interpolation methods -
    <matplotlib.collections.QuadMesh at 0x1464f9840>
    +
    <matplotlib.collections.QuadMesh at 0x14d2afac0>
     
    _images/efaab9a5cdc59f34ca99c542d0bf3697bd1c600e8cab4e55987b8ec3fac2d19f.png diff --git a/genindex.html b/genindex.html index b573933..8749f8f 100644 --- a/genindex.html +++ b/genindex.html @@ -41,7 +41,7 @@ - + diff --git a/intro.html b/intro.html index 456361f..0a07c8d 100644 --- a/intro.html +++ b/intro.html @@ -42,7 +42,7 @@ - + diff --git a/regional.html b/regional.html index e3eea52..160e72f 100644 --- a/regional.html +++ b/regional.html @@ -42,7 +42,7 @@ - + diff --git a/search.html b/search.html index 6d32d5b..9e552df 100644 --- a/search.html +++ b/search.html @@ -40,7 +40,7 @@ - + diff --git a/searchindex.js b/searchindex.js index 5a78f2b..07f1bb6 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["aws-access", "domains", "intro", "regional"], "filenames": ["aws-access.ipynb", "domains.ipynb", "intro.md", "regional.ipynb"], "titles": ["AWS Access", "Cordex domains", "Welcome to the CORDEX Tutorials!", "Regional means"], "terms": {"A": [0, 1], "grow": 0, "number": [0, 1], "cordex": [0, 3], "dataset": [0, 1, 3], "i": [0, 1, 2, 3], "now": [0, 1, 3], "avail": [0, 1, 2], "from": [0, 1, 2, 3], "s3": [0, 1, 3], "In": [0, 3], "thi": [0, 1, 2, 3], "exampl": [0, 3], "we": [0, 1, 3], "show": [0, 1, 3], "how": [0, 1, 3], "deriv": 0, "dask": [0, 1, 3], "distribut": [0, 1, 3], "import": [0, 1, 3], "client": [0, 3], "4a5976e3": 0, "0183": 0, "11ee": [0, 3], "928a": 0, "080038c05de1": 0, "connect": [0, 1, 3], "method": [0, 3], "cluster": [0, 3], "object": [0, 1, 3], "type": [0, 1, 3], "localclust": [0, 3], "dashboard": [0, 3], "user": [0, 3], "g300046": 0, "levant": 0, "spawner": 0, "preset": 0, "proxi": [0, 3], "8787": [0, 3], "statu": [0, 3], "info": [0, 3], "7ecd69b9": 0, "worker": [0, 3], "16": [0, 1, 3], "total": [0, 3], "thread": [0, 3], "256": 0, "memori": [0, 1, 3], "235": 0, "37": [0, 1], "gib": [0, 3], "run": [0, 3], "process": [0, 3], "true": [0, 1, 3], "schedul": [0, 3], "e64ea2c3": 0, "858b": 0, "4233": 0, "b61d": 0, "b2ef8fc7afd7": 0, "comm": [0, 3], "tcp": [0, 3], "127": [0, 3], "0": [0, 1, 3], "1": [0, 1, 3], "41235": 0, "start": [0, 3], "just": [0, 3], "41111": 0, "40821": 0, "14": [0, 1, 3], "71": [0, 1], "nanni": [0, 3], "41607": 0, "local": [0, 3], "directori": [0, 3], "tmp": [0, 3], "space": [0, 3], "v1esnpac": 0, "34879": 0, "40627": 0, "44137": 0, "lh7bbaap": 0, "2": [0, 1, 3], "35503": 0, "40555": 0, "43701": 0, "wif0l4jq": 0, "3": [0, 1, 3], "41101": 0, "36503": 0, "32907": 0, "wl_1xidi": 0, "4": [0, 1, 3], "43465": 0, "45937": 0, "35365": 0, "dveyg8kd": 0, "5": [0, 1, 3], "36237": 0, "42605": 0, "41307": 0, "_y_vz218": 0, "6": [0, 1, 3], "37013": 0, "42733": 0, "43859": 0, "sccalkd": 0, "7": [0, 1, 3], "35859": 0, "46553": 0, "41239": 0, "0cj6j8x4": 0, "8": [0, 1, 3], "46347": 0, "37095": 0, "37803": 0, "jlbaa02h": 0, "9": [0, 1, 3], "44733": 0, "38879": 0, "45875": 0, "5pzvcfje": 0, "10": [0, 1, 3], "35087": 0, "34231": 0, "41155": 0, "s253ymsv": 0, "11": [0, 3], "37085": 0, "46787": 0, "37071": 0, "5ezpfj6d": 0, "12": [0, 1], "36379": 0, "32953": 0, "46357": 0, "bge43y6d": 0, "13": [0, 1], "35509": 0, "32787": 0, "32985": 0, "cn0nf5ph": 0, "33263": 0, "40853": 0, "35567": 0, "7alydjej": 0, "15": [0, 1, 3], "36937": 0, "43793": 0, "33845": 0, "6qnxo7uk": 0, "cf_xarrai": [0, 1, 3], "cfxr": [0, 3], "fsspec": [0, 3], "intak": [0, 3], "xarrai": [0, 1, 3], "xr": [0, 1, 3], "url": [0, 1, 3], "http": [0, 1, 2, 3], "euro": [0, 2, 3], "eu": [0, 3], "central": [0, 1, 3], "amazonaw": [0, 1, 3], "com": [0, 1, 3], "catalog": [0, 3], "cmip5": [0, 3], "json": [0, 3], "cat": [0, 3], "open_esm_datastor": [0, 3], "177": 0, "": [0, 1, 3], "asset": 0, "uniqu": 0, "project_id": [0, 3], "product": 0, "cordex_domain": [0, 1, 3], "institute_id": [0, 3], "driving_model_id": [0, 3], "experiment_id": [0, 3], "member": [0, 3], "model_id": [0, 3], "rcm_version_id": [0, 3], "frequenc": [0, 3], "variable_id": [0, 1, 3], "version": [0, 1], "89": [0, 1], "path": 0, "derived_variable_id": 0, "df": [0, 3], "head": 0, "output": [0, 1, 3], "eur": [0, 3], "clmcom": [0, 3], "eth": [0, 3], "mpi": [0, 1, 3], "m": [0, 1, 3], "lr": [0, 3], "histor": [0, 1, 3], "r1i1p1": [0, 3], "cosmo": [0, 3], "crclim": [0, 3], "v1": [0, 3], "mon": [0, 3], "ta": [0, 1, 3], "v20191219": 0, "cl": 0, "smhi": [0, 3], "cnrm": [0, 3], "cerfac": [0, 3], "cm5": [0, 3], "rca4": [0, 3], "v20131026": 0, "sm": 0, "rcp85": [0, 3], "v20210430": 0, "knmi": [0, 3], "ichec": [0, 3], "ec": [0, 3], "earth": [0, 1, 2, 3], "r3i1p1": [0, 3], "racmo22": [0, 3], "v20190108": 0, "kn": 0, "dmi": [0, 3], "hirham5": [0, 3], "v2": [0, 3], "v20190208": 0, "dm": 0, "can": [0, 1, 3], "singl": 0, "data": [0, 1, 2, 3], "datafram": 0, "e": [0, 1, 3], "g": [0, 1, 3], "look": [0, 1, 2, 3], "iloc": 0, "name": [0, 1, 3], "dtype": [0, 1, 3], "zarr": 0, "d": [0, 1, 3], "open_zarr": 0, "store": [0, 1], "get_mapp": 0, "anon": [0, 3], "consolid": [0, 3], "lt": [0, 1, 3], "gt": [0, 1, 3], "dimens": [0, 1], "rlat": [0, 1, 3], "412": [0, 1, 3], "rlon": [0, 1, 3], "424": [0, 1, 3], "time": [0, 1, 3], "684": 0, "bnd": [0, 1], "coordin": [0, 1, 3], "height": [0, 1, 3], "float64": [0, 1, 3], "lat": [0, 1, 3], "arrai": [0, 3], "chunksiz": [0, 3], "meta": [0, 1, 3], "np": [0, 3], "ndarrai": [0, 3], "lon": [0, 1, 3], "23": [0, 1, 3], "38": [0, 1, 3], "26": [0, 1], "21": [0, 1, 3], "61": [0, 1, 3], "73": [0, 1, 3], "83": [0, 1], "28": [0, 1, 3], "17": [0, 1, 3], "93": [0, 1, 3], "18": [0, 1, 3], "05": [0, 1, 3], "datetime64": 0, "n": 0, "1949": 0, "01": [0, 1], "16t12": 0, "00": [0, 1, 3], "2005": [0, 3], "without": [0, 1], "variabl": [0, 1], "rotated_pol": [0, 1, 3], "s1": [0, 3], "float32": [0, 1], "143": [0, 1], "time_bnd": 0, "attribut": [0, 1, 3], "convent": [0, 1], "cf": [0, 1, 3], "c3s_disclaim": 0, "ha": [0, 1], "been": [0, 1], "produc": [0, 1], "contex": 0, "comment": [0, 1], "pleas": [0, 1], "follow": [0, 3], "refer": [0, 1], "th": 0, "config_cclm": 0, "11_clmcom": 0, "1_01_co": 0, "config_int2lm": 0, "11_int2lm2": 0, "1_01_config": 0, "clm": 0, "commun": 0, "sourc": [0, 3], "climat": [0, 3], "limit": [0, 1, 3], "area": [0, 1, 3], "model": [0, 1, 3], "titl": [0, 1, 3], "tracking_id": [0, 1], "151e60a4": 0, "e4c0": 0, "11e9": 0, "a214": 0, "d09466354597xarrai": 0, "datasetdimens": [0, 1], "412rlon": [0, 1, 3], "424time": 0, "684bnd": 0, "2coordin": 0, "axi": [0, 1], "zlong_nam": [0, 3], "heightposit": [0, 3], "upstandard_nam": [0, 3], "heightunit": [0, 3], "valu": [0, 1, 3], "float64dask": 0, "long_nam": [0, 1, 3], "latitudestandard_nam": [0, 1], "latitudeunit": [0, 1, 3], "degrees_north": 0, "chunk": [0, 3], "byte": [0, 3], "33": [0, 1], "mib": 0, "shape": [0, 1, 3], "graph": [0, 3], "layer": [0, 1, 3], "numpi": [0, 3], "longitudestandard_nam": [0, 1], "longitudeunit": [0, 1, 3], "degrees_east": 0, "83axi": 0, "ylong_nam": [0, 1], "latitud": [0, 1, 3], "rotat": [0, 1, 3], "pole": [0, 1, 3], "gridstandard_nam": 0, "grid_latitudeunit": 0, "degreesarrai": [0, 1, 3], "375": [0, 1, 3], "264999": 0, "155001": 0, "615": [0, 1, 3], "725": [0, 1, 3], "834999": 0, "16axi": [0, 1, 3], "xlong_nam": [0, 1], "longitud": [0, 1, 3], "grid_longitudeunit": 0, "934999": 0, "045": [0, 1, 3], "tbound": 0, "time_bndslong_nam": 0, "timestandard_nam": 0, "timearrai": 0, "x27": [0, 1, 3], "000000000": 0, "02": [0, 1], "15t00": 0, "03": [0, 1, 3], "16t00": 0, "grid_mapping_nam": [0, 3], "rotated_latitude_longitudegrid_north_pole_latitud": [0, 1, 3], "39": [0, 1, 3], "25grid_north_pole_longitud": [0, 1, 3], "162": [0, 1, 3], "0long_nam": [0, 3], "north": [0, 1, 3], "float32dask": 0, "cell_method": [0, 1, 3], "meangrid_map": [0, 3], "rotated_polelong_nam": [0, 3], "Near": [0, 3], "surfac": [0, 1, 3], "air": [0, 3], "temperaturestandard_nam": [0, 3], "air_temperatureunit": [0, 3], "k": [0, 3], "455": 0, "81": [0, 1, 3], "95": [0, 1, 3], "29": [0, 1], "69": [0, 1, 3], "kib": [0, 3], "index": [0, 1, 3], "rlatpandasindexpandasindex": [0, 1, 3], "float64index": [0, 3], "264999389648438": 0, "155000686645508": 0, "045000076293945": 0, "22": [0, 1, 3], "934999465942383": 0, "825000762939453": 0, "71500015258789": 0, "604999542236328": 0, "4950008392334": 0, "385000228881836": 0, "20": [0, 1, 3], "844999313354492": 0, "954999923706055": 0, "065000534057617": 0, "174999237060547": 0, "28499984741211": 0, "395000457763672": 0, "5049991607666": 0, "614999771118164": 0, "725000381469727": 0, "834999084472656": 0, "length": [0, 1, 3], "rlonpandasindexpandasindex": [0, 1, 3], "27": [0, 1, 3], "165000915527344": 0, "274999618530273": 0, "timepandasindexpandasindex": 0, "datetimeindex": 0, "04": [0, 1], "06": [0, 1, 3], "07": [0, 1, 3], "08": [0, 1], "09": [0, 1], "freq": 0, "none": [0, 1, 3], "11convent": 0, "4c3s_disclaim": 0, "context": 0, "c3s_34b_lot1": 0, "lot": 0, "project": [0, 1, 3], "principl": 0, "cordex4cd": 0, "provid": [0, 1], "within": 0, "copernicu": 0, "servic": 0, "c3": [0, 3], "while": 0, "abid": 0, "highest": 0, "scientif": 0, "technic": 0, "standard": [0, 1], "ecmwf": 0, "cannot": 0, "warrant": 0, "ani": [0, 1], "inform": [0, 3], "free": 0, "error": 0, "omiss": 0, "rectifi": 0, "appli": 0, "continu": 0, "develop": [0, 1], "ar": [0, 1, 3], "made": 0, "publicli": 0, "purpos": [0, 1], "feedback": 0, "test": 0, "some": [0, 1, 3], "metadata": 0, "mai": [0, 1], "have": [0, 1, 3], "creat": [0, 1, 2, 3], "structur": 0, "file": [0, 1], "format": [0, 2], "accept": 0, "respons": [0, 1], "regard": 0, "problem": 0, "incur": 0, "result": [0, 1, 3], "see": [0, 1, 2, 3], "disclaim": 0, "privaci": 0, "full": 0, "perform": 0, "zurich": 0, "collabor": 0, "communityconfig_cclm": 0, "1_01_configconfig_int2lm": 0, "1_01_configcontact": 0, "env": [0, 1], "ethz": 0, "chconventionsurl": 0, "www": [0, 2], "cfconvent": 0, "orgcreation_d": 0, "2019": [0, 1, 3], "55": [0, 1, 3], "25driving_experi": 0, "r1i1p1driving_experiment_nam": 0, "historicaldriving_model_ensemble_memb": 0, "r1i1p1driving_model_id": 0, "lrexperi": 0, "gcm": 0, "forcingexperiment_id": 0, "historicalfrequ": 0, "moninstitute_id": 0, "ethinstitut": 0, "switzerland": 0, "communitymodel_id": 0, "1product": [0, 1], "outputproject_id": [0, 1], "cordexrcm_version_id": 0, "v1refer": 0, "prepar": [0, 1], "cordextracking_id": 0, "d09466354597": 0, "isel": [0, 3], "273": [0, 3], "matplotlib": [0, 1, 3], "quadmesh": [0, 1], "0x7ffe6dde79a0": 0, "close": 0, "also": [0, 1], "dictionari": [0, 1, 3], "up": [0, 3], "all": [0, 3], "2m": 0, "temperatur": [0, 3], "search": [0, 3], "them": [0, 1, 3], "subset": [0, 3], "rcp26": [0, 3], "rcp45": [0, 3], "165": [0, 1, 3], "84": [0, 1, 3], "dset": [0, 1, 3], "to_dataset_dict": [0, 3], "xarray_open_kwarg": [0, 3], "decode_tim": [0, 3], "use_cftim": [0, 3], "storage_opt": [0, 3], "The": [0, 1, 3], "kei": [0, 1, 3], "return": [0, 1, 3], "construct": [0, 3], "100": [0, 1, 3], "let": [0, 1, 3], "check": [0, 1, 2, 3], "size": [0, 1], "lazili": 0, "sum": 0, "nbyte": 0, "print": 0, "f": [0, 1, 3], "e9": 0, "gb": 0, "117": 0, "931165865": 0, "There": 0, "differ": [0, 1, 3], "datset": 0, "each": [0, 1, 3], "scenario": 0, "For": [0, 1], "later": 0, "sort": [0, 1, 3], "those": [0, 1, 3], "out": [0, 2, 3], "combin": 0, "so": [0, 1], "make": [0, 1, 3], "easili": [0, 1, 3], "ordereddict": [0, 3], "defaultdict": [0, 3], "tqdm": [0, 3], "def": [0, 1, 3], "sort_dataset": [0, 3], "append": 0, "dict": [0, 3], "dset_id": [0, 3], "item": [0, 1, 3], "exp_id": [0, 3], "split": [0, 3], "new_id": [0, 3], "replac": [0, 1, 3], "correspond": [0, 1, 2], "concat": [0, 3], "hist_id": 0, "found": [0, 1], "v": 0, "els": [0, 3], "dim": [0, 1, 3], "sel": [0, 3], "slice": [0, 3], "2006": [0, 3], "2100": [0, 3], "1950": [0, 3], "dsets_sort": [0, 3], "464": [0, 1], "92it": 0, "r12i1p1": [0, 3], "cclm4": [0, 3], "vertic": 0, "672": [0, 1], "lat_vertic": 0, "lon_vertic": 0, "rotated_latitude_longitud": [0, 1, 3], "int32": [0, 1, 3], "142": [0, 1], "45": [0, 1], "cmor_vers": [0, 1], "europ": [0, 1, 3], "rcm": [0, 1], "cclm": 0, "deg": 0, "contact": [0, 1], "dkrz": [0, 1], "de": [0, 1], "creation_d": 0, "2014": [0, 3], "19t07": 0, "56": [0, 1], "10z": 0, "intake_esm_attr": 0, "v20140515": 0, "_data_format_": 0, "intake_esm_dataset_kei": 0, "h": 0, "424vertic": 0, "4time": 0, "672bnd": 0, "bound": 0, "lat_verticeslong_nam": 0, "coordinatestandard_nam": 0, "682": 0, "lon_verticeslong_nam": 0, "object1950": 0, "cftime": 0, "datetimeprolepticgregorian": 0, "has_year_zero": 0, "unit": [0, 1, 3], "67": [0, 1], "0north_pole_grid_longitud": [0, 1, 3], "associated_fil": 0, "gridspecfil": 0, "gridspec_atmos_fx_clmcom": 0, "17_historical_r0i0p0": 0, "nccell_method": 0, "meancom": 0, "daili": 0, "usual": 0, "meter": 0, "grid_map": [0, 1, 3], "rotated_latitude_longitudehistori": 0, "alter": [0, 1], "cmor": [0, 1], "treat": 0, "scalar": 0, "447": 0, "objectdask": 0, "50": [0, 1], "cftimeindex": 0, "calendar": 0, "proleptic_gregorian": 0, "4cmor_vers": 0, "1comment": 0, "11contact": 0, "decreation_d": [0, 1], "10zdriving_experi": 0, "r12i1p1driving_experiment_nam": 0, "r12i1p1driving_model_id": 0, "earthexperi": 0, "historicalexperiment_id": 0, "monhistori": 0, "archiv": [0, 1], "svn": 0, "revis": 0, "4244": 0, "mad": 0, "zmaw": 0, "imdi": 0, "tag": 0, "cosmo_090213_4": 0, "8_clm17_cordex": 0, "util": 0, "rewrot": [0, 1], "compli": 0, "requir": [0, 1, 2], "initialization_method": 0, "1institute_id": 0, "clmcominstitut": 0, "17modeling_realm": 0, "atmosphysics_vers": 0, "v1realiz": 0, "12refer": 0, "17table_id": 0, "tabl": [0, 1], "sept": 0, "2013": [0, 3], "1a8d24384e63c141a57dbedfd6710546titl": 0, "historicaltracking_id": 0, "8ea5bde0": 0, "6eab": 0, "4988": 0, "bf8b": 0, "4860c6aa36faintake_esm_var": 0, "cordexintake_esm_attr": 0, "outputintake_esm_attr": 0, "11intake_esm_attr": 0, "clmcomintake_esm_attr": 0, "earthintake_esm_attr": 0, "historicalintake_esm_attr": 0, "r12i1p1intake_esm_attr": 0, "17intake_esm_attr": 0, "v1intake_esm_attr": 0, "monintake_esm_attr": 0, "tasintake_esm_attr": 0, "v20140515intake_esm_attr": 0, "zarrintake_esm_dataset_kei": 0, "groupbi": [0, 3], "year": [0, 3], "x": [0, 1, 3], "y": [0, 1, 3], "30": [0, 1, 3], "line": [0, 1, 3], "line2d": [0, 3], "0x7ffabe552250": 0, "do": [0, 1], "whole": 0, "defin": [0, 3], "function": [0, 1, 3], "simpl": 0, "concaten": 0, "one": [0, 1, 2, 3], "set_opt": [0, 3], "keep_attr": [0, 3], "yearly_mean": 0, "ensemble_mean": [0, 3], "dataarrai": [0, 1, 3], "list": [0, 3], "coord": [0, 3], "minim": [0, 3], "compat": [0, 3], "overrid": [0, 3], "here": [0, 3], "hit": 0, "button": 0, "take": 0, "minut": 0, "sinc": [0, 1], "reduc": 0, "spatic": 0, "tempor": 0, "cpu": [0, 3], "1min": 0, "sy": [0, 3], "19": [0, 1], "wall": [0, 3], "2min": 0, "dict_kei": [0, 3], "step": [0, 1], "scneario": 0, "That": [0, 1], "analysi": [0, 3], "much": 0, "easier": 0, "copi": 0, "deep": 0, "again": [0, 3], "our": [0, 1, 3], "e6": 0, "mb": [0, 1], "152208": 0, "actual": [0, 1, 3], "degre": 0, "celsiu": 0, "where": [0, 3], "drop": [0, 3], "loc": [0, 1, 3], "got": 0, "overview": [0, 1], "col": [0, 3], "col_wrap": [0, 3], "hue": [0, 3], "figsiz": [0, 1, 3], "facetgrid": [0, 3], "0x7ffa1a759d60": 0, "0x7ffa991e7e20": 0, "These": 0, "nice": [0, 1], "don": [0, 1], "t": [0, 1], "realli": 0, "give": [0, 1, 3], "valuabl": 0, "insight": 0, "howev": [0, 1], "convert": 0, "panda": 0, "stastic": 0, "to_datafram": [0, 3], "reset_index": [0, 3], "nan": [0, 1, 3], "1951": [0, 3], "283": 0, "503998": 0, "1952": [0, 3], "518219": 0, "1953": [0, 3], "295319": 0, "1954": [0, 3], "110107": 0, "38047": 0, "uhoh": [0, 3], "wrf": [0, 3], "2096": [0, 3], "287": [0, 3], "308136": 0, "38048": 0, "2097": [0, 3], "299774": 0, "38049": 0, "2098": [0, 3], "437317": 0, "38050": 0, "2099": [0, 3], "403107": 0, "38051": 0, "262115": 0, "38052": 0, "row": [0, 3], "column": [0, 3], "sn": [0, 3], "palett": [0, 3], "c0": [0, 3], "c2": [0, 3], "c1": [0, 3], "relplot": [0, 3], "kind": [0, 3], "errorbar": [0, 3], "ci": [0, 3], "aspect": [0, 3], "set": [0, 1, 3], "95th": [0, 3], "percentil": [0, 3], "confid": [0, 3], "interv": [0, 3], "axisgrid": 0, "0x7ffa9a14d280": 0, "usus": 0, "window": 0, "timescal": 0, "decad": 0, "achiev": 0, "care": 0, "fill": 0, "get": [0, 1, 3], "gap": 0, "when": 0, "achiv": 0, "notat": 0, "similar": [0, 1], "rolling_mean": 0, "timelin": 0, "center": 0, "fals": [0, 1, 3], "instead": [0, 1], "absolut": 0, "more": [0, 1, 2, 3], "interest": [0, 3], "respect": 0, "period": [0, 1], "choos": 0, "1961": [0, 3], "1990": [0, 3], "63": [0, 1], "151": [0, 3], "580017": 0, "627594": 0, "588501": 0, "993927": 0, "091522": 0, "2050476": 0, "4456177": 0, "4381714": 0, "487091": 0, "3269653": 0, "3974915": 0, "467041": 0, "248413": 0, "331543": 0, "4112244": 0, "158966": 0, "149475": 0, "22229": 0, "int64": [0, 3], "u78": [0, 3], "u10": [0, 3], "lambert_conform": [0, 3], "interval_oper": 0, "450": 0, "interval_writ": 0, "month": 0, "online_oper": 0, "averag": 0, "standard_nam": [0, 1, 3], "air_temperatur": [0, 3], "kxarrai": [0, 3], "4dset_id": [0, 3], "63year": 0, "151nan": 0, "nanarrai": 0, "int641950": [0, 3], "2100arrai": [0, 3], "1955": [0, 3], "1956": [0, 3], "1957": [0, 3], "1958": [0, 3], "1959": [0, 3], "1960": [0, 3], "1962": [0, 3], "1963": [0, 3], "1964": [0, 3], "1965": [0, 3], "1966": [0, 3], "1967": [0, 3], "1968": [0, 3], "1969": [0, 3], "1970": [0, 3], "1971": [0, 3], "1972": [0, 3], "1973": [0, 3], "1974": [0, 3], "1975": [0, 3], "1976": [0, 3], "1977": [0, 3], "1978": [0, 3], "1979": [0, 3], "1980": [0, 3], "1981": [0, 3], "1982": [0, 3], "1983": [0, 3], "1984": [0, 3], "1985": [0, 3], "1986": [0, 3], "1987": [0, 3], "1988": [0, 3], "1989": [0, 3], "1991": [0, 3], "1992": [0, 3], "1993": [0, 3], "1994": [0, 3], "1995": [0, 3], "1996": [0, 3], "1997": [0, 3], "1998": [0, 3], "1999": [0, 3], "2000": [0, 3], "2001": [0, 3], "2002": [0, 3], "2003": [0, 3], "2004": [0, 3], "2007": [0, 3], "2008": [0, 3], "2009": [0, 3], "2010": [0, 3], "2011": [0, 3], "2012": [0, 3], "2015": [0, 3], "2016": [0, 3], "2017": [0, 1, 3], "2018": [0, 1, 3], "2020": [0, 3], "2021": [0, 3], "2022": [0, 3], "2023": [0, 3], "2024": [0, 1, 3], "2025": [0, 3], "2026": [0, 3], "2027": [0, 3], "2028": [0, 3], "2029": [0, 3], "2030": [0, 3], "2031": [0, 3], "2032": [0, 3], "2033": [0, 3], "2034": [0, 3], "2035": [0, 3], "2036": [0, 3], "2037": [0, 3], "2038": [0, 3], "2039": [0, 3], "2040": [0, 3], "2041": [0, 3], "2042": [0, 3], "2043": [0, 3], "2044": [0, 3], "2045": [0, 3], "2046": [0, 3], "2047": [0, 3], "2048": [0, 3], "2049": [0, 3], "2050": [0, 3], "2051": [0, 3], "2052": [0, 3], "2053": [0, 3], "2054": [0, 3], "2055": [0, 3], "2056": [0, 3], "2057": [0, 3], "2058": [0, 3], "2059": [0, 3], "2060": [0, 3], "2061": [0, 3], "2062": [0, 3], "2063": [0, 3], "2064": [0, 3], "2065": [0, 3], "2066": [0, 3], "2067": [0, 3], "2068": [0, 3], "2069": [0, 3], "2070": [0, 3], "2071": [0, 3], "2072": [0, 3], "2073": [0, 3], "2074": [0, 3], "2075": [0, 3], "2076": [0, 3], "2077": [0, 3], "2078": [0, 3], "2079": [0, 3], "2080": [0, 3], "2081": [0, 3], "2082": [0, 3], "2083": [0, 3], "2084": [0, 3], "2085": [0, 3], "2086": [0, 3], "2087": [0, 3], "2088": [0, 3], "2089": [0, 3], "2090": [0, 3], "2091": [0, 3], "2092": [0, 3], "2093": [0, 3], "2094": [0, 3], "2095": [0, 3], "c": [0, 1], "mohc": [0, 1, 3], "hadgem2": [0, 3], "r2i1p1": [0, 3], "ncc": [0, 3], "noresm1": [0, 3], "miroc": [0, 3], "miroc5": [0, 3], "aladin53": [0, 3], "aladin63": [0, 3], "ipsl": [0, 3], "cm5a": [0, 3], "mr": [0, 3], "v3": [0, 3], "geric": [0, 3], "remo2015": [0, 3], "noaa": [0, 3], "gfdl": [0, 3], "esm2g": [0, 3], "ictp": [0, 3], "regcm4": [0, 3], "csc": [0, 3], "remo2009": [0, 3], "rmib": [0, 3], "ugent": [0, 3], "alaro": [0, 3], "v1a": [0, 3], "wrf361h": [0, 3], "float642": [0, 3], "0axi": [0, 3], "marrai": [0, 1, 3], "yearpandasindexpandasindex": [0, 3], "int64index": [0, 3], "dset_idpandasindexpandasindex": [0, 3], "experiment_idpandasindexpandasindex": [0, 3], "lambert_conformalinterval_oper": 0, "sinterval_writ": 0, "monthlong_nam": 0, "temperatureonline_oper": 0, "averagestandard_nam": 0, "annual": 0, "0x7ffa796c5cd0": 0, "modul": 1, "should": [1, 3], "tool": 1, "preconfigur": 1, "contain": [1, 2, 3], "coodin": 1, "accord": 1, "note": 1, "mostli": 1, "focus": 1, "thei": 1, "specif": 1, "region": 1, "map": 1, "which": [1, 3], "focu": 1, "expertis": 1, "highli": 1, "welcom": 1, "cx": [1, 3], "you": 1, "domain_info": 1, "download": 1, "csv": 1, "raw": 1, "githubusercont": 1, "wcrp": 1, "main": 1, "runner": 1, "py": 1, "short_nam": 1, "domain_id": 1, "nlon": 1, "nlat": 1, "ll_lon": 1, "ur_lon": 1, "155": [1, 3], "ll_lat": 1, "ur_lat": 1, "835": [1, 3], "dlon": 1, "dlat": 1, "pollon": 1, "pollat": 1, "25": [1, 3], "resolut": [1, 3], "sam": 1, "44": [1, 3], "south": 1, "america": 1, "146": 1, "167": 1, "92000": 1, "207": 1, "72000": 1, "28000": 1, "34": [1, 3], "76000": 1, "4400": 1, "70": 1, "60": [1, 3], "cam": 1, "210": 1, "113": 1, "52": 1, "80000": 1, "16000": 1, "60000": 1, "68000": 1, "98": 1, "75": [1, 3], "74": [1, 3], "nam": 1, "130": 1, "88000": 1, "40000": 1, "36000": 1, "42": 1, "106": 1, "103": 1, "21000": 1, "99000": 1, "67000": 1, "afr": 1, "africa": 1, "194": 1, "201": 1, "24": 1, "64000": 1, "24000": 1, "180": [1, 3], "90": [1, 3], "wa": 1, "asia": 1, "193": 1, "32": [1, 3], "12000": 1, "56000": 1, "35": 1, "20000": 1, "123": 1, "79": 1, "ea": [1, 3], "east": 1, "203": 1, "40": 1, "47": 1, "96000": 1, "84000": 1, "46": 1, "64": [1, 3], "78": 1, "77": 1, "ca": 1, "153": 1, "32000": 1, "43": [1, 3], "48": [1, 3], "au": 1, "australasia": 1, "200": 1, "129": 1, "229": 1, "44000": 1, "141": 1, "31": 1, "ant": 1, "antarctica": 1, "125": 1, "97": 1, "152": 1, "52000": 1, "166": 1, "92": 1, "arc": 1, "arctic": 1, "116": 1, "133": 1, "med": 1, "mediterranean": [1, 3], "22000": 1, "46000": 1, "34000": 1, "94000": 1, "198": 1, "mna": 1, "middl": 1, "232": 1, "118": 1, "236": 1, "51000": 1, "35000": 1, "71000": 1, "2200": 1, "584": 1, "668": 1, "75500": 1, "88500": 1, "44500": 1, "92500": 1, "1100": 1, "840": 1, "452": 1, "96500": 1, "32500": 1, "76500": 1, "84500": 1, "620": 1, "520": 1, "04500": 1, "56500": 1, "52500": 1, "37500": 1, "15500": 1, "83500": 1, "776": 1, "804": 1, "80500": 1, "40500": 1, "772": 1, "28500": 1, "72500": 1, "36500": 1, "812": 1, "41": 1, "08500": 1, "12500": 1, "00500": 1, "612": 1, "400": 1, "48500": 1, "800": 1, "516": 1, "99500": 1, "60500": 1, "500": 1, "388": 1, "55500": 1, "68500": 1, "532": 1, "392": 1, "252": 1, "38500": 1, "62500": 1, "50500": 1, "10500": 1, "928": 1, "472": 1, "gar": 1, "0275": 1, "greater": 1, "alpin": 1, "476": 1, "444": 1, "51125": 1, "44875": 1, "93125": 1, "25125": 1, "ceu": 1, "345": 1, "385": [1, 3], "30375": 1, "07375": 1, "292": [1, 3], "334": 1, "81000": 1, "83000": 1, "39000": 1, "87000": 1, "420": 1, "226": 1, "91000": 1, "27000": 1, "79000": 1, "310": 1, "260": 1, "47000": 1, "212": 1, "206": 1, "10000": 1, "78000": 1, "402": 1, "75000": 1, "386": 1, "23000": 1, "31000": 1, "396": 1, "251": 1, "90000": 1, "306": 1, "43000": 1, "258": 1, "05000": 1, "55000": 1, "sea": 1, "264": 1, "26000": 1, "147": 1, "18000": 1, "44i": 1, "50i": 1, "181": 1, "25000": 1, "58": [1, 3], "5000": 1, "111": 1, "124": 1, "300": 1, "171": 1, "76": [1, 3], "221": 1, "65": [1, 3], "72": [1, 3], "173": 1, "179": 1, "195": 1, "227": 1, "157": 1, "62": 1, "175": [1, 3], "59": 1, "140": 1, "238": 1, "88": [1, 3], "53": 1, "720": 1, "144": 1, "51": 1, "57": 1, "22i": 1, "25i": 1, "high": 1, "re": 1, "410": 1, "209": 1, "87500": 1, "2500": 1, "11i": 1, "12i": 1, "881": 1, "408": 1, "81250": 1, "18750": 1, "68750": 1, "1250": 1, "233": 1, "172": 1, "heart": 1, "eur11": 1, "dummi": [1, 3], "topo": [1, 3], "micromamba": 1, "root": 1, "tutori": 1, "lib": 1, "python3": 1, "site": 1, "packag": [1, 3], "accessor": 1, "671": 1, "futurewarn": 1, "chang": [1, 3], "futur": 1, "order": 1, "consist": 1, "To": 1, "access": [1, 2], "unused_kei": 1, "invert": 1, "4mb": 1, "3kb": 1, "1mb": 1, "964": [1, 3], "96": [1, 3], "99": [1, 3], "66": [1, 3], "4b": 1, "699kb": 1, "284": [1, 3], "246": 1, "509": 1, "11xarrai": 1, "424rlat": 1, "412coordin": 1, "xstandard_nam": [1, 3], "grid_longitudelong_nam": [1, 3], "gridunit": [1, 3], "265": [1, 3], "935": [1, 3], "84axi": [1, 3], "ystandard_nam": [1, 3], "grid_latitudelong_nam": [1, 3], "96standard_nam": [1, 3], "longitudelong_nam": [1, 3], "degrees_eastarrai": [1, 3], "06387966": [1, 3], "96388628": [1, 3], "86380363": [1, 3], "36": [1, 3], "19872654": [1, 3], "30631294": [1, 3], "41382968": [1, 3], "11099589": [1, 3], "01086154": [1, 3], "91063756": [1, 3], "23077703": [1, 3], "33853934": [1, 3], "44623165": [1, 3], "15817955": [1, 3], "05790422": [1, 3], "95753886": [1, 3], "26288362": [1, 3], "37082205": [1, 3], "47869015": [1, 3], "26744553": [1, 3], "1287729": [1, 3], "98957131": [1, 3], "21746364": [1, 3], "42305922": [1, 3], "62774455": [1, 3], "43028713": [1, 3], "29178077": [1, 3], "15274426": [1, 3], "38488381": [1, 3], "59063409": [1, 3], "79546746": [1, 3], "59386389": [1, 3], "45552794": [1, 3], "31666067": [1, 3], "55349992": [1, 3], "75940009": [1, 3], "96437667": [1, 3], "float6421": [1, 3], "69standard_nam": [1, 3], "latitudelong_nam": [1, 3], "degrees_northarrai": [1, 3], "98782876": [1, 3], "02783807": [1, 3], "06771602": [1, 3], "1677739": [1, 3], "14109405": [1, 3], "11426239": [1, 3], "08878725": [1, 3], "1288583": [1, 3], "16879786": [1, 3], "27388366": [1, 3], "24715843": [1, 3], "22028117": [1, 3], "18973223": [1, 3], "22986507": [1, 3], "2698663": [1, 3], "37998647": [1, 3], "3532158": [1, 3], "32629289": [1, 3], "05553554": [1, 3], "13088567": [1, 3], "20613923": [1, 3], "63852915": [1, 3], "57692365": [1, 3], "51510791": [1, 3], "12974984": [1, 3], "20521265": [1, 3], "28057952": [1, 3], "72632651": [1, 3], "66454929": [1, 3], "60256233": [1, 3], "20376337": [1, 3], "27933874": [1, 3], "35481882": [1, 3], "81394504": [1, 3], "75199541": [1, 3], "68983654": [1, 3], "int320grid_mapping_nam": 1, "0arrai": [1, 3], "float32284": 1, "0coordin": 1, "longrid_map": 1, "rotated_latitude_longitudeunit": 1, "8400000e": 1, "4600000e": 1, "6953334e": 1, "8066666e": 1, "6666669e": 1, "6666665e": 1, "3600000e": 1, "0900000e": 1, "7966666e": 1, "825": [1, 3], "715": [1, 3], "605": [1, 3], "495": [1, 3], "275": [1, 3], "845": [1, 3], "955": [1, 3], "065": [1, 3], "285": [1, 3], "395": [1, 3], "505": [1, 3], "argument": 1, "mean": 1, "want": 1, "like": 1, "topographi": [1, 3], "oper": 1, "background": 1, "mayb": 1, "instal": 1, "python": [1, 3], "conda": 1, "forg": 1, "includ": [1, 3], "latest": 1, "come": 1, "an": [1, 2, 3], "allow": 1, "quick": 1, "pyplot": [1, 3], "plt": [1, 3], "figur": [1, 3], "geoax": 1, "cartopi": [1, 3], "io": 1, "__init__": 1, "241": 1, "downloadwarn": 1, "naturalearth": 1, "110m_physic": 1, "ne_110m_coastlin": 1, "zip": 1, "warn": 1, "110m_cultur": 1, "ne_110m_admin_0_boundary_lines_land": 1, "mpl": 1, "style": 1, "userwarn": 1, "facecolor": 1, "effect": 1, "never": 1, "cmap": [1, 3], "terrain": [1, 3], "collect": [1, 3], "0x144da9cc0": 1, "0x144e61c30": 1, "slightli": 1, "sophist": 1, "right": [1, 3], "da": [1, 3], "vmin": [1, 3], "vmax": [1, 3], "border": [1, 3], "cr": [1, 3], "ccr": [1, 3], "featur": [1, 3], "platecarre": [1, 3], "transform": [1, 3], "rotatedpol": [1, 3], "pole_latitud": 1, "pole_longitud": 1, "ax": [1, 3], "set_ext": [1, 3], "ds_sub": [1, 3], "min": [1, 3], "max": [1, 3], "gridlin": [1, 3], "draw_label": [1, 3], "linewidth": [1, 3], "color": [1, 3], "grai": [1, 3], "xloc": [1, 3], "rang": [1, 3], "yloc": [1, 3], "coastlin": [1, 3], "50m": [1, 3], "black": [1, 3], "add_featur": [1, 3], "set_titl": [1, 3], "grid_north_pole_longitud": [1, 3], "grid_north_pole_latitud": [1, 3], "50m_physic": 1, "ne_50m_coastlin": 1, "create_dataset": 1, "fed": 1, "manual": 1, "eur11_us": 1, "same": 1, "equal": 1, "need": [1, 2], "modifi": 1, "routin": 1, "patheffect": 1, "pe": 1, "path_effect": 1, "stroke": 1, "foreground": 1, "normal": 1, "add_colorbar": 1, "identifi": 1, "particular": 1, "useful": [1, 3], "regrid": 1, "either": 1, "other": 1, "cmip6": 1, "esgf": [1, 2], "wget": 1, "remo": 1, "pyremo": 1, "orog_fx_mpi": 1, "esm1": 1, "hr_historical_r1i1p1f1_gn": 1, "nc": [1, 3], "resolv": 1, "185": 1, "199": 1, "108": 1, "109": 1, "110": 1, "443": 1, "request": 1, "sent": 1, "await": 1, "ok": 1, "299137": 1, "292k": 1, "applic": 1, "octet": 1, "stream": 1, "save": 1, "orog_fx_m": 1, "kb": 1, "13k": 1, "006": 1, "open_dataset": 1, "esgf3": 1, "thredd": 1, "dodsc": 1, "cmip": 1, "hr": 1, "r1i1p1f1": 1, "amon": 1, "gn": 1, "v20190710": 1, "tas_amon_mpi": 1, "hr_historical_r1i1p1f1_gn_199501": 1, "199912": 1, "data3": 1, "ceda": 1, "ac": 1, "uk": 1, "esg_cmip6": 1, "ukesm1": 1, "ll": 1, "r1i1p1f2": 1, "v20190406": 1, "tas_amon_ukesm1": 1, "ll_historical_r1i1p1f2_gn_185001": 1, "194912": 1, "309kb": 1, "192": 1, "384": 1, "2kb": 1, "87": 1, "9375": 1, "875": 1, "357": 1, "358": 1, "359": 1, "lat_bnd": 1, "lon_bnd": 1, "6kb": 1, "orog": 1, "295kb": 1, "activity_id": 1, "branch_method": 1, "branch_time_in_child": 1, "branch_time_in_par": 1, "esm": [1, 3], "hdl": 1, "14100": 1, "3341d289": 1, "1282": 1, "489f": 1, "9419": 1, "c263718da247": 1, "variant_label": 1, "licens": 1, "un": 1, "0xarrai": 1, "192bnd": 1, "2lon": 1, "384coordin": 1, "28bound": 1, "lat_bndsunit": 1, "degrees_northaxi": 1, "latitudearrai": 1, "284228": 1, "357004": 1, "424304": 1, "86": 1, "490367": 1, "85": 1, "55596": 1, "621327": 1, "686567": 1, "82": 1, "751728": 1, "816839": 1, "80": 1, "881913": 1, "946962": 1, "011992": 1, "077007": 1, "142011": 1, "207005": 1, "271992": 1, "336973": 1, "401949": 1, "466921": 1, "531889": 1, "596854": 1, "661816": 1, "68": 1, "726776": 1, "791734": 1, "856691": 1, "921645": 1, "986599": 1, "051551": 1, "116502": 1, "181452": 1, "246401": 1, "311349": 1, "376297": 1, "441244": 1, "50619": 1, "571136": 1, "636081": 1, "54": 1, "701026": 1, "76597": 1, "830914": 1, "895857": 1, "960801": 1, "025743": 1, "49": [1, 3], "090686": 1, "155628": 1, "22057": 1, "285512": 1, "350454": 1, "415395": 1, "480336": 1, "545277": 1, "610218": 1, "675159": 1, "740099": 1, "805039": 1, "86998": 1, "93492": 1, "99986": 1, "064799": 1, "129739": 1, "194679": 1, "259618": 1, "324558": 1, "389497": 1, "454436": 1, "519375": 1, "584315": 1, "649254": 1, "714193": 1, "779132": 1, "84407": 1, "909009": 1, "973948": 1, "038887": 1, "103825": 1, "168764": 1, "233703": 1, "298641": 1, "36358": 1, "428518": 1, "493457": 1, "558395": 1, "623333": 1, "688272": 1, "75321": 1, "818148": 1, "883087": 1, "948025": 1, "012963": 1, "077901": 1, "14284": 1, "207778": 1, "272716": 1, "337654": 1, "402593": 1, "467531": 1, "float640": 1, "1bound": 1, "lon_bndsunit": 1, "degrees_eastaxi": 1, "longitudearrai": 1, "1875": 1, "0625": 1, "768": 1, "surface_altitudelong_nam": 1, "altitudecom": 1, "call": 1, "lower": 1, "boundari": 1, "atmospher": 1, "altitud": 1, "geometr": 1, "abov": 1, "geoid": 1, "geopotenti": 1, "level": 1, "moriginal_nam": 1, "orogcell_method": 1, "meancell_measur": 1, "areacellahistori": 1, "25t06": 1, "14z": 1, "miss": 1, "flag": 1, "9e": 1, "1e": 1, "73728": 1, "latpandasindexpandasindex": 1, "28422753251364": 1, "35700351866494": 1, "42430374606988": 1, "49036676628116": 1, "55596048489265": 1, "6213271076488": 1, "68656681656385": 1, "75172847343066": 1, "81683872860322": 1, "8819133467975": 1, "lonpandasindexpandasindex": 1, "8125": 1, "6875": 1, "625": 1, "5625": 1, "4375": 1, "350": 1, "351": 1, "352": 1, "353": 1, "354": 1, "355": 1, "3125": 1, "356": 1, "2activity_id": 1, "cmipbranch_method": 1, "standardbranch_time_in_child": 1, "0branch_time_in_par": 1, "0contact": 1, "14zdata_specs_vers": 1, "30experi": 1, "forc": 1, "simul": 1, "recent": 1, "pastexperiment_id": 1, "historicalexternal_vari": 1, "areacellaforcing_index": 1, "1frequenc": 1, "fxfurther_info_url": 1, "furtherinfo": 1, "doc": 1, "org": 1, "r1i1p1f1grid": 1, "gngrid_label": 1, "gnhistori": 1, "initialization_index": 1, "1institut": 1, "planck": 1, "institut": 1, "meteorologi": 1, "hamburg": 1, "20146": 1, "germanyinstitution_id": 1, "mmip_era": 1, "cmip6nominal_resolut": 1, "kmparent_activity_id": 1, "cmipparent_experiment_id": 1, "picontrolparent_mip_era": 1, "cmip6parent_source_id": 1, "hrparent_time_unit": 1, "dai": 1, "1850": 1, "00parent_variant_label": 1, "r1i1p1f1physics_index": 1, "cmip6realization_index": 1, "1realm": 1, "landrefer": 1, "mauritsen": 1, "et": 1, "al": [1, 3], "system": [1, 2], "Its": 1, "increas": 1, "co2": 1, "j": 1, "adv": 1, "syst": 1, "998": 1, "1038": 1, "doi": 1, "1029": 1, "2018ms001400": 1, "mueller": 1, "w": 1, "earthsyst": 1, "1383": 1, "1413": 1, "2017ms001217sourc": 1, "aerosol": 1, "prescrib": 1, "macv2": 1, "sp": 1, "atmo": 1, "echam6": 1, "spectral": 1, "t127": 1, "top": 1, "hpa": 1, "atmoschem": 1, "land": 1, "jsbach3": 1, "landic": 1, "ocean": 1, "mpiom1": 1, "tripolar": 1, "tp04": 1, "approxim": 1, "4deg": 1, "802": 1, "404": 1, "cell": 1, "ocnbgchem": 1, "hamocc6": 1, "seaic": 1, "unnam": 1, "thermodynam": 1, "semtner": 1, "zero": 1, "dynam": 1, "hibler": 1, "ic": 1, "source_id": 1, "hrsource_typ": 1, "aogcmsub_experi": 1, "nonesub_experiment_id": 1, "nonetable_id": 1, "fxtable_info": 1, "creation": 1, "date": 1, "md5": 1, "e6ef8ececc8f338646ebfb3aeed36bfctitl": 1, "cmip6tracking_id": 1, "c263718da247variable_id": 1, "orogvariant_label": 1, "r1i1p1f1licens": 1, "under": 1, "creativ": 1, "common": 1, "sharealik": 1, "intern": 1, "creativecommon": 1, "consult": 1, "pcmdi": 1, "llnl": 1, "gov": 1, "termsofus": 1, "term": 1, "govern": 1, "citat": 1, "proper": 1, "acknowledg": 1, "further": 1, "about": 1, "via": [1, 2], "further_info_url": 1, "record": 1, "global": 1, "warranti": 1, "express": 1, "impli": 1, "merchant": 1, "fit": 1, "liabil": 1, "aris": 1, "suppli": 1, "neglig": 1, "exclud": 1, "fullest": 1, "extent": [1, 3], "permit": 1, "law": 1, "bind": 1, "control": 1, "execut": 1, "command": 1, "doe": 1, "huge": 1, "overhead": 1, "alwai": 1, "write": 1, "between": [1, 3], "filesystem": 1, "input": 1, "If": 1, "below": 1, "trigger": [1, 3], "to_netcdf": [1, 3], "temporari": 1, "disk": 1, "awar": 1, "first": 1, "11_grid": 1, "remap": 1, "timestep": 1, "modeldata": 1, "remap_cdo": 1, "remapbil": 1, "returnxarrai": 1, "174688": 1, "surface_altitud": 1, "original_nam": 1, "cell_measur": 1, "areacella": 1, "histori": 1, "va": 1, "degrees_east_coordinateaxistyp": 1, "degrees_north_coordinateaxistyp": 1, "16standard_nam": 1, "projection_x_coordinatelong_nam": 1, "degreesaxi": 1, "84standard_nam": 1, "projection_y_coordinatelong_nam": 1, "yarrai": 1, "altitudeunit": 1, "mgrid_map": 1, "rotated_latitude_longitudecom": 1, "0x145562c20": 1, "xesmf": 1, "base": 1, "veri": 1, "xe": 1, "regridd": 1, "bilinear": 1, "algorithm": 1, "weight": [1, 3], "filenam": 1, "bilinear_192x384_412x424_peri": 1, "reus": [1, 3], "pre": 1, "comput": [1, 3], "remap_x": 1, "0x146476aa0": 1, "compar": [1, 3], "both": 1, "approach": 1, "0x1464f9840": 1, "thing": 1, "togeth": [1, 3], "keep": 1, "anoth": 1, "consequ": 1, "well": 1, "vector": 1, "long": 1, "along": 1, "parallel": 1, "larg": 1, "faster": 1, "book": 2, "interact": 2, "jupyt": 2, "notebook": [2, 3], "acccound": 2, "grid": [2, 3], "feder": 2, "node": 2, "select": 2, "net": 2, "hyperlink": 2, "account": 2, "grant": 2, "openid": 2, "password": 2, "content": 2, "page": 2, "bundl": 2, "demonstr": 3, "us": 3, "scale": 3, "often": 3, "involv": 3, "over": 3, "countri": 3, "citi": 3, "o": 3, "core": 3, "option": 3, "0x7ffb30b150f0": 3, "plot": 3, "domain": 3, "certain": 3, "u": 3, "littl": 3, "detail": 3, "warm": 3, "depend": 3, "prudenc": 3, "european": 3, "sub": 3, "studi": 3, "defined_region": 3, "christensen": 3, "overlap": 3, "bi": 3, "british": 3, "isl": 3, "ip": 3, "iberian": 3, "peninsula": 3, "fr": 3, "franc": 3, "me": 3, "mid": 3, "sc": 3, "scandinavia": 3, "alp": 3, "md": 3, "eastern": 3, "proj": 3, "lambertconform": 3, "central_longitud": 3, "add_ocean": 3, "label": 3, "line_kw": 3, "lw": 3, "work": 3, "mask_prud": 3, "mask_3d": 3, "0x7ffb30b15930": 3, "864": 3, "abbrev": 3, "u2": 3, "u17": 3, "regionxarrai": 3, "8rlat": 3, "424fals": 3, "falsearrai": 3, "int641": 3, "8arrai": 3, "regionpandasindexpandasindex": 3, "new": 3, "tailor": 3, "onli": 3, "me_topo": 3, "squeez": 3, "open": 3, "real": 3, "2a5a646c": 3, "048a": 3, "9272": 3, "0a81f99f6e8d": 3, "larsbuntemey": 3, "launch": 3, "jupyterlab": 3, "a5b875a4": 3, "d09c8ba5": 3, "0526": 3, "4f88": 3, "84c0": 3, "89f8d9e57e05": 3, "33761": 3, "40325": 3, "35443": 3, "44501": 3, "cec0tpgq": 3, "36929": 3, "44321": 3, "41641": 3, "c74cqngp": 3, "33951": 3, "39311": 3, "46355": 3, "0fbjvynt": 3, "39777": 3, "46775": 3, "33289": 3, "q080ufic": 3, "aw": 3, "load": 3, "186": 3, "experi": 3, "425": 3, "14it": 3, "yearli": 3, "weighted_mean": 3, "assign_coord": 3, "yearly_regional_mean": 3, "ensembl": 3, "befor": 3, "entir": 3, "transpos": 3, "chunktyp": 3, "b": 3, "36region": 3, "8dask": 3, "s1b": 3, "int641970": 3, "2005arrai": 3, "fact": 3, "timeseri": 3, "addit": 3, "swap_dim": 3, "0x7ff9d9b151b0": 3, "0x7ffa2ae84a00": 3, "0x7ffa2aeec220": 3, "0x7ffa2b0351e0": 3, "0x7ff9d9b549d0": 3, "0x7ff9d9b54310": 3, "0x7ffa09bd0160": 3, "0x7ffa09bd0100": 3, "heavi": 3, "3min": 3, "12min": 3, "282": 3, "2107418": 3, "286": 3, "93128853": 3, "63980798": 3, "281": 3, "63338982": 3, "288": 3, "77574783": 3, "50199637": 3, "53776467": 3, "46103499": 3, "28139925": 3, "05806444": 3, "82877696": 3, "73484321": 3, "31529086": 3, "21012818": 3, "82111491": 3, "96693104": 3, "289": 3, "23218221": 3, "94636519": 3, "1495131": 3, "290": 3, "91816237": 3, "58114999": 3, "33248825": 3, "291": 3, "9262367": 3, "63031609": 3, "28652941": 3, "09695127": 3, "43458272": 3, "10354076": 3, "37664367": 3, "7401946": 3, "56761724": 3, "20473895": 3, "80000154": 3, "67128525": 3, "73072402": 3, "76624824": 3, "3824196": 3, "56766683": 3, "35423898": 3, "57922993": 3, "12598988": 3, "89635763": 3, "25291498": 3, "10685423": 3, "44420236": 3, "88520879": 3, "44595895": 3, "00371295": 3, "48374536": 3, "85452062": 3, "54731044": 3, "71317561": 3, "02362115": 3, "41440815": 3, "rekli": 3, "2147483647": 3, "74year": 3, "151region": 3, "8nan": 3, "280": 3, "4arrai": 3, "bt": 3, "btu": 3, "cccma": 3, "canesm2": 3, "2147483647grid_mapping_nam": 3, "lambert_conformal_coniclatitude_of_projection_origin": 3, "5longitude_of_central_meridian": 3, "5standard_parallel": 3, "5arrai": 3, "coordinateaxistyp": 3, "geox": 3, "geoycoordinatetransformtyp": 3, "projectionfalse_east": 3, "6000": 3, "0false_north": 3, "0grid_mapping_nam": 3, "lambert_conformal_conicinverse_flatten": 3, "0latitude_of_projection_origin": 3, "0longitude_of_central_meridian": 3, "75proj4_param": 3, "lcc": 3, "lat_1": 3, "lat_2": 3, "lat_0": 3, "lon_0": 3, "x_0": 3, "y_0": 3, "ellp": 3, "sphere": 3, "6371229": 3, "no_defssemi_major_axi": 3, "0standard_parallel": 3, "polearrai": 3, "357563": 3, "357564": 3, "357565": 3, "357566": 3, "357567": 3, "357568": 3, "seaborn": 3, "sd": 3}, "objects": {}, "objtypes": {}, "objnames": {}, "titleterms": {"aw": 0, "access": 0, "open": 0, "an": 0, "esm": 0, "collect": 0, "investig": 0, "region": [0, 3], "warm": 0, "entir": 0, "ensembl": 0, "us": [0, 1], "seaborn": 0, "statist": 0, "plot": [0, 1], "comput": 0, "chang": 0, "roll": 0, "yearli": 0, "mean": [0, 3], "cordex": [1, 2], "domain": 1, "work": 1, "inform": 1, "eur": 1, "11": 1, "exampl": 1, "user": 1, "defin": 1, "all": 1, "core": 1, "grid": 1, "interpol": 1, "cdo": 1, "altern": 1, "method": 1, "welcom": 2, "tutori": 2, "mask": 3, "regionmask": 3, "spatial": 3, "averag": 3}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinxcontrib.bibtex": 9, "sphinx": 60}, "alltitles": {"AWS Access": [[0, "aws-access"]], "Open an ESM collection": [[0, "open-an-esm-collection"]], "Investigate regional warming in the entire ensemble": [[0, "investigate-regional-warming-in-the-entire-ensemble"]], "Use seaborn for statistical plots": [[0, "use-seaborn-for-statistical-plots"]], "Compute the change in the rolling yearly mean": [[0, "compute-the-change-in-the-rolling-yearly-mean"]], "Cordex domains": [[1, "cordex-domains"]], "Working with domain information": [[1, "working-with-domain-information"]], "EUR-11 example": [[1, "eur-11-example"]], "User defined domain": [[1, "user-defined-domain"]], "Plot all cordex-core domains": [[1, "plot-all-cordex-core-domains"]], "Using the grid information for interpolation": [[1, "using-the-grid-information-for-interpolation"]], "Interpolation using CDO": [[1, "interpolation-using-cdo"]], "Alternative interpolation methods": [[1, "alternative-interpolation-methods"]], "Welcome to the CORDEX Tutorials!": [[2, "welcome-to-the-cordex-tutorials"]], "Regional means": [[3, "regional-means"]], "Masking with regionmask": [[3, "masking-with-regionmask"]], "Regional spatial average": [[3, "regional-spatial-average"]]}, "indexentries": {}}) \ No newline at end of file +Search.setIndex({"alltitles": {"AWS Access": [[0, "aws-access"]], "Alternative interpolation methods": [[1, "alternative-interpolation-methods"]], "Compute the change in the rolling yearly mean": [[0, "compute-the-change-in-the-rolling-yearly-mean"]], "Cordex domains": [[1, "cordex-domains"]], "EUR-11 example": [[1, "eur-11-example"]], "Interpolation using CDO": [[1, "interpolation-using-cdo"]], "Investigate regional warming in the entire ensemble": [[0, "investigate-regional-warming-in-the-entire-ensemble"]], "Masking with regionmask": [[3, "masking-with-regionmask"]], "Open an ESM collection": [[0, "open-an-esm-collection"]], "Plot all cordex-core domains": [[1, "plot-all-cordex-core-domains"]], "Regional means": [[3, "regional-means"]], "Regional spatial average": [[3, "regional-spatial-average"]], "Use seaborn for statistical plots": [[0, "use-seaborn-for-statistical-plots"]], "User defined domain": [[1, "user-defined-domain"]], "Using the grid information for interpolation": [[1, "using-the-grid-information-for-interpolation"]], "Welcome to the CORDEX Tutorials!": [[2, "welcome-to-the-cordex-tutorials"]], "Working with domain information": [[1, "working-with-domain-information"]]}, "docnames": ["aws-access", "domains", "intro", "regional"], "envversion": {"sphinx": 61, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinxcontrib.bibtex": 9}, "filenames": ["aws-access.ipynb", "domains.ipynb", "intro.md", "regional.ipynb"], "indexentries": {}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [0, 1, 3], "0": [0, 1, 3], "00": [0, 1, 3], "000000000": 0, "00371295": 3, "00500": 1, "00parent_variant_label": 1, "01": [0, 1], "01086154": [1, 3], "011992": 1, "012963": 1, "0183": 0, "02": [0, 1], "02362115": 3, "025743": 1, "0275": 1, "02783807": [1, 3], "03": [0, 1, 3], "038887": 1, "04": 0, "045": [0, 1, 3], "04500": 1, "045000076293945": 0, "048a": 3, "05": [0, 1, 3], "05000": 1, "051551": 1, "0526": 3, "05553554": [1, 3], "05790422": [1, 3], "05806444": 3, "06": [0, 1, 3], "0625": 1, "06387966": [1, 3], "064799": 1, "065": [1, 3], "065000534057617": 0, "06771602": [1, 3], "07": [0, 1, 3], "07375": 1, "077007": 1, "077901": 1, "08": [0, 1], "080038c05de1": 0, "08500": 1, "08878725": [1, 3], "09": [0, 1], "0900000e": 1, "090686": 1, "091522": 0, "09695127": 3, "0a81f99f6e8d": 3, "0arrai": [1, 3], "0axi": [0, 3], "0branch_time_in_par": 1, "0cj6j8x4": 0, "0contact": 1, "0coordin": 1, "0false_north": 3, "0fbjvynt": 3, "0grid_mapping_nam": 3, "0latitude_of_projection_origin": 3, "0long_nam": [0, 3], "0longitude_of_central_meridian": 3, "0north_pole_grid_longitud": [0, 1, 3], "0standard_parallel": 3, "0x14b783a30": 1, "0x14b853c40": 1, "0x14c2ffbe0": 1, "0x14d250d60": 1, "0x14d2afac0": 1, "0x7ff9d9b151b0": 3, "0x7ff9d9b54310": 3, "0x7ff9d9b549d0": 3, "0x7ffa09bd0100": 3, "0x7ffa09bd0160": 3, "0x7ffa1a759d60": 0, "0x7ffa2ae84a00": 3, "0x7ffa2aeec220": 3, "0x7ffa2b0351e0": 3, "0x7ffa796c5cd0": 0, "0x7ffa991e7e20": 0, "0x7ffa9a14d280": 0, "0x7ffabe552250": 0, "0x7ffb30b150f0": 3, "0x7ffb30b15930": 3, "0x7ffe6dde79a0": 0, "0xarrai": 1, "1": [0, 1, 3], "10": [0, 1, 3], "100": [0, 1, 3], "10000": 1, "1029": 1, "103": 1, "10354076": 3, "1038": 1, "103825": 1, "10500": 1, "106": 1, "10685423": 3, "108": 1, "109": 1, "10z": 0, "10zdriving_experi": 0, "11": [0, 3], "110": 1, "1100": 1, "110107": 0, "11099589": [1, 3], "110m_cultur": 1, "110m_physic": 1, "111": 1, "113": 1, "11426239": [1, 3], "116": 1, "116502": 1, "117": 0, "118": 1, "11_clmcom": 0, "11_grid": 1, "11_int2lm2": 0, "11contact": 0, "11convent": 0, "11e9": 0, "11ee": [0, 3], "11i": 1, "11intake_esm_attr": 0, "11xarrai": 1, "12": [0, 1], "12000": 1, "123": 1, "124": 1, "125": 1, "1250": 1, "12500": 1, "12598988": 3, "127": [0, 3], "1282": 1, "1287729": [1, 3], "1288583": [1, 3], "129": 1, "129739": 1, "12974984": [1, 3], "12i": 1, "12min": 3, "12refer": 0, "13": [0, 1], "130": 1, "13088567": [1, 3], "133": 1, "1383": 1, "13k": 1, "14": [0, 1, 3], "140": 1, "141": 1, "14100": 1, "14109405": [1, 3], "1413": 1, "142": [0, 1], "142011": 1, "14284": 1, "143": [0, 1], "144": 1, "146": 1, "147": 1, "149475": 0, "1495131": 3, "14it": 3, "14z": 1, "14zdata_specs_vers": 1, "15": [0, 1, 3], "151": [0, 3], "151e60a4": 0, "151nan": 0, "151region": 3, "152": 1, "152208": 0, "15274426": [1, 3], "153": 1, "155": [1, 3], "15500": 1, "155000686645508": 0, "155001": 0, "155628": 1, "157": 1, "15817955": [1, 3], "158966": 0, "15t00": 0, "16": [0, 1, 3], "16000": 1, "162": [0, 1, 3], "165": [0, 1, 3], "165000915527344": 0, "166": 1, "167": 1, "1677739": [1, 3], "168764": 1, "16879786": [1, 3], "16axi": [0, 1, 3], "16standard_nam": 1, "16t00": 0, "16t12": 0, "17": [0, 1, 3], "171": 1, "172": 1, "173": 1, "174688": 1, "174999237060547": 0, "175": [1, 3], "177": 0, "179": 1, "17_historical_r0i0p0": 0, "17intake_esm_attr": 0, "17modeling_realm": 0, "17table_id": 0, "18": [0, 1, 3], "180": [1, 3], "18000": 1, "181": 1, "181452": 1, "185": 1, "1850": 1, "186": 3, "1875": 1, "18750": 1, "18973223": [1, 3], "19": [0, 1], "192": 1, "192bnd": 1, "193": 1, "194": 1, "194679": 1, "1949": 0, "194912": 1, "195": 1, "1950": [0, 3], "1951": [0, 3], "1952": [0, 3], "1953": [0, 3], "1954": [0, 3], "1955": [0, 3], "1956": [0, 3], "1957": [0, 3], "1958": [0, 3], "1959": [0, 3], "1960": [0, 3], "1961": [0, 3], "1962": [0, 3], "1963": [0, 3], "1964": [0, 3], "1965": [0, 3], "1966": [0, 3], "1967": [0, 3], "1968": [0, 3], "1969": [0, 3], "1970": [0, 3], "1971": [0, 3], "1972": [0, 3], "1973": [0, 3], "1974": [0, 3], "1975": [0, 3], "1976": [0, 3], "1977": [0, 3], "1978": [0, 3], "1979": [0, 3], "198": 1, "1980": [0, 3], "1981": [0, 3], "1982": [0, 3], "1983": [0, 3], "1984": [0, 3], "1985": [0, 3], "1986": [0, 3], "1987": [0, 3], "19872654": [1, 3], "1988": [0, 3], "1989": [0, 3], "199": 1, "1990": [0, 3], "1991": [0, 3], "1992": [0, 3], "1993": [0, 3], "1994": [0, 3], "1995": [0, 3], "1996": [0, 3], "1997": [0, 3], "1998": [0, 3], "1999": [0, 3], "199912": 1, "19t07": 0, "1_01_co": 0, "1_01_config": 0, "1_01_configconfig_int2lm": 0, "1_01_configcontact": 0, "1a8d24384e63c141a57dbedfd6710546titl": 0, "1bound": 1, "1comment": 0, "1e": 1, "1frequenc": 1, "1institut": 1, "1institute_id": 0, "1mb": 1, "1min": 0, "1product": [0, 1], "1realm": 1, "2": [0, 1, 3], "20": [0, 1, 3], "200": 1, "2000": [0, 3], "20000": 1, "2001": [0, 3], "2002": [0, 3], "2003": [0, 3], "2004": [0, 3], "2005": [0, 3], "2005arrai": 3, "2006": [0, 3], "2007": [0, 3], "2008": [0, 3], "2009": [0, 3], "201": 1, "2010": [0, 3], "2011": [0, 3], "2012": [0, 3], "2013": [0, 3], "2014": [0, 3], "20146": 1, "2015": [0, 3], "2016": [0, 3], "2017": [0, 1, 3], "2017ms001217sourc": 1, "2018": [0, 1, 3], "2018ms001400": 1, "2019": [0, 1, 3], "2020": [0, 3], "2021": [0, 3], "2022": [0, 3], "2023": [0, 3], "2024": [0, 1, 3], "2025": [0, 3], "2026": [0, 3], "2027": [0, 3], "2028": [0, 3], "2029": [0, 3], "203": 1, "2030": [0, 3], "2031": [0, 3], "2032": [0, 3], "2033": [0, 3], "2034": [0, 3], "2035": [0, 3], "2036": [0, 3], "2037": [0, 3], "20376337": [1, 3], "2038": [0, 3], "2039": [0, 3], "2040": [0, 3], "2041": [0, 3], "2042": [0, 3], "2043": [0, 3], "2044": [0, 3], "2045": [0, 3], "2046": [0, 3], "2047": [0, 3], "20473895": 3, "2048": [0, 3], "2049": [0, 3], "2050": [0, 3], "2050476": 0, "2051": [0, 3], "2052": [0, 3], "20521265": [1, 3], "2053": [0, 3], "2054": [0, 3], "2055": [0, 3], "2056": [0, 3], "2057": [0, 3], "2058": [0, 3], "2059": [0, 3], "206": 1, "2060": [0, 3], "2061": [0, 3], "20613923": [1, 3], "2062": [0, 3], "2063": [0, 3], "2064": [0, 3], "2065": [0, 3], "2066": [0, 3], "2067": [0, 3], "2068": [0, 3], "2069": [0, 3], "207": 1, "2070": [0, 3], "207005": 1, "2071": [0, 3], "2072": [0, 3], "2073": [0, 3], "2074": [0, 3], "2075": [0, 3], "2076": [0, 3], "2077": [0, 3], "207778": 1, "2078": [0, 3], "2079": [0, 3], "2080": [0, 3], "2081": [0, 3], "2082": [0, 3], "2083": [0, 3], "2084": [0, 3], "2085": [0, 3], "2086": [0, 3], "2087": [0, 3], "2088": [0, 3], "2089": [0, 3], "209": 1, "2090": [0, 3], "2091": [0, 3], "2092": [0, 3], "2093": [0, 3], "2094": [0, 3], "2095": [0, 3], "2096": [0, 3], "2097": [0, 3], "2098": [0, 3], "2099": [0, 3], "21": [0, 1, 3], "210": 1, "2100": [0, 3], "21000": 1, "2100arrai": [0, 3], "21012818": 3, "2107418": 3, "212": 1, "2147483647": 3, "2147483647grid_mapping_nam": 3, "21746364": [1, 3], "22": [0, 1, 3], "2200": 1, "22000": 1, "22028117": [1, 3], "22057": 1, "221": 1, "22229": 0, "226": 1, "227": 1, "229": 1, "22986507": [1, 3], "22i": 1, "23": [0, 1, 3], "23000": 1, "23077703": [1, 3], "232": 1, "23218221": 3, "233": 1, "233703": 1, "235": 0, "236": 1, "238": 1, "24": 1, "24000": 1, "241": 1, "246": 1, "246401": 1, "24715843": [1, 3], "248413": 0, "25": [1, 3], "2500": 1, "25000": 1, "251": 1, "25125": 1, "252": 1, "25291498": 3, "256": 0, "258": 1, "259618": 1, "25driving_experi": 0, "25grid_north_pole_longitud": [0, 1, 3], "25i": 1, "25t06": 1, "26": [0, 1], "260": 1, "26000": 1, "262115": 0, "26288362": [1, 3], "264": 1, "264999": 0, "264999389648438": 0, "265": [1, 3], "26744553": [1, 3], "2698663": [1, 3], "27": [0, 1, 3], "27000": 1, "271992": 1, "272716": 1, "273": [0, 3], "27388366": [1, 3], "274999618530273": 0, "275": [1, 3], "27933874": [1, 3], "28": [0, 1, 3], "280": 3, "28000": 1, "28057952": [1, 3], "281": 3, "28139925": 3, "282": 3, "283": 0, "284": [1, 3], "28422753251364": 1, "284228": 1, "28499984741211": 0, "285": [1, 3], "28500": 1, "285512": 1, "286": 3, "28652941": 3, "287": [0, 3], "288": 3, "289": 3, "28bound": 1, "29": [0, 1], "290": 3, "291": 3, "29178077": [1, 3], "292": [1, 3], "292k": 1, "295319": 0, "295kb": 1, "298641": 1, "299137": 1, "299774": 0, "2a5a646c": 3, "2activity_id": 1, "2coordin": 0, "2kb": 1, "2lon": 1, "2m": 0, "2min": 0, "3": [0, 1, 3], "30": [0, 1, 3], "300": 1, "30375": 1, "306": 1, "30631294": [1, 3], "308136": 0, "309kb": 1, "30experi": 1, "31": 1, "310": 1, "31000": 1, "311349": 1, "3125": 1, "31529086": 3, "31666067": [1, 3], "32": [1, 3], "32000": 1, "324558": 1, "32500": 1, "32629289": [1, 3], "3269653": 0, "32787": 0, "32907": 0, "32953": 0, "32985": 0, "33": [0, 1], "331543": 0, "33248825": 3, "33263": 0, "33289": 3, "334": 1, "3341d289": 1, "336973": 1, "33761": 3, "337654": 1, "33845": 0, "33853934": [1, 3], "33951": 3, "34": [1, 3], "34000": 1, "34231": 0, "345": 1, "34879": 0, "35": 1, "350": 1, "35000": 1, "350454": 1, "35087": 0, "351": 1, "352": 1, "353": 1, "3532158": [1, 3], "35365": 0, "354": 1, "35423898": 3, "35443": 3, "35481882": [1, 3], "355": 1, "35503": 0, "35509": 0, "35567": 0, "356": 1, "357": 1, "35700351866494": 1, "357004": 1, "357563": 3, "357564": 3, "357565": 3, "357566": 3, "357567": 3, "357568": 3, "358": 1, "35859": 0, "359": 1, "36": [1, 3], "36000": 1, "3600000e": 1, "36237": 0, "36358": 1, "36379": 0, "36500": 1, "36503": 0, "36929": 3, "36937": 0, "36region": 3, "37": [0, 1], "37013": 0, "37071": 0, "37082205": [1, 3], "37085": 0, "37095": 0, "375": [0, 1, 3], "37500": 1, "376297": 1, "37664367": 3, "37803": 0, "37998647": [1, 3], "38": [0, 1, 3], "38047": 0, "38048": 0, "38049": 0, "38050": 0, "38051": 0, "38052": 0, "3824196": 3, "384": 1, "38488381": [1, 3], "384coordin": 1, "385": [1, 3], "38500": 1, "385000228881836": 0, "386": 1, "388": 1, "38879": 0, "389497": 1, "39": [0, 1, 3], "39000": 1, "392": 1, "39311": 3, "395": [1, 3], "395000457763672": 0, "396": 1, "3974915": 0, "39777": 3, "3kb": 1, "3min": 3, "4": [0, 1, 3], "40": 1, "400": 1, "40000": 1, "401949": 1, "402": 1, "402593": 1, "403107": 0, "40325": 3, "404": 1, "40500": 1, "40555": 0, "40627": 0, "408": 1, "40821": 0, "40853": 0, "41": 1, "410": 1, "41101": 0, "41111": 0, "4112244": 0, "41155": 0, "412": [0, 1, 3], "41235": 0, "41239": 0, "412coordin": 1, "412rlon": [0, 1, 3], "41307": 0, "41382968": [1, 3], "41440815": 3, "415395": 1, "41607": 0, "41641": 3, "42": 1, "420": 1, "42305922": [1, 3], "4233": 0, "424": [0, 1, 3], "42430374606988": 1, "424304": 1, "4244": 0, "424fals": 3, "424rlat": 1, "424time": 0, "424vertic": 0, "425": 3, "42605": 0, "42733": 0, "428518": 1, "43": [1, 3], "43000": 1, "43028713": [1, 3], "43458272": 3, "43465": 0, "43701": 0, "437317": 0, "4375": 1, "43793": 0, "4381714": 0, "43859": 0, "44": [1, 3], "4400": 1, "44000": 1, "441244": 1, "44137": 0, "443": 1, "44321": 3, "444": 1, "44420236": 3, "44500": 1, "44501": 3, "4456177": 0, "44595895": 3, "44623165": [1, 3], "447": 0, "44733": 0, "44875": 1, "44i": 1, "45": [0, 1], "450": 0, "452": 1, "454436": 1, "455": 0, "45552794": [1, 3], "45875": 0, "45937": 0, "46": 1, "46000": 1, "4600000e": 1, "46103499": 3, "46347": 0, "46355": 3, "46357": 0, "464": [0, 1], "46553": 0, "466921": 1, "467041": 0, "467531": 1, "46775": 3, "46787": 0, "47": 1, "47000": 1, "472": 1, "476": 1, "47869015": [1, 3], "48": [1, 3], "480336": 1, "48374536": 3, "48500": 1, "4860c6aa36faintake_esm_var": 0, "487091": 0, "489f": 1, "49": [1, 3], "49036676628116": 1, "490367": 1, "493457": 1, "495": [1, 3], "4950008392334": 0, "4988": 0, "4a5976e3": 0, "4arrai": 3, "4b": 1, "4c3s_disclaim": 0, "4cmor_vers": 0, "4deg": 1, "4dset_id": [0, 3], "4f88": 3, "4mb": 1, "4time": 0, "5": [0, 1, 3], "50": [0, 1], "500": 1, "5000": 1, "50199637": 3, "503998": 0, "5049991607666": 0, "505": [1, 3], "50500": 1, "50619": 1, "509": 1, "50i": 1, "50m": [1, 3], "50m_physic": 1, "51": 1, "51000": 1, "51125": 1, "51510791": [1, 3], "516": 1, "518219": 0, "519375": 1, "52": 1, "520": 1, "52000": 1, "52500": 1, "53": 1, "531889": 1, "532": 1, "53776467": 3, "54": 1, "545277": 1, "54731044": 3, "55": [0, 1, 3], "55000": 1, "55349992": [1, 3], "55500": 1, "55596": 1, "55596048489265": 1, "558395": 1, "56": [0, 1], "56000": 1, "5625": 1, "56500": 1, "56761724": 3, "56766683": 3, "57": 1, "571136": 1, "57692365": [1, 3], "57922993": 3, "58": [1, 3], "580017": 0, "58114999": 3, "584": 1, "584315": 1, "588501": 0, "59": 1, "59063409": [1, 3], "59386389": [1, 3], "596854": 1, "5arrai": 3, "5ezpfj6d": 0, "5longitude_of_central_meridian": 3, "5pzvcfje": 0, "5standard_parallel": 3, "6": [0, 1, 3], "60": [1, 3], "6000": 3, "60000": 1, "60256233": [1, 3], "604999542236328": 0, "605": [1, 3], "60500": 1, "61": [0, 1, 3], "610218": 1, "612": 1, "614999771118164": 0, "615": [0, 1, 3], "62": 1, "620": 1, "621327": 1, "6213271076488": 1, "623333": 1, "625": 1, "62500": 1, "627594": 0, "62774455": [1, 3], "63": [0, 1], "63031609": 3, "63338982": 3, "636081": 1, "6371229": 3, "63852915": [1, 3], "63980798": 3, "63year": 0, "64": [1, 3], "64000": 1, "649254": 1, "65": [1, 3], "66": [1, 3], "661816": 1, "66454929": [1, 3], "6666665e": 1, "6666669e": 1, "668": 1, "67": [0, 1], "67000": 1, "671": 1, "67128525": 3, "672": [0, 1], "672bnd": 0, "675159": 1, "68": 1, "68000": 1, "682": 0, "684": 0, "684bnd": 0, "68500": 1, "68656681656385": 1, "686567": 1, "6875": 1, "68750": 1, "688272": 1, "68983654": [1, 3], "69": [0, 1, 3], "6953334e": 1, "699kb": 1, "69standard_nam": [1, 3], "6eab": 0, "6kb": 1, "6qnxo7uk": 0, "7": [0, 1, 3], "70": 1, "701026": 1, "71": [0, 1], "71000": 1, "71317561": 3, "714193": 1, "715": [1, 3], "71500015258789": 0, "72": [1, 3], "720": 1, "72000": 1, "725": [0, 1, 3], "72500": 1, "725000381469727": 0, "72632651": [1, 3], "726776": 1, "73": [0, 1, 3], "73072402": 3, "73484321": 3, "73728": 1, "74": [1, 3], "740099": 1, "7401946": 3, "74year": 3, "75": [1, 3], "75000": 1, "751728": 1, "75172847343066": 1, "75199541": [1, 3], "75321": 1, "75500": 1, "75940009": [1, 3], "75proj4_param": 3, "76": [1, 3], "76000": 1, "76500": 1, "76597": 1, "76624824": 3, "768": 1, "77": 1, "772": 1, "77574783": 3, "776": 1, "779132": 1, "78": 1, "78000": 1, "79": 1, "79000": 1, "791734": 1, "79546746": [1, 3], "7966666e": 1, "7alydjej": 0, "7ecd69b9": 0, "8": [0, 1, 3], "80": 1, "800": 1, "80000": 1, "80000154": 3, "802": 1, "804": 1, "80500": 1, "805039": 1, "8066666e": 1, "81": [0, 1, 3], "81000": 1, "812": 1, "8125": 1, "81250": 1, "81394504": [1, 3], "81683872860322": 1, "816839": 1, "818148": 1, "82": 1, "82111491": 3, "825": [1, 3], "825000762939453": 0, "82877696": 3, "83": [0, 1], "83000": 1, "830914": 1, "834999": 0, "834999084472656": 0, "835": [1, 3], "83500": 1, "83axi": 0, "84": [0, 1, 3], "840": 1, "84000": 1, "8400000e": 1, "84407": 1, "844999313354492": 0, "845": [1, 3], "84500": 1, "84axi": [1, 3], "84c0": 3, "84standard_nam": 1, "85": 1, "85452062": 3, "856691": 1, "858b": 0, "86": 1, "86380363": [1, 3], "864": 3, "86998": 1, "87": 1, "87000": 1, "875": 1, "87500": 1, "8787": [0, 3], "88": [1, 3], "88000": 1, "881": 1, "881913": 1, "8819133467975": 1, "883087": 1, "88500": 1, "88520879": 3, "89": [0, 1], "895857": 1, "89635763": 3, "89f8d9e57e05": 3, "8_clm17_cordex": 0, "8arrai": 3, "8dask": 3, "8ea5bde0": 0, "8nan": 3, "8rlat": 3, "9": [0, 1, 3], "90": [1, 3], "90000": 1, "909009": 1, "91000": 1, "91063756": [1, 3], "91816237": 3, "92": 1, "92000": 1, "921645": 1, "92500": 1, "9262367": 3, "9272": 3, "928": 1, "928a": 0, "92it": 0, "93": [0, 1, 3], "931165865": 0, "93125": 1, "93128853": 3, "93492": 1, "934999": 0, "934999465942383": 0, "935": [1, 3], "9375": 1, "94000": 1, "9419": 1, "94636519": 3, "946962": 1, "948025": 1, "95": [0, 1, 3], "954999923706055": 0, "955": [1, 3], "95753886": [1, 3], "95th": [0, 3], "96": [1, 3], "96000": 1, "960801": 1, "96388628": [1, 3], "964": [1, 3], "96437667": [1, 3], "96500": 1, "96693104": 3, "96standard_nam": [1, 3], "97": 1, "973948": 1, "98": 1, "986599": 1, "98782876": [1, 3], "98957131": [1, 3], "99": [1, 3], "99000": 1, "993927": 0, "99500": 1, "998": 1, "99986": 1, "9e": 1, "A": [0, 1], "For": [0, 1], "If": 1, "In": [0, 3], "Its": 1, "Near": [0, 3], "That": [0, 1], "The": [0, 1, 3], "There": 0, "These": 0, "To": 1, "__init__": 1, "_data_format_": 0, "_y_vz218": 0, "a214": 0, "a5b875a4": 3, "abbrev": 3, "abid": 0, "about": 1, "abov": 1, "absolut": 0, "ac": 1, "acccound": 2, "accept": 0, "access": [1, 2], "accessor": 1, "accord": 1, "account": 2, "achiev": 0, "achiv": 0, "acknowledg": 1, "activity_id": 1, "actual": [0, 1, 3], "add_colorbar": 1, "add_featur": [1, 3], "add_ocean": 3, "addit": 3, "adv": 1, "aerosol": 1, "afr": 1, "africa": 1, "again": [0, 3], "air": [0, 3], "air_temperatur": [0, 3], "air_temperatureunit": [0, 3], "al": [1, 3], "aladin53": [0, 3], "aladin63": [0, 3], "alaro": [0, 3], "algorithm": 1, "all": [0, 3], "allow": 1, "along": 1, "alp": 3, "alpin": 1, "also": [0, 1], "alter": [0, 1], "altitud": 1, "altitudecom": 1, "altitudeunit": 1, "alwai": 1, "amazonaw": [0, 1, 3], "america": 1, "amon": 1, "an": [1, 2, 3], "analysi": [0, 3], "ani": [0, 1], "annual": 0, "anon": [0, 3], "anoth": 1, "ant": 1, "antarctica": 1, "aogcmsub_experi": 1, "append": 0, "appli": 0, "applic": 1, "approach": 1, "approxim": 1, "ar": [0, 1, 3], "arc": 1, "archiv": [0, 1], "arctic": 1, "area": [0, 1, 3], "areacella": 1, "areacellaforcing_index": 1, "areacellahistori": 1, "argument": 1, "aris": 1, "arrai": [0, 3], "asia": 1, "aspect": [0, 3], "asset": 0, "assign_coord": 3, "associated_fil": 0, "atmo": 1, "atmoschem": 1, "atmospher": 1, "atmosphysics_vers": 0, "attribut": [0, 1, 3], "au": 1, "australasia": 1, "avail": [0, 1, 2], "averag": 0, "averagestandard_nam": 0, "aw": 3, "await": 1, "awar": 1, "ax": [1, 3], "axi": [0, 1], "axisgrid": 0, "b": 3, "b2ef8fc7afd7": 0, "b61d": 0, "background": 1, "base": 1, "been": [0, 1], "befor": 3, "below": 1, "between": [1, 3], "bf8b": 0, "bge43y6d": 0, "bi": 3, "bilinear": 1, "bilinear_192x384_412x424_peri": 1, "bind": 1, "black": [1, 3], "bnd": [0, 1], "book": 2, "border": [1, 3], "both": 1, "bound": 0, "boundari": 1, "branch_method": 1, "branch_time_in_child": 1, "branch_time_in_par": 1, "british": 3, "bt": 3, "btu": 3, "bundl": 2, "button": 0, "byte": [0, 3], "c": [0, 1], "c0": [0, 3], "c1": [0, 3], "c2": [0, 3], "c263718da247": 1, "c263718da247variable_id": 1, "c3": [0, 3], "c3s_34b_lot1": 0, "c3s_disclaim": 0, "c74cqngp": 3, "ca": 1, "calendar": 0, "call": 1, "cam": 1, "can": [0, 1, 3], "canesm2": 3, "cannot": 0, "care": 0, "cartopi": [1, 3], "cat": [0, 3], "catalog": [0, 3], "cccma": 3, "cclm": 0, "cclm4": [0, 3], "ccr": [1, 3], "cec0tpgq": 3, "ceda": 1, "cell": 1, "cell_measur": 1, "cell_method": [0, 1, 3], "celsiu": 0, "center": 0, "central": [0, 1, 3], "central_longitud": 3, "cerfac": [0, 3], "certain": 3, "ceu": 1, "cf": [0, 1, 3], "cf_xarrai": [0, 1, 3], "cfconvent": 0, "cftime": 0, "cftimeindex": 0, "cfxr": [0, 3], "chang": [1, 3], "chconventionsurl": 0, "check": [0, 1, 2, 3], "choos": 0, "christensen": 3, "chunk": [0, 3], "chunksiz": [0, 3], "chunktyp": 3, "ci": [0, 3], "citat": 1, "citi": 3, "cl": 0, "client": [0, 3], "climat": [0, 3], "clm": 0, "clmcom": [0, 3], "clmcominstitut": 0, "clmcomintake_esm_attr": 0, "close": 0, "cluster": [0, 3], "cm5": [0, 3], "cm5a": [0, 3], "cmap": [1, 3], "cmip": 1, "cmip5": [0, 3], "cmip6": 1, "cmip6nominal_resolut": 1, "cmip6parent_source_id": 1, "cmip6realization_index": 1, "cmip6tracking_id": 1, "cmipbranch_method": 1, "cmipparent_experiment_id": 1, "cmor": [0, 1], "cmor_vers": [0, 1], "cn0nf5ph": 0, "cnrm": [0, 3], "co2": 1, "coastlin": [1, 3], "col": [0, 3], "col_wrap": [0, 3], "collabor": 0, "collect": [1, 3], "color": [1, 3], "column": [0, 3], "com": [0, 1, 3], "combin": 0, "come": 1, "comm": [0, 3], "command": 1, "comment": [0, 1], "common": 1, "commun": 0, "communityconfig_cclm": 0, "communitymodel_id": 0, "compar": [1, 3], "compat": [0, 3], "compli": 0, "comput": [1, 3], "concat": [0, 3], "concaten": 0, "conda": 1, "confid": [0, 3], "config_cclm": 0, "config_int2lm": 0, "connect": [0, 1, 3], "consequ": 1, "consist": 1, "consolid": [0, 3], "construct": [0, 3], "consult": 1, "contact": [0, 1], "contain": [1, 2, 3], "content": 2, "contex": 0, "context": 0, "continu": 0, "control": 1, "convent": [0, 1], "convert": 0, "coodin": 1, "coord": [0, 3], "coordin": [0, 1, 3], "coordinateaxistyp": 3, "coordinatestandard_nam": 0, "copernicu": 0, "copi": 0, "cordex": [0, 3], "cordex4cd": 0, "cordex_domain": [0, 1, 3], "cordexintake_esm_attr": 0, "cordexrcm_version_id": 0, "cordextracking_id": 0, "core": 3, "correspond": [0, 1, 2], "cosmo": [0, 3], "cosmo_090213_4": 0, "countri": 3, "cpu": [0, 3], "cr": [1, 3], "crclim": [0, 3], "creat": [0, 1, 2, 3], "create_dataset": 1, "creation": 1, "creation_d": 0, "creativ": 1, "creativecommon": 1, "csc": [0, 3], "csv": 1, "cx": [1, 3], "d": [0, 1, 3], "d09466354597": 0, "d09466354597xarrai": 0, "d09c8ba5": 3, "da": [1, 3], "dai": 1, "daili": 0, "dashboard": [0, 3], "dask": [0, 1, 3], "data": [0, 1, 2, 3], "data3": 1, "dataarrai": [0, 1, 3], "datafram": 0, "dataset": [0, 1, 3], "datasetdimens": [0, 1], "date": 1, "datetime64": 0, "datetimeindex": 0, "datetimeprolepticgregorian": 0, "datset": 0, "de": [0, 1], "decad": 0, "decode_tim": [0, 3], "decreation_d": [0, 1], "deep": 0, "def": [0, 1, 3], "defaultdict": [0, 3], "defin": [0, 3], "defined_region": 3, "deg": 0, "degre": 0, "degrees_east": 0, "degrees_east_coordinateaxistyp": 1, "degrees_eastarrai": [1, 3], "degrees_eastaxi": 1, "degrees_north": 0, "degrees_north_coordinateaxistyp": 1, "degrees_northarrai": [1, 3], "degrees_northaxi": 1, "degreesarrai": [0, 1, 3], "degreesaxi": 1, "demonstr": 3, "depend": 3, "deriv": 0, "derived_variable_id": 0, "detail": 3, "develop": [0, 1], "df": [0, 3], "dict": [0, 3], "dict_kei": [0, 3], "dictionari": [0, 1, 3], "differ": [0, 1, 3], "dim": [0, 1, 3], "dimens": [0, 1], "directori": [0, 3], "disclaim": 0, "disk": 1, "distribut": [0, 1, 3], "dkrz": [0, 1], "dlat": 1, "dlon": 1, "dm": 0, "dmi": [0, 3], "do": [0, 1], "doc": 1, "dodsc": 1, "doe": 1, "doi": 1, "domain": 3, "domain_id": 1, "domain_info": 1, "don": [0, 1], "download": 1, "downloadwarn": 1, "draw_label": [1, 3], "driving_model_id": [0, 3], "drop": [0, 3], "ds_sub": [1, 3], "dset": [0, 1, 3], "dset_id": [0, 3], "dset_idpandasindexpandasindex": [0, 3], "dsets_sort": [0, 3], "dtype": [0, 1, 3], "dummi": [1, 3], "dveyg8kd": 0, "dynam": 1, "e": [0, 1, 3], "e4c0": 0, "e6": 0, "e64ea2c3": 0, "e6ef8ececc8f338646ebfb3aeed36bfctitl": 1, "e9": 0, "ea": [1, 3], "each": [0, 1, 3], "earth": [0, 1, 2, 3], "earthexperi": 0, "earthintake_esm_attr": 0, "earthsyst": 1, "easier": 0, "easili": [0, 1, 3], "east": 1, "eastern": 3, "ec": [0, 3], "echam6": 1, "ecmwf": 0, "effect": 1, "either": 1, "ellp": 3, "els": [0, 3], "ensembl": 3, "ensemble_mean": [0, 3], "entir": 3, "env": [0, 1], "equal": 1, "error": 0, "errorbar": [0, 3], "esg_cmip6": 1, "esgf": [1, 2], "esgf3": 1, "esm": [1, 3], "esm1": 1, "esm2g": [0, 3], "et": 1, "eth": [0, 3], "ethinstitut": 0, "ethz": 0, "eu": [0, 3], "eur": [0, 3], "eur11": 1, "eur11_us": 1, "euro": [0, 2, 3], "europ": [0, 1, 3], "european": 3, "exampl": [0, 3], "exclud": 1, "execut": 1, "exp_id": [0, 3], "experi": 3, "experiment_id": [0, 3], "experiment_idpandasindexpandasindex": [0, 3], "expertis": 1, "express": 1, "extent": [1, 3], "f": [0, 1, 3], "facecolor": 1, "facetgrid": [0, 3], "fact": 3, "fals": [0, 1, 3], "falsearrai": 3, "faster": 1, "featur": [1, 3], "feature_artist": 1, "fed": 1, "feder": 2, "feedback": 0, "figsiz": [0, 1, 3], "figur": [1, 3], "file": [0, 1], "filenam": 1, "filesystem": 1, "fill": 0, "first": 1, "fit": 1, "flag": 1, "float32": [0, 1], "float32284": 1, "float32dask": 0, "float64": [0, 1, 3], "float640": 1, "float642": [0, 3], "float6421": [1, 3], "float64dask": 0, "float64index": [0, 3], "focu": 1, "focus": 1, "follow": [0, 3], "forc": 1, "forcingexperiment_id": 0, "foreground": 1, "forg": 1, "format": [0, 2], "found": [0, 1], "fr": 3, "franc": 3, "free": 0, "freq": 0, "frequenc": [0, 3], "from": [0, 1, 2, 3], "fsspec": [0, 3], "full": 0, "fullest": 1, "function": [0, 1, 3], "further": 1, "further_info_url": 1, "furtherinfo": 1, "futur": 1, "futurewarn": 1, "fxfurther_info_url": 1, "fxtable_info": 1, "g": [0, 1, 3], "g300046": 0, "gap": 0, "gar": 1, "gb": 0, "gcm": 0, "geoax": 1, "geoid": 1, "geometr": 1, "geopotenti": 1, "geox": 3, "geoycoordinatetransformtyp": 3, "geric": [0, 3], "germanyinstitution_id": 1, "get": [0, 1, 3], "get_mapp": 0, "gfdl": [0, 3], "gib": [0, 3], "githubusercont": 1, "give": [0, 1, 3], "global": 1, "gn": 1, "gngrid_label": 1, "gnhistori": 1, "got": 0, "gov": 1, "govern": 1, "grai": [1, 3], "grant": 2, "graph": [0, 3], "greater": 1, "grid": [2, 3], "grid_latitudelong_nam": [1, 3], "grid_latitudeunit": 0, "grid_longitudelong_nam": [1, 3], "grid_longitudeunit": 0, "grid_map": [0, 1, 3], "grid_mapping_nam": [0, 3], "grid_north_pole_latitud": [1, 3], "grid_north_pole_longitud": [1, 3], "gridlin": [1, 3], "gridspec_atmos_fx_clmcom": 0, "gridspecfil": 0, "gridstandard_nam": 0, "gridunit": [1, 3], "groupbi": [0, 3], "grow": 0, "gt": [0, 1, 3], "h": 0, "ha": [0, 1], "hadgem2": [0, 3], "hamburg": 1, "hamocc6": 1, "has_year_zero": 0, "have": [0, 1, 3], "hdl": 1, "head": 0, "heart": 1, "heavi": 3, "height": [0, 1, 3], "heightposit": [0, 3], "heightunit": [0, 3], "here": [0, 3], "hibler": 1, "high": 1, "highest": 0, "highli": 1, "hirham5": [0, 3], "hist_id": 0, "histor": [0, 1, 3], "histori": 1, "historicaldriving_model_ensemble_memb": 0, "historicalexperiment_id": 0, "historicalexternal_vari": 1, "historicalfrequ": 0, "historicalintake_esm_attr": 0, "historicaltracking_id": 0, "hit": 0, "how": [0, 1, 3], "howev": [0, 1], "hpa": 1, "hr": 1, "hr_historical_r1i1p1f1_gn": 1, "hr_historical_r1i1p1f1_gn_199501": 1, "hrparent_time_unit": 1, "hrsource_typ": 1, "http": [0, 1, 2, 3], "hue": [0, 3], "huge": 1, "hyperlink": 2, "i": [0, 1, 2, 3], "iberian": 3, "ic": 1, "ichec": [0, 3], "ictp": [0, 3], "identifi": 1, "iloc": 0, "imdi": 0, "impli": 1, "import": [0, 1, 3], "includ": [1, 3], "increas": 1, "incur": 0, "index": [0, 1, 3], "info": [0, 3], "inform": [0, 3], "initialization_index": 1, "initialization_method": 0, "input": 1, "insight": 0, "instal": 1, "instead": [0, 1], "institut": 1, "institute_id": [0, 3], "int32": [0, 1, 3], "int320grid_mapping_nam": 1, "int64": [0, 3], "int641": 3, "int641950": [0, 3], "int641970": 3, "int64index": [0, 3], "intak": [0, 3], "intake_esm_attr": 0, "intake_esm_dataset_kei": 0, "interact": 2, "interest": [0, 3], "intern": 1, "interv": [0, 3], "interval_oper": 0, "interval_writ": 0, "invert": 1, "involv": 3, "io": 1, "ip": 3, "ipsl": [0, 3], "isel": [0, 3], "isl": 3, "item": [0, 1, 3], "j": 1, "jlbaa02h": 0, "jsbach3": 1, "json": [0, 3], "jupyt": 2, "jupyterlab": 3, "just": [0, 3], "k": [0, 3], "kb": 1, "keep": 1, "keep_attr": [0, 3], "kei": [0, 1, 3], "kib": [0, 3], "kind": [0, 3], "kmparent_activity_id": 1, "kn": 0, "knmi": [0, 3], "kxarrai": [0, 3], "label": 3, "lambert_conform": [0, 3], "lambert_conformal_conicinverse_flatten": 3, "lambert_conformal_coniclatitude_of_projection_origin": 3, "lambert_conformalinterval_oper": 0, "lambertconform": 3, "land": 1, "landic": 1, "landrefer": 1, "larg": 1, "larsbuntemey": 3, "lat": [0, 1, 3], "lat_0": 3, "lat_1": 3, "lat_2": 3, "lat_bnd": 1, "lat_bndsunit": 1, "lat_vertic": 0, "lat_verticeslong_nam": 0, "later": 0, "latest": 1, "latitud": [0, 1, 3], "latitudearrai": 1, "latitudelong_nam": [1, 3], "latitudestandard_nam": [0, 1], "latitudeunit": [0, 1, 3], "latpandasindexpandasindex": 1, "launch": 3, "law": 1, "layer": [0, 1, 3], "lazili": 0, "lcc": 3, "length": [0, 1, 3], "let": [0, 1, 3], "levant": 0, "level": 1, "lh7bbaap": 0, "liabil": 1, "lib": 1, "licens": 1, "like": 1, "limit": [0, 1, 3], "line": [0, 1, 3], "line2d": [0, 3], "line_kw": 3, "linewidth": [1, 3], "list": [0, 3], "littl": 3, "ll": 1, "ll_historical_r1i1p1f2_gn_185001": 1, "ll_lat": 1, "ll_lon": 1, "llnl": 1, "load": 3, "loc": [0, 1, 3], "local": [0, 3], "localclust": [0, 3], "lon": [0, 1, 3], "lon_0": 3, "lon_bnd": 1, "lon_bndsunit": 1, "lon_vertic": 0, "lon_verticeslong_nam": 0, "long": 1, "long_nam": [0, 1, 3], "longitud": [0, 1, 3], "longitudearrai": 1, "longitudelong_nam": [1, 3], "longitudestandard_nam": [0, 1], "longitudeunit": [0, 1, 3], "longrid_map": 1, "lonpandasindexpandasindex": 1, "look": [0, 1, 2, 3], "lot": 0, "lower": 1, "lr": [0, 3], "lrexperi": 0, "lt": [0, 1, 3], "lw": 3, "m": [0, 1, 3], "macv2": 1, "mad": 0, "made": 0, "mai": [0, 1], "main": 1, "make": [0, 1, 3], "manual": 1, "map": 1, "marrai": [0, 1, 3], "mask_3d": 3, "mask_prud": 3, "matplotlib": [0, 1, 3], "mauritsen": 1, "max": [1, 3], "mayb": 1, "mb": [0, 1], "md": 3, "md5": 1, "me": 3, "me_topo": 3, "mean": 1, "meancell_measur": 1, "meancom": 0, "meangrid_map": [0, 3], "med": 1, "mediterranean": [1, 3], "member": [0, 3], "memori": [0, 1, 3], "merchant": 1, "meta": [0, 1, 3], "metadata": 0, "meteorologi": 1, "meter": 0, "method": [0, 3], "mgrid_map": 1, "mib": 0, "micromamba": 1, "mid": 3, "middl": 1, "min": [1, 3], "minim": [0, 3], "minut": 0, "miroc": [0, 3], "miroc5": [0, 3], "miss": 1, "mmip_era": 1, "mna": 1, "model": [0, 1, 3], "model_id": [0, 3], "modeldata": 1, "modifi": 1, "modul": 1, "mohc": [0, 1, 3], "mon": [0, 3], "monhistori": 0, "moninstitute_id": 0, "monintake_esm_attr": 0, "month": 0, "monthlong_nam": 0, "more": [0, 1, 2, 3], "moriginal_nam": 1, "mostli": 1, "mpi": [0, 1, 3], "mpiom1": 1, "mpl": 1, "mr": [0, 3], "much": 0, "mueller": 1, "n": 0, "nam": 1, "name": [0, 1, 3], "nan": [0, 1, 3], "nanarrai": 0, "nanni": [0, 3], "naturalearth": 1, "nbyte": 0, "nc": [1, 3], "ncc": [0, 3], "nccell_method": 0, "ndarrai": [0, 3], "ne_110m_admin_0_boundary_lines_land": 1, "ne_110m_coastlin": 1, "ne_50m_coastlin": 1, "need": [1, 2], "neglig": 1, "net": 2, "never": 1, "new": 3, "new_id": [0, 3], "nice": [0, 1], "nlat": 1, "nlon": 1, "no_defssemi_major_axi": 3, "noaa": [0, 3], "node": 2, "none": [0, 1, 3], "nonesub_experiment_id": 1, "nonetable_id": 1, "noresm1": [0, 3], "normal": 1, "north": [0, 1, 3], "notat": 0, "note": 1, "notebook": [2, 3], "now": [0, 1, 3], "np": [0, 3], "number": [0, 1], "numpi": [0, 3], "o": 3, "object": [0, 1, 3], "object1950": 0, "objectdask": 0, "ocean": 1, "ocnbgchem": 1, "octet": 1, "often": 3, "ok": 1, "omiss": 0, "one": [0, 1, 2, 3], "onli": 3, "online_oper": 0, "open": 3, "open_dataset": 1, "open_esm_datastor": [0, 3], "open_zarr": 0, "openid": 2, "oper": 1, "option": 3, "order": 1, "ordereddict": [0, 3], "org": 1, "orgcreation_d": 0, "original_nam": 1, "orog": 1, "orog_fx_m": 1, "orog_fx_mpi": 1, "orogcell_method": 1, "orogvariant_label": 1, "other": 1, "our": [0, 1, 3], "out": [0, 2, 3], "output": [0, 1, 3], "outputintake_esm_attr": 0, "outputproject_id": [0, 1], "over": 3, "overhead": 1, "overlap": 3, "overrid": [0, 3], "overview": [0, 1], "packag": [1, 3], "page": 2, "palett": [0, 3], "panda": 0, "parallel": 1, "particular": 1, "password": 2, "pastexperiment_id": 1, "path": 0, "path_effect": 1, "patheffect": 1, "pcmdi": 1, "pe": 1, "peninsula": 3, "percentil": [0, 3], "perform": 0, "period": [0, 1], "permit": 1, "picontrolparent_mip_era": 1, "planck": 1, "platecarre": [1, 3], "pleas": [0, 1], "plot": 3, "plt": [1, 3], "pole": [0, 1, 3], "pole_latitud": 1, "pole_longitud": 1, "polearrai": 3, "pollat": 1, "pollon": 1, "pre": 1, "preconfigur": 1, "prepar": [0, 1], "prescrib": 1, "preset": 0, "principl": 0, "print": 0, "privaci": 0, "problem": 0, "process": [0, 3], "produc": [0, 1], "product": 0, "proj": 3, "project": [0, 1, 3], "project_id": [0, 3], "projection_x_coordinatelong_nam": 1, "projection_y_coordinatelong_nam": 1, "projectionfalse_east": 3, "proleptic_gregorian": 0, "proper": 1, "provid": [0, 1], "proxi": [0, 3], "prudenc": 3, "publicli": 0, "purpos": [0, 1], "py": 1, "pyplot": [1, 3], "pyremo": 1, "python": [1, 3], "python3": 1, "q080ufic": 3, "quadmesh": [0, 1], "quick": 1, "r12i1p1": [0, 3], "r12i1p1driving_experiment_nam": 0, "r12i1p1driving_model_id": 0, "r12i1p1intake_esm_attr": 0, "r1i1p1": [0, 3], "r1i1p1driving_experiment_nam": 0, "r1i1p1driving_model_id": 0, "r1i1p1f1": 1, "r1i1p1f1grid": 1, "r1i1p1f1licens": 1, "r1i1p1f1physics_index": 1, "r1i1p1f2": 1, "r2i1p1": [0, 3], "r3i1p1": [0, 3], "racmo22": [0, 3], "rang": [1, 3], "raw": 1, "rca4": [0, 3], "rcm": [0, 1], "rcm_version_id": [0, 3], "rcp26": [0, 3], "rcp45": [0, 3], "rcp85": [0, 3], "re": 1, "real": 3, "realli": 0, "recent": 1, "record": 1, "rectifi": 0, "reduc": 0, "refer": [0, 1], "regard": 0, "regcm4": [0, 3], "region": 1, "regionpandasindexpandasindex": 3, "regionxarrai": 3, "regrid": 1, "regridd": 1, "rekli": 3, "relplot": [0, 3], "remap": 1, "remap_cdo": 1, "remap_x": 1, "remapbil": 1, "remo": 1, "remo2009": [0, 3], "remo2015": [0, 3], "replac": [0, 1, 3], "request": 1, "requir": [0, 1, 2], "reset_index": [0, 3], "resolut": [1, 3], "resolv": 1, "respect": 0, "respons": [0, 1], "result": [0, 1, 3], "return": [0, 1, 3], "returnxarrai": 1, "reus": [1, 3], "revis": 0, "rewrot": [0, 1], "right": [1, 3], "rlat": [0, 1, 3], "rlatpandasindexpandasindex": [0, 1, 3], "rlon": [0, 1, 3], "rlonpandasindexpandasindex": [0, 1, 3], "rmib": [0, 3], "rolling_mean": 0, "root": 1, "rotat": [0, 1, 3], "rotated_latitude_longitud": [0, 1, 3], "rotated_latitude_longitudecom": 1, "rotated_latitude_longitudegrid_north_pole_latitud": [0, 1, 3], "rotated_latitude_longitudehistori": 0, "rotated_latitude_longitudeunit": 1, "rotated_pol": [0, 1, 3], "rotated_polelong_nam": [0, 3], "rotatedpol": [1, 3], "routin": 1, "row": [0, 3], "run": [0, 3], "runner": 1, "s1": [0, 3], "s1b": 3, "s253ymsv": 0, "s3": [0, 1, 3], "sam": 1, "same": 1, "save": 1, "sc": 3, "scalar": 0, "scale": 3, "scandinavia": 3, "sccalkd": 0, "scenario": 0, "schedul": [0, 3], "scientif": 0, "scneario": 0, "sd": 3, "sea": 1, "seaborn": 3, "seaic": 1, "search": [0, 3], "see": [0, 1, 2, 3], "sel": [0, 3], "select": 2, "semtner": 1, "sent": 1, "sept": 0, "servic": 0, "set": [0, 1, 3], "set_ext": [1, 3], "set_opt": [0, 3], "set_titl": [1, 3], "shape": [0, 1, 3], "sharealik": 1, "short_nam": 1, "should": [1, 3], "show": [0, 1, 3], "similar": [0, 1], "simpl": 0, "simul": 1, "sinc": [0, 1], "singl": 0, "sinterval_writ": 0, "site": 1, "size": [0, 1], "slice": [0, 3], "slightli": 1, "sm": 0, "smhi": [0, 3], "sn": [0, 3], "so": [0, 1], "some": [0, 1, 3], "sophist": 1, "sort": [0, 1, 3], "sort_dataset": [0, 3], "sourc": [0, 3], "source_id": 1, "south": 1, "sp": 1, "space": [0, 3], "spatic": 0, "spawner": 0, "specif": 1, "spectral": 1, "sphere": 3, "split": [0, 3], "squeez": 3, "standard": [0, 1], "standard_nam": [0, 1, 3], "standardbranch_time_in_child": 1, "start": [0, 3], "stastic": 0, "statu": [0, 3], "step": [0, 1], "storage_opt": [0, 3], "store": [0, 1], "stream": 1, "stroke": 1, "structur": 0, "studi": 3, "sub": 3, "subset": [0, 3], "sum": 0, "suppli": 1, "surfac": [0, 1, 3], "surface_altitud": 1, "surface_altitudelong_nam": 1, "svn": 0, "swap_dim": 3, "switzerland": 0, "sy": [0, 3], "syst": 1, "system": [1, 2], "t": [0, 1], "t127": 1, "ta": [0, 1, 3], "tabl": [0, 1], "tag": 0, "tailor": 3, "take": 0, "tas_amon_mpi": 1, "tas_amon_ukesm1": 1, "tasintake_esm_attr": 0, "tbound": 0, "tcp": [0, 3], "technic": 0, "temperatur": [0, 3], "temperatureonline_oper": 0, "temperaturestandard_nam": [0, 3], "tempor": 0, "temporari": 1, "term": 1, "termsofus": 1, "terrain": [1, 3], "test": 0, "th": 0, "thei": 1, "them": [0, 1, 3], "thermodynam": 1, "thi": [0, 1, 2, 3], "thing": 1, "those": [0, 1, 3], "thread": [0, 3], "thredd": 1, "time": [0, 1, 3], "time_bnd": 0, "time_bndslong_nam": 0, "timearrai": 0, "timelin": 0, "timepandasindexpandasindex": 0, "timescal": 0, "timeseri": 3, "timestandard_nam": 0, "timestep": 1, "titl": [0, 1, 3], "tmp": [0, 3], "to_datafram": [0, 3], "to_dataset_dict": [0, 3], "to_netcdf": [1, 3], "togeth": [1, 3], "tool": 1, "top": 1, "topo": [1, 3], "topographi": [1, 3], "total": [0, 3], "tp04": 1, "tqdm": [0, 3], "tracking_id": [0, 1], "transform": [1, 3], "transpos": 3, "treat": 0, "trigger": [1, 3], "tripolar": 1, "true": [0, 1, 3], "tutori": 1, "type": [0, 1, 3], "u": 3, "u10": [0, 3], "u17": 3, "u2": 3, "u78": [0, 3], "ugent": [0, 3], "uhoh": [0, 3], "uk": 1, "ukesm1": 1, "un": 1, "under": 1, "uniqu": 0, "unit": [0, 1, 3], "unnam": 1, "unused_kei": 1, "up": [0, 3], "upstandard_nam": [0, 3], "ur_lat": 1, "ur_lon": 1, "url": [0, 1, 3], "us": 3, "use_cftim": [0, 3], "useful": [1, 3], "user": [0, 3], "userwarn": 1, "usual": 0, "usus": 0, "util": 0, "v": 0, "v1": [0, 3], "v1a": [0, 3], "v1esnpac": 0, "v1intake_esm_attr": 0, "v1realiz": 0, "v1refer": 0, "v2": [0, 3], "v20131026": 0, "v20140515": 0, "v20140515intake_esm_attr": 0, "v20190108": 0, "v20190208": 0, "v20190406": 1, "v20190710": 1, "v20191219": 0, "v20210430": 0, "v3": [0, 3], "va": 1, "valu": [0, 1, 3], "valuabl": 0, "variabl": [0, 1], "variable_id": [0, 1, 3], "variant_label": 1, "vector": 1, "veri": 1, "version": [0, 1], "vertic": 0, "via": [1, 2], "vmax": [1, 3], "vmin": [1, 3], "w": 1, "wa": 1, "wall": [0, 3], "want": 1, "warm": 3, "warn": 1, "warrant": 0, "warranti": 1, "wcrp": 1, "we": [0, 1, 3], "weight": [1, 3], "weighted_mean": 3, "welcom": 1, "well": 1, "wget": 1, "when": 0, "where": [0, 3], "which": [1, 3], "while": 0, "whole": 0, "wif0l4jq": 0, "window": 0, "within": 0, "without": [0, 1], "wl_1xidi": 0, "work": 3, "worker": [0, 3], "wrf": [0, 3], "wrf361h": [0, 3], "write": 1, "www": [0, 2], "x": [0, 1, 3], "x27": [0, 1, 3], "x_0": 3, "xarrai": [0, 1, 3], "xarray_open_kwarg": [0, 3], "xe": 1, "xesmf": 1, "xloc": [1, 3], "xlong_nam": [0, 1], "xr": [0, 1, 3], "xstandard_nam": [1, 3], "y": [0, 1, 3], "y_0": 3, "yarrai": 1, "year": [0, 3], "yearli": 3, "yearly_mean": 0, "yearly_regional_mean": 3, "yearpandasindexpandasindex": [0, 3], "yloc": [1, 3], "ylong_nam": [0, 1], "you": 1, "ystandard_nam": [1, 3], "zarr": 0, "zarrintake_esm_dataset_kei": 0, "zero": 1, "zip": 1, "zlong_nam": [0, 3], "zmaw": 0, "zurich": 0}, "titles": ["AWS Access", "Cordex domains", "Welcome to the CORDEX Tutorials!", "Regional means"], "titleterms": {"11": 1, "access": 0, "all": 1, "altern": 1, "an": 0, "averag": 3, "aw": 0, "cdo": 1, "chang": 0, "collect": 0, "comput": 0, "cordex": [1, 2], "core": 1, "defin": 1, "domain": 1, "ensembl": 0, "entir": 0, "esm": 0, "eur": 1, "exampl": 1, "grid": 1, "inform": 1, "interpol": 1, "investig": 0, "mask": 3, "mean": [0, 3], "method": 1, "open": 0, "plot": [0, 1], "region": [0, 3], "regionmask": 3, "roll": 0, "seaborn": 0, "spatial": 3, "statist": 0, "tutori": 2, "us": [0, 1], "user": 1, "warm": 0, "welcom": 2, "work": 1, "yearli": 0}}) \ No newline at end of file