Skip to content

Commit

Permalink
Formatting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Hicks committed May 12, 2021
1 parent 6aa7b9e commit b506407
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 9 deletions.
5 changes: 4 additions & 1 deletion docs/Course_wrap-up.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"source": [
"Over the six sessions, you have learnt how to\n",
"\n",
"\n",
"* Run data analysis notebooks in the Digital Earth Africa Sandbox.\n",
"* Check data availability for an area of interest using the Digital Earth Africa Maps portal and Metadata Explorer.\n",
"* Load Earth observation data from a variety of products, including Landsat 8 and Sentinel-2.\n",
Expand All @@ -28,14 +29,16 @@
"* Select a suitable band index for analysis purposes.\n",
"* Visualise data by plotting maps.\n",
"\n",
"\n",
"In the Sandbox, you are able to\n",
"\n",
"\n",
"* Set up a notebook with common packages and functions.\n",
"* Connect to the Open Data Cube to retrieve data.\n",
"* Load data both with and without cloud masking.\n",
"* Create geomedian composites.\n",
"* Calculate band indices such as NDVI.\n",
"* Construct complete case studies based on vegetation or water indices."
"* Construct complete case studies based on vegetation or water indices.\n"
]
},
{
Expand Down
27 changes: 19 additions & 8 deletions docs/python_basics/02_numpy.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -162,9 +162,20 @@
},
{
"cell_type": "code",
"execution_count": 6,
"execution_count": 5,
"metadata": {},
"outputs": [],
"outputs": [
{
"data": {
"text/plain": [
"array([1, 2, 3, 4, 5, 6, 7, 8, 9])"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"np.array([1,2,3,4,5,6,7,8,9])"
]
Expand All @@ -185,7 +196,7 @@
},
{
"cell_type": "code",
"execution_count": 7,
"execution_count": 6,
"metadata": {},
"outputs": [
{
Expand All @@ -194,7 +205,7 @@
"array([ 4, 6, 8, 10])"
]
},
"execution_count": 7,
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
Expand All @@ -215,7 +226,7 @@
},
{
"cell_type": "code",
"execution_count": 8,
"execution_count": 7,
"metadata": {},
"outputs": [
{
Expand All @@ -224,7 +235,7 @@
"array([ 4, 6, 8, 10])"
]
},
"execution_count": 8,
"execution_count": 7,
"metadata": {},
"output_type": "execute_result"
}
Expand Down Expand Up @@ -378,7 +389,7 @@
"source": [
"Numpy arrays can contain numerical values of different types. These types can be divided in these groups:\n",
"\n",
" * Integers\n",
"* Integers\n",
" * Unsigned\n",
" * 8 bits: `uint8`\n",
" * 16 bits: `uint16`\n",
Expand Down Expand Up @@ -620,7 +631,7 @@
},
{
"cell_type": "code",
"execution_count": 10,
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
Expand Down

0 comments on commit b506407

Please sign in to comment.