Skip to content

Commit

Permalink
Built site for gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
Quarto GHA Workflow Runner committed Apr 8, 2024
1 parent b78c804 commit 44aebcf
Show file tree
Hide file tree
Showing 13 changed files with 364 additions and 186 deletions.
2 changes: 1 addition & 1 deletion .nojekyll
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18fa4608
6af072bc
34 changes: 29 additions & 5 deletions Tutorials/SWOTHR_Science_Application.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>

<meta charset="utf-8">
<meta name="generator" content="quarto-1.4.549">
<meta name="generator" content="quarto-1.4.553">

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


<title>2024 SWOT Pre-Conference Workshop: AGU Chapman - SWOT Hydrology Science Application Tutorial on the Cloud</title>
<title>2024 SWOT Pre-Conference Workshop: AGU Chapman - For an updated notebook using the latest data, see this notebook in the PO.DAAC Cookbook</title>
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
Expand Down Expand Up @@ -281,7 +281,7 @@ <h2 id="toc-title">On this page</h2>

<header id="title-block-header" class="quarto-title-block default"><nav class="quarto-page-breadcrumbs quarto-title-breadcrumbs d-none d-lg-block" aria-label="breadcrumb"><ol class="breadcrumb"><li class="breadcrumb-item"><a href="../Tutorials/SWOTHR_s3Access_real_data_v11.html">Tutorials</a></li><li class="breadcrumb-item"><a href="../Tutorials/SWOTHR_Science_Application.html">Science Workflow</a></li></ol></nav>
<div class="quarto-title">
<h1 class="title">SWOT Hydrology Science Application Tutorial on the Cloud</h1>
<h1 class="title"><span style="color: darkorange;">For an updated notebook using the latest data, see <a href="https://podaac.github.io/tutorials/notebooks/DataStories/SWOTHR_Science_Application.html">this notebook</a> in the PO.DAAC Cookbook</span></h1>
</div>


Expand Down Expand Up @@ -968,6 +968,7 @@ <h4 class="anchored" data-anchor-id="aggregate-unzipped-files-into-dataframe">Ag
<span id="cb8-7"><a href="#cb8-7" aria-hidden="true" tabindex="-1"></a>SWOT_HR_df</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
<div class="cell-output cell-output-display" data-execution_count="5">
<div>
<div>


<table class="dataframe table table-sm table-striped small" data-quarto-postprocess="true" data-border="1">
Expand Down Expand Up @@ -1269,6 +1270,7 @@ <h4 class="anchored" data-anchor-id="aggregate-unzipped-files-into-dataframe">Ag
</div>
</div>
</div>
</div>
</section>
</section>
<section id="exploring-the-dataset" class="level2">
Expand Down Expand Up @@ -3909,6 +3911,24 @@ <h4 class="anchored" data-anchor-id="plot-raster-data-using-custom-filters-to-im
// clear code selection
e.clearSelection();
});
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
var mailtoRegex = new RegExp(/^mailto:/);
var filterRegex = new RegExp("https:\/\/podaac\.github\.io\/2024-SWOT-Hydro-Workshop\/");
var isInternal = (href) => {
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
}
// Inspect non-navigation links and adorn them if external
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool)');
for (var i=0; i<links.length; i++) {
const link = links[i];
if (!isInternal(link.href)) {
// undo the damage that might have been done by quarto-nav.js in the case of
// links that we want to consider external
if (link.dataset.originalHref !== undefined) {
link.href = link.dataset.originalHref;
}
}
}
function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) {
const config = {
allowHTML: true,
Expand Down Expand Up @@ -3943,7 +3963,11 @@ <h4 class="anchored" data-anchor-id="plot-raster-data-using-custom-filters-to-im
try { href = new URL(href).hash; } catch {}
const id = href.replace(/^#\/?/, "");
const note = window.document.getElementById(id);
return note.innerHTML;
if (note) {
return note.innerHTML;
} else {
return "";
}
});
}
const xrefs = window.document.querySelectorAll('a.quarto-xref');
Expand Down Expand Up @@ -4219,7 +4243,7 @@ <h4 class="anchored" data-anchor-id="plot-raster-data-using-custom-filters-to-im
</script>
<nav class="page-navigation">
<div class="nav-page nav-page-previous">
<a href="../Tutorials/SWOTHR_s3Access_real_data_v11.html" class="pagination-link aria-label=" intro="" to="" hr="" datasets"="">
<a href="../Tutorials/SWOTHR_s3Access_real_data_v11.html" class="pagination-link" aria-label="Intro to HR Datasets">
<i class="bi bi-arrow-left-short"></i> <span class="nav-page-text">Intro to HR Datasets</span>
</a>
</div>
Expand Down
Loading

0 comments on commit 44aebcf

Please sign in to comment.