diff --git a/_quarto.yml b/_quarto.yml index 88b3bdee1..55dd9d9b6 100644 --- a/_quarto.yml +++ b/_quarto.yml @@ -117,41 +117,28 @@ website: href: external/xarray.ipynb - text: "Sentinel-6 OPeNDAP & Gridding" href: external/sentinel-6_opendap_access_gridding.ipynb - # - section: "Examples by Data Provider" - # href: examples/index.qmd - # contents: - text: "Direct Access & Harmony Workflow" - href: examples/Transform-workflow.ipynb - - section: "GES DISC" - contents: - - text: "MERRA2 with Kerchunk" - href: examples/GESDISC/GESDISC_MERRA2_tavg1_2d_flx_Nx__Kerchunk.ipynb - - section: "LP DAAC" - contents: - - text: "HLS Point Buffer Search & Access" - href: examples/LPDAAC/Find_and_Access_HLS_PointBuffer.ipynb - - text: "ECOSTRESS with Kerchunk" - href: examples/LPDAAC/LPDAAC_ECOSTRESS_LSTE__Kerchunk.ipynb + href: tutorials/Transform-workflow.ipynb + - text: "MERRA2 with Kerchunk" + href: tutorials/GESDISC_MERRA2_tavg1_2d_flx_Nx__Kerchunk.ipynb + - text: "HLS Point Buffer Search & Access" + href: tutorials/Find_and_Access_HLS_PointBuffer.ipynb + - text: "ECOSTRESS with Kerchunk" + href: tutorials/LPDAAC_ECOSTRESS_LSTE__Kerchunk.ipynb - section: "NSIDC" contents: - text: "ICESat-2 OnPrem vs Cloud" href: examples/NSIDC/ICESat2-CMR-OnPrem-vs-Cloud.ipynb - text: "ICESat-2 CMR & AWS S3" href: examples/NSIDC/ICESat2-CMR-AWS-S3.ipynb - - section: "ORNL DAAC" - contents: - text: "DAYMET Direct S3 Access" - href: examples/ORNL/Data_Access__Direct_S3_Access__ORNL_DAYMET.ipynb - - text: "DAYMET with Kerchunk" - href: examples/ORNL/ORNL_DAYMET__Kerchunk.ipynb - - section: "PO.DAAC" - contents: - - text: "ECCO SSH with Kerchunk" - href: examples/PODAAC/PODAAC_ECCO_SSH__Kerchunk.ipynb - - section: "USGS" - contents: - - text: "Landsat C2 Search & Access" - href: examples/USGS_Landsat/Landsat_C2_Search_Access.ipynb + href: tutorials/Data_Access__Direct_S3_Access__ORNL_DAYMET.ipynb + - text: "DAYMET with Kerchunk" + href: tutorials/ORNL_DAYMET__Kerchunk.ipynb + - text: "ECCO SSH with Kerchunk" + href: tutorials/PODAAC_ECCO_SSH__Kerchunk.ipynb + - text: "Landsat C2 Search & Access" + href: tutorials/Landsat_C2_Search_Access.ipynb # ============================================================ # SECTION 4: HOW-TO GUIDES (goal-oriented, assumes context) diff --git a/examples/data/gulf.json b/examples/data/gulf.json deleted file mode 100644 index 40a190396..000000000 --- a/examples/data/gulf.json +++ /dev/null @@ -1,6 +0,0 @@ -{ -"type": "FeatureCollection", -"features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -92.502771080263344, 29.569382250722811 ], [ -97.130085027994511, 27.537299169977643 ], [ -97.923338847605564, 23.117355263556085 ], [ -96.204622238448266, 19.297357882373674 ], [ -91.048472410976402, 19.234955515882302 ], [ -89.32975580181909, 21.096419248573053 ], [ -84.636337369120355, 21.404467339404434 ], [ -80.934486210935404, 24.928609732834346 ], [ -83.776979064541706, 30.199837703950273 ], [ -92.502771080263344, 29.569382250722811 ] ] ] } } -] -} diff --git a/examples/images/earthaccess-intro.png b/examples/images/earthaccess-intro.png deleted file mode 100644 index f52d97922..000000000 Binary files a/examples/images/earthaccess-intro.png and /dev/null differ diff --git a/examples/images/subsetting_diagram.png b/examples/images/subsetting_diagram.png deleted file mode 100644 index ffdaa0dc6..000000000 Binary files a/examples/images/subsetting_diagram.png and /dev/null differ diff --git a/examples/index.qmd b/examples/index.qmd deleted file mode 100644 index 1ae226854..000000000 --- a/examples/index.qmd +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: Example Workflows ---- - -This section contains end-to-end example workflows for processing and analyzing data in the cloud. - -E.g. Here are some examples for Kerchunk! \ No newline at end of file diff --git a/examples/ORNL/Data_Access__Direct_S3_Access__ORNL_DAYMET.ipynb b/tutorials/Data_Access__Direct_S3_Access__ORNL_DAYMET.ipynb similarity index 100% rename from examples/ORNL/Data_Access__Direct_S3_Access__ORNL_DAYMET.ipynb rename to tutorials/Data_Access__Direct_S3_Access__ORNL_DAYMET.ipynb diff --git a/examples/LPDAAC/Find_and_Access_HLS_PointBuffer.ipynb b/tutorials/Find_and_Access_HLS_PointBuffer.ipynb similarity index 100% rename from examples/LPDAAC/Find_and_Access_HLS_PointBuffer.ipynb rename to tutorials/Find_and_Access_HLS_PointBuffer.ipynb diff --git a/examples/GESDISC/GESDISC_MERRA2_tavg1_2d_flx_Nx__Kerchunk.ipynb b/tutorials/GESDISC_MERRA2_tavg1_2d_flx_Nx__Kerchunk.ipynb similarity index 100% rename from examples/GESDISC/GESDISC_MERRA2_tavg1_2d_flx_Nx__Kerchunk.ipynb rename to tutorials/GESDISC_MERRA2_tavg1_2d_flx_Nx__Kerchunk.ipynb diff --git a/examples/LPDAAC/LPDAAC_ECOSTRESS_LSTE__Kerchunk.ipynb b/tutorials/LPDAAC_ECOSTRESS_LSTE__Kerchunk.ipynb similarity index 100% rename from examples/LPDAAC/LPDAAC_ECOSTRESS_LSTE__Kerchunk.ipynb rename to tutorials/LPDAAC_ECOSTRESS_LSTE__Kerchunk.ipynb diff --git a/examples/USGS_Landsat/Landsat_C2_Search_Access.ipynb b/tutorials/Landsat_C2_Search_Access.ipynb similarity index 100% rename from examples/USGS_Landsat/Landsat_C2_Search_Access.ipynb rename to tutorials/Landsat_C2_Search_Access.ipynb diff --git a/examples/ORNL/ORNL_DAYMET__Kerchunk.ipynb b/tutorials/ORNL_DAYMET__Kerchunk.ipynb similarity index 100% rename from examples/ORNL/ORNL_DAYMET__Kerchunk.ipynb rename to tutorials/ORNL_DAYMET__Kerchunk.ipynb diff --git a/examples/PODAAC/PODAAC_ECCO_SSH__Kerchunk.ipynb b/tutorials/PODAAC_ECCO_SSH__Kerchunk.ipynb similarity index 100% rename from examples/PODAAC/PODAAC_ECCO_SSH__Kerchunk.ipynb rename to tutorials/PODAAC_ECCO_SSH__Kerchunk.ipynb diff --git a/examples/Transform-workflow.ipynb b/tutorials/Transform-workflow.ipynb similarity index 99% rename from examples/Transform-workflow.ipynb rename to tutorials/Transform-workflow.ipynb index 90208c525..12271d3ed 100644 --- a/examples/Transform-workflow.ipynb +++ b/tutorials/Transform-workflow.ipynb @@ -25,7 +25,7 @@ "\n", "Using [NASA Worldview](https://go.nasa.gov/3nhCwZi), we can first explore SST during a tropical storm event; in this case, we can overlay L2 and L4 SST variables against true color imagery to observe Hurricane Ida in August 2021. Although this is a small sample set, this use case could be expanded to explore how SST responds during the Atlantic hurricane over the next several months. The same data that we are requesting below using direct s3 access and via Harmony-py can also be requested using [NASA Earthdata Search](https://search.earthdata.nasa.gov/search/granules?p=C1940473819-POCLOUD&pg[0][v]=f&pg[0][qt]=2021-08-20T00%3A00%3A00.000Z%2C2021-08-20T23%3A59%3A59.999Z&pg[0][gsk]=-start_date&q=C1940473819-POCLOUD&sb[0]=-97.77667%2C21.20806%2C-83.05197%2C30.16605&tl=1636520265!3!!&m=30.69140625!-97.875!3!1!0!0%2C2) \n", "\n", - "![Hurrican Ida snapshot - Worldview](img/Worldview-snapshot-Ida.jpeg)\n", + "![Hurrican Ida snapshot - Worldview](images/Worldview-snapshot-Ida.jpeg)\n", "\n", "We will access a single netCDF file from inside the AWS cloud (us-west-2 region, specifically) and load it into Python as an `xarray` `dataset`. This approach leverages S3 native protocols for efficient access to the data.\n", "\n", diff --git a/examples/img/Worldview-snapshot-Ida.jpeg b/tutorials/images/Worldview-snapshot-Ida.jpeg similarity index 100% rename from examples/img/Worldview-snapshot-Ida.jpeg rename to tutorials/images/Worldview-snapshot-Ida.jpeg