Skip to content

Commit 4ec539f

Browse files
committed
a couple tweaks and cleared output
1 parent df5ad98 commit 4ec539f

7 files changed

Lines changed: 21 additions & 57 deletions

notebooks/part0_python_intro/00_python_basics_review.ipynb

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1363,15 +1363,19 @@
13631363
" * `help(os)` brings up docstrings in the output window\n",
13641364
" * `?os` opens a separate pane below (that you can kick out to another tab using a button next to the X) \n",
13651365
" \n",
1366-
"6. what about chatGPT? For sure, you can try to get chatGPT to write your code. It's pretty effective, but definitely you need to verify what it suggests!\n"
1366+
"6. How about AI? Copilot, ChatGPT, etc.?\n"
13671367
]
13681368
},
13691369
{
13701370
"cell_type": "code",
13711371
"execution_count": null,
13721372
"metadata": {},
13731373
"outputs": [],
1374-
"source": []
1374+
"source": [
1375+
"from IPython.display import Image, display\n",
1376+
"\n",
1377+
"display(Image(filename='./data/lex.png', width=400))\n"
1378+
]
13751379
}
13761380
],
13771381
"metadata": {

notebooks/part0_python_intro/02_Namespace_objects_modules_packages.ipynb

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@
1616
"cell_type": "code",
1717
"execution_count": null,
1818
"id": "b263fdce",
19-
"metadata": {
20-
"scrolled": true
21-
},
19+
"metadata": {},
2220
"outputs": [],
2321
"source": [
2422
"import this"
@@ -1643,18 +1641,6 @@
16431641
"display_name": "Python 3 (ipykernel)",
16441642
"language": "python",
16451643
"name": "python3"
1646-
},
1647-
"language_info": {
1648-
"codemirror_mode": {
1649-
"name": "ipython",
1650-
"version": 3
1651-
},
1652-
"file_extension": ".py",
1653-
"mimetype": "text/x-python",
1654-
"name": "python",
1655-
"nbconvert_exporter": "python",
1656-
"pygments_lexer": "ipython3",
1657-
"version": "3.12.11"
16581644
}
16591645
},
16601646
"nbformat": 4,

notebooks/part0_python_intro/08_pandas.ipynb

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1662,18 +1662,6 @@
16621662
"display_name": "Python 3 (ipykernel)",
16631663
"language": "python",
16641664
"name": "python3"
1665-
},
1666-
"language_info": {
1667-
"codemirror_mode": {
1668-
"name": "ipython",
1669-
"version": 3
1670-
},
1671-
"file_extension": ".py",
1672-
"mimetype": "text/x-python",
1673-
"name": "python",
1674-
"nbconvert_exporter": "python",
1675-
"pygments_lexer": "ipython3",
1676-
"version": "3.12.11"
16771665
}
16781666
},
16791667
"nbformat": 4,

notebooks/part1_flopy/04_Modelgrid_and_intersection.ipynb

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1495,18 +1495,6 @@
14951495
"display_name": "Python 3 (ipykernel)",
14961496
"language": "python",
14971497
"name": "python3"
1498-
},
1499-
"language_info": {
1500-
"codemirror_mode": {
1501-
"name": "ipython",
1502-
"version": 3
1503-
},
1504-
"file_extension": ".py",
1505-
"mimetype": "text/x-python",
1506-
"name": "python",
1507-
"nbconvert_exporter": "python",
1508-
"pygments_lexer": "ipython3",
1509-
"version": "3.12.11"
15101498
}
15111499
},
15121500
"nbformat": 4,

notebooks/part1_flopy/05_Unstructured_Grid_generation.ipynb

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1799,18 +1799,6 @@
17991799
"display_name": "Python 3 (ipykernel)",
18001800
"language": "python",
18011801
"name": "python3"
1802-
},
1803-
"language_info": {
1804-
"codemirror_mode": {
1805-
"name": "ipython",
1806-
"version": 3
1807-
},
1808-
"file_extension": ".py",
1809-
"mimetype": "text/x-python",
1810-
"name": "python",
1811-
"nbconvert_exporter": "python",
1812-
"pygments_lexer": "ipython3",
1813-
"version": "3.12.11"
18141802
}
18151803
},
18161804
"nbformat": 4,

notebooks/part1_flopy/07-stream_capture_voronoi.ipynb

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,19 @@
66
"metadata": {},
77
"source": [
88
"# Project to make a capture map similar to the approach documented in \n",
9-
"_Leake, S.A., Reeves, H.W. and Dickinson, J.E., 2010. A new capture fraction method to map how pumpage affects surface water flow. Groundwater, 48(5), pp.690-700._ From the late, great Stan Leake (1951-2022) \n",
10-
"<img width=\"10%\" height=\"auto\" src=\"./figures/dearoldstan.jpg?raw=true\" align=\"center\">\n",
11-
"<img width=\"30%\" height=\"auto\" src=\"./figures/Leake_capture_map.png?raw=true\" align=\"center\">"
9+
"_Leake, S.A., Reeves, H.W. and Dickinson, J.E., 2010. A new capture fraction method to map how pumpage affects surface water flow. Groundwater, 48(5), pp.690-700._ From the late, great Stan Leake (1951-2022) "
10+
]
11+
},
12+
{
13+
"cell_type": "code",
14+
"execution_count": null,
15+
"id": "c89275ab-e9e4-449e-be9d-87b95cd93ffb",
16+
"metadata": {},
17+
"outputs": [],
18+
"source": [
19+
"from IPython.display import Image, display\n",
20+
"display(Image(filename='./figures/dearoldstan.jpg', width=150))\n",
21+
"display(Image(filename='./figures/Leake_capture_map.png', width=300))"
1222
]
1323
},
1424
{

notebooks/part1_flopy/09-gwt-voronoi-demo.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@
471471
],
472472
"metadata": {
473473
"kernelspec": {
474-
"display_name": "pyclass",
474+
"display_name": "Python 3 (ipykernel)",
475475
"language": "python",
476476
"name": "python3"
477477
}

0 commit comments

Comments
 (0)