Skip to content

Commit

Permalink
update notebook bounding box and intro text
Browse files Browse the repository at this point in the history
  • Loading branch information
gantian127 committed Mar 20, 2024
1 parent b3d019d commit 4f85635
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions notebooks/bmi_dbseabed.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,6 @@
" This section provides two examples to demonstrate how to use bmi_dbseabed to download datasets for visualization.\n",
" <br>\n",
" \n",
"3. [Write Your Own Code](#section3)\n",
"\n",
" This section provides guide to write your own code to download different datasets from dbSEABED.\n",
" <br>\n",
" \n",
"**Suggested citation**: Gan, T. (2024). Jupyter Notebooks for the dbSEABED Data Component, HydroShare, https://www.hydroshare.org/resource/e43626941b054b84828e3717d58a6f1a/"
]
},
Expand All @@ -54,6 +49,8 @@
"source": [
"bmi_dbseabed package provides a set of functions that allows downloading of the datasets from [dbSEABED](https://instaar.colorado.edu/~jenkinsc/dbseabed/), a system for marine substrates datasets across the globe. This system uses very large amounts of diverse observational data and applies math methods to integrate/harmonize those and produces gridded data on the major properties of the seabed. The scope is the global ocean and across all depth zones.\n",
"\n",
"The current page serves only the data for the Gulf of Mexico region. Please note that the data will be updated from time to time, approximately annually.\n",
"\n",
"bmi_dbseabed package also includes a Basic Model Interface ([BMI](https://bmi.readthedocs.io/en/latest/)), which converts the dbSEABED dataset into a reusable, plug-and-play data component for [PyMT](https://pymt.readthedocs.io/en/latest/?badge=latest) modeling framework developed by Community Surface Dynamics Modeling System ([CSDMS](https://csdms.colorado.edu/wiki/Main_Page)). \n",
"\n",
"\n",
Expand Down Expand Up @@ -103,12 +100,12 @@
"dbseabed = DbSeabed()\n",
"data = dbseabed.get_data(\n",
" var_name=\"carbonate\",\n",
" west=-97.95,\n",
" south=18.05,\n",
" east=-80.05,\n",
" north=30.95,\n",
" west=-98,\n",
" south=18,\n",
" east=-80,\n",
" north=31,\n",
" output=\"download.tif\",\n",
" local_file=True,\n",
" local_file=False,\n",
")"
]
},
Expand Down

0 comments on commit 4f85635

Please sign in to comment.