Skip to content

Commit 51c4cfb

Browse files
author
Quarto GHA Workflow Runner
committed
Built site for gh-pages
1 parent 422924d commit 51c4cfb

22 files changed

+4163
-338
lines changed

.nojekyll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
e04aa6b4
1+
24107e7b

examples/00_download_data.html

Lines changed: 30 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>
33

44
<meta charset="utf-8">
5-
<meta name="generator" content="quarto-1.7.31">
5+
<meta name="generator" content="quarto-1.7.32">
66

77
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
88

@@ -58,7 +58,7 @@
5858
</style>
5959

6060

61-
<script src="../site_libs/quarto-nav/quarto-nav.js"></script>
61+
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js" integrity="sha512-bLT0Qm9VnAYZDflyKcBaQ2gg0hSYNQrJ8RilYldYQ1FxQYoCLtUjuuRuZo+fjqhx/qtq/1itJ0C2ejDxltZVFg==" crossorigin="anonymous"></script><script src="../site_libs/quarto-nav/quarto-nav.js"></script>
6262
<script src="../site_libs/quarto-nav/headroom.min.js"></script>
6363
<script src="../site_libs/clipboard/clipboard.min.js"></script>
6464
<script src="../site_libs/quarto-search/autocomplete.umd.js"></script>
@@ -71,9 +71,9 @@
7171
<script src="../site_libs/quarto-html/tippy.umd.min.js"></script>
7272
<script src="../site_libs/quarto-html/anchor.min.js"></script>
7373
<link href="../site_libs/quarto-html/tippy.css" rel="stylesheet">
74-
<link href="../site_libs/quarto-html/quarto-syntax-highlighting-e1a5c8363afafaef2c763b6775fbf3ca.css" rel="stylesheet" class="quarto-color-scheme" id="quarto-text-highlighting-styles">
75-
<link href="../site_libs/quarto-html/quarto-syntax-highlighting-dark-8ef56b68f8fa1e9d2ba328e99e439f80.css" rel="stylesheet" class="quarto-color-scheme quarto-color-alternate" id="quarto-text-highlighting-styles">
76-
<link href="../site_libs/quarto-html/quarto-syntax-highlighting-e1a5c8363afafaef2c763b6775fbf3ca.css" rel="stylesheet" class="quarto-color-scheme-extra" id="quarto-text-highlighting-styles">
74+
<link href="../site_libs/quarto-html/quarto-syntax-highlighting-37eea08aefeeee20ff55810ff984fec1.css" rel="stylesheet" class="quarto-color-scheme" id="quarto-text-highlighting-styles">
75+
<link href="../site_libs/quarto-html/quarto-syntax-highlighting-dark-2fef5ea3f8957b3e4ecc936fc74692ca.css" rel="stylesheet" class="quarto-color-scheme quarto-color-alternate" id="quarto-text-highlighting-styles">
76+
<link href="../site_libs/quarto-html/quarto-syntax-highlighting-37eea08aefeeee20ff55810ff984fec1.css" rel="stylesheet" class="quarto-color-scheme-extra" id="quarto-text-highlighting-styles">
7777
<script src="../site_libs/bootstrap/bootstrap.min.js"></script>
7878
<link href="../site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
7979
<link href="../site_libs/bootstrap/bootstrap-4c33a50c55896b3d40e387adf82d8fb0.min.css" rel="stylesheet" append-hash="true" class="quarto-color-scheme" id="quarto-bootstrap" data-mode="light">
@@ -106,6 +106,10 @@
106106
"search-label": "Search"
107107
}
108108
}</script>
109+
<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.6/require.min.js" integrity="sha512-c3Nl8+7g4LMSTdrm621y7kf9v3SDPnhxLNhcjFJbKECVnmZHTdo+IRO05sNLTH/D3vA6u1X32ehoLC7WFVdheg==" crossorigin="anonymous"></script>
110+
111+
<script type="application/javascript">define('jquery', [],function() {return window.jQuery;})</script>
112+
<script src="https://unpkg.com/@jupyter-widgets/html-manager@*/dist/embed-amd.js" crossorigin="anonymous"></script>
109113

110114

111115
<link rel="stylesheet" href="../styles.css">
@@ -440,14 +444,32 @@ <h1 class="title">Download data</h1>
440444

441445

442446
<p>We’ll use the earthaccess library to download a single file for the <a href="https://podaac.jpl.nasa.gov/MEaSUREs-MUR">MUR-SST</a> dataset to use for these examples.</p>
443-
<div id="cell-2" class="cell">
447+
<div id="cell-2" class="cell" data-execution_count="1">
444448
<div class="sourceCode cell-code" id="cb1"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb1-1"><a href="#cb1-1" aria-hidden="true" tabindex="-1"></a><span class="im">import</span> earthaccess</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
445449
</div>
446-
<div id="cell-3" class="cell">
450+
<div id="cell-3" class="cell" data-execution_count="2">
447451
<div class="sourceCode cell-code" id="cb2"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb2-1"><a href="#cb2-1" aria-hidden="true" tabindex="-1"></a>results <span class="op">=</span> earthaccess.search_data(</span>
448-
<span id="cb2-2"><a href="#cb2-2" aria-hidden="true" tabindex="-1"></a> concept_id<span class="op">=</span><span class="st">"C1996881146-POCLOUD"</span>, count<span class="op">=</span><span class="dv">3</span>, temporal<span class="op">=</span>(<span class="st">"2002-06-01"</span>, <span class="st">"2002-06-30"</span>)</span>
452+
<span id="cb2-2"><a href="#cb2-2" aria-hidden="true" tabindex="-1"></a> concept_id<span class="op">=</span><span class="st">"C1996881146-POCLOUD"</span>, count<span class="op">=</span><span class="dv">1</span>, temporal<span class="op">=</span>(<span class="st">"2002-06-01"</span>, <span class="st">"2002-06-01"</span>)</span>
449453
<span id="cb2-3"><a href="#cb2-3" aria-hidden="true" tabindex="-1"></a>)</span>
450454
<span id="cb2-4"><a href="#cb2-4" aria-hidden="true" tabindex="-1"></a>earthaccess.download(results, <span class="st">"../data"</span>)[<span class="dv">0</span>]</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
455+
<div class="cell-output cell-output-display">
456+
<script type="application/vnd.jupyter.widget-view+json">
457+
{"model_id":"35236c689f244982a96bc3e9bd8debd2","version_major":2,"version_minor":0,"quarto_mimetype":"application/vnd.jupyter.widget-view+json"}
458+
</script>
459+
</div>
460+
<div class="cell-output cell-output-display">
461+
<script type="application/vnd.jupyter.widget-view+json">
462+
{"model_id":"811cbf7acc3b4b678bb501b69915e523","version_major":2,"version_minor":0,"quarto_mimetype":"application/vnd.jupyter.widget-view+json"}
463+
</script>
464+
</div>
465+
<div class="cell-output cell-output-display">
466+
<script type="application/vnd.jupyter.widget-view+json">
467+
{"model_id":"efedb4699c54415bbe104c0dc09ba835","version_major":2,"version_minor":0,"quarto_mimetype":"application/vnd.jupyter.widget-view+json"}
468+
</script>
469+
</div>
470+
<div class="cell-output cell-output-display" data-execution_count="2">
471+
<pre><code>'../data/20020601090000-JPL-L4_GHRSST-SSTfnd-MUR-GLOB-v02.0-fv04.1.nc'</code></pre>
472+
</div>
451473
</div>
452474

453475

examples/01_CRS_in_auxiliary_variable.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>
33

44
<meta charset="utf-8">
5-
<meta name="generator" content="quarto-1.7.31">
5+
<meta name="generator" content="quarto-1.7.32">
66

77
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
88

@@ -71,9 +71,9 @@
7171
<script src="../site_libs/quarto-html/tippy.umd.min.js"></script>
7272
<script src="../site_libs/quarto-html/anchor.min.js"></script>
7373
<link href="../site_libs/quarto-html/tippy.css" rel="stylesheet">
74-
<link href="../site_libs/quarto-html/quarto-syntax-highlighting-e1a5c8363afafaef2c763b6775fbf3ca.css" rel="stylesheet" class="quarto-color-scheme" id="quarto-text-highlighting-styles">
75-
<link href="../site_libs/quarto-html/quarto-syntax-highlighting-dark-8ef56b68f8fa1e9d2ba328e99e439f80.css" rel="stylesheet" class="quarto-color-scheme quarto-color-alternate" id="quarto-text-highlighting-styles">
76-
<link href="../site_libs/quarto-html/quarto-syntax-highlighting-e1a5c8363afafaef2c763b6775fbf3ca.css" rel="stylesheet" class="quarto-color-scheme-extra" id="quarto-text-highlighting-styles">
74+
<link href="../site_libs/quarto-html/quarto-syntax-highlighting-37eea08aefeeee20ff55810ff984fec1.css" rel="stylesheet" class="quarto-color-scheme" id="quarto-text-highlighting-styles">
75+
<link href="../site_libs/quarto-html/quarto-syntax-highlighting-dark-2fef5ea3f8957b3e4ecc936fc74692ca.css" rel="stylesheet" class="quarto-color-scheme quarto-color-alternate" id="quarto-text-highlighting-styles">
76+
<link href="../site_libs/quarto-html/quarto-syntax-highlighting-37eea08aefeeee20ff55810ff984fec1.css" rel="stylesheet" class="quarto-color-scheme-extra" id="quarto-text-highlighting-styles">
7777
<script src="../site_libs/bootstrap/bootstrap.min.js"></script>
7878
<link href="../site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
7979
<link href="../site_libs/bootstrap/bootstrap-4c33a50c55896b3d40e387adf82d8fb0.min.css" rel="stylesheet" append-hash="true" class="quarto-color-scheme" id="quarto-bootstrap" data-mode="light">

examples/02_CRS_and_geotransform_in_auxiliary_variable.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>
33

44
<meta charset="utf-8">
5-
<meta name="generator" content="quarto-1.7.31">
5+
<meta name="generator" content="quarto-1.7.32">
66

77
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
88

@@ -71,9 +71,9 @@
7171
<script src="../site_libs/quarto-html/tippy.umd.min.js"></script>
7272
<script src="../site_libs/quarto-html/anchor.min.js"></script>
7373
<link href="../site_libs/quarto-html/tippy.css" rel="stylesheet">
74-
<link href="../site_libs/quarto-html/quarto-syntax-highlighting-e1a5c8363afafaef2c763b6775fbf3ca.css" rel="stylesheet" class="quarto-color-scheme" id="quarto-text-highlighting-styles">
75-
<link href="../site_libs/quarto-html/quarto-syntax-highlighting-dark-8ef56b68f8fa1e9d2ba328e99e439f80.css" rel="stylesheet" class="quarto-color-scheme quarto-color-alternate" id="quarto-text-highlighting-styles">
76-
<link href="../site_libs/quarto-html/quarto-syntax-highlighting-e1a5c8363afafaef2c763b6775fbf3ca.css" rel="stylesheet" class="quarto-color-scheme-extra" id="quarto-text-highlighting-styles">
74+
<link href="../site_libs/quarto-html/quarto-syntax-highlighting-37eea08aefeeee20ff55810ff984fec1.css" rel="stylesheet" class="quarto-color-scheme" id="quarto-text-highlighting-styles">
75+
<link href="../site_libs/quarto-html/quarto-syntax-highlighting-dark-2fef5ea3f8957b3e4ecc936fc74692ca.css" rel="stylesheet" class="quarto-color-scheme quarto-color-alternate" id="quarto-text-highlighting-styles">
76+
<link href="../site_libs/quarto-html/quarto-syntax-highlighting-37eea08aefeeee20ff55810ff984fec1.css" rel="stylesheet" class="quarto-color-scheme-extra" id="quarto-text-highlighting-styles">
7777
<script src="../site_libs/bootstrap/bootstrap.min.js"></script>
7878
<link href="../site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
7979
<link href="../site_libs/bootstrap/bootstrap-4c33a50c55896b3d40e387adf82d8fb0.min.css" rel="stylesheet" append-hash="true" class="quarto-color-scheme" id="quarto-bootstrap" data-mode="light">

examples/03_multiscales_as_WebMercatorQuad_ZarrV2.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>
33

44
<meta charset="utf-8">
5-
<meta name="generator" content="quarto-1.7.31">
5+
<meta name="generator" content="quarto-1.7.32">
66

77
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
88

@@ -71,9 +71,9 @@
7171
<script src="../site_libs/quarto-html/tippy.umd.min.js"></script>
7272
<script src="../site_libs/quarto-html/anchor.min.js"></script>
7373
<link href="../site_libs/quarto-html/tippy.css" rel="stylesheet">
74-
<link href="../site_libs/quarto-html/quarto-syntax-highlighting-e1a5c8363afafaef2c763b6775fbf3ca.css" rel="stylesheet" class="quarto-color-scheme" id="quarto-text-highlighting-styles">
75-
<link href="../site_libs/quarto-html/quarto-syntax-highlighting-dark-8ef56b68f8fa1e9d2ba328e99e439f80.css" rel="stylesheet" class="quarto-color-scheme quarto-color-alternate" id="quarto-text-highlighting-styles">
76-
<link href="../site_libs/quarto-html/quarto-syntax-highlighting-e1a5c8363afafaef2c763b6775fbf3ca.css" rel="stylesheet" class="quarto-color-scheme-extra" id="quarto-text-highlighting-styles">
74+
<link href="../site_libs/quarto-html/quarto-syntax-highlighting-37eea08aefeeee20ff55810ff984fec1.css" rel="stylesheet" class="quarto-color-scheme" id="quarto-text-highlighting-styles">
75+
<link href="../site_libs/quarto-html/quarto-syntax-highlighting-dark-2fef5ea3f8957b3e4ecc936fc74692ca.css" rel="stylesheet" class="quarto-color-scheme quarto-color-alternate" id="quarto-text-highlighting-styles">
76+
<link href="../site_libs/quarto-html/quarto-syntax-highlighting-37eea08aefeeee20ff55810ff984fec1.css" rel="stylesheet" class="quarto-color-scheme-extra" id="quarto-text-highlighting-styles">
7777
<script src="../site_libs/bootstrap/bootstrap.min.js"></script>
7878
<link href="../site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
7979
<link href="../site_libs/bootstrap/bootstrap-4c33a50c55896b3d40e387adf82d8fb0.min.css" rel="stylesheet" append-hash="true" class="quarto-color-scheme" id="quarto-bootstrap" data-mode="light">

0 commit comments

Comments
 (0)