8000 updates to 006 for Metadata intro · hydroffice/python_basics@2365646 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2365646

Browse files
author
giumas
committed
updates to 006 for Metadata intro
1 parent 8ab5aeb commit 2365646

File tree

2 files changed

+33
-3
lines changed

2 files changed

+33
-3
lines changed

003_Conditional_Execution.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@
221221
"| -------- | ------------------------------------------------------------------- |\n",
222222
"| `and` | `True` if both the operands are `True`. Otherwise, `False`. |\n",
223223
"| `or` | `True` if either of the operands are `True`. Otherwise, `False`. |\n",
224-
"| `not` | `True` if the following operand is `False`. Othersiwe, `False. |"
224+
"| `not` | `True` if the following operand is `False`. Othersiwe, `False`. |"
225225
]
226226
},
227227
{

006_Dictionaries.ipynb

Lines changed: 32 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,29 @@
206206
"***"
207207
]
208208
},
209+
{
210+
"cell_type": "markdown",
211+
"metadata": {},
212+
"source": [
213+
"## What is Metadata?"
214+
]
215+
},
216+
{
217+
"cell_type": "markdown",
218+
"metadata": {},
219+
"source": [
220+
"In Ocean Mapping you will often encounter the concept of [metadata](https://en.wikipedia.org/wiki/Metadata). One of the most common use of metadata is to help users discover and identify data resources. \n",
221+
"\n",
222+
"There are different [metadata standards](https://en.wikipedia.org/wiki/Metadata#Standards) for each different field of study, and ocean mapping uses many of these standards. However, for the task of this notebook, we will not explore them. You will get familiar with these standards during your future Ocean Mapping courses. "
223+
]
224+
},
225+
{
226+
"cell_type": "markdown",
227+
"metadata": {},
228+
"source": [
229+
"***"
230+
]
231+
},
209232
{
210233
"cell_type": "markdown",
211234
"metadata": {},
@@ -219,7 +242,7 @@
219242
"source": [
220243
"We will now explore the use of a `dict` as a [metadata](https://en.wikipedia.org/wiki/Metadata) container. \n",
221244
"\n",
222-
"Descriptive metadata provides a resource for several purposes such as data discovery and identification. Following our previous examples of experiments collecting water salinity and temperature values, we will use a `dict` to store metadata such as:\n",
245+
"Following our previous examples of experiments collecting water salinity and temperature values, we will use a `dict` to store metadata such as:\n",
223246
"\n",
224247
"- The author of the measures (`\"first_name\"` and `\"last_name\"`).\n",
225248
"- The location where the measurements took place (`\"latitude\"` and `\"longitude\"`).\n",
@@ -253,7 +276,14 @@
253276
"source": [
254277
"<img align=\"left\" width=\"6%\" style=\"padding-right:10px;\" src=\"images/key.png\">\n",
255278
"\n",
256-
"A variable of `datetime` type contains all the information from both a date and a time."
279+
"A variable of `datetime` type contains all the information from both a date and a time. This is of key importance in Ocean Mapping as integration of data is usually done on a time basis. "
280+
]
281+
},
282+
{
283+
"cell_type": "markdown",
284+
"metadata": {},
285+
"source": [
286+
"An entire Ocean Mapping course will be focused on the integration of data from various sensors used to map the seafloor."
257287
]
258288
},
259289
{

0 commit comments

Comments
 (0)
0