Skip to content

Commit 39e4efd

Browse files
Add warning: developer install is needed to run this tuto as component is not included in latest release, correct minor typo
1 parent 5e957e6 commit 39e4efd

1 file changed

Lines changed: 18 additions & 22 deletions

File tree

transport-length_hillslope_diffuser/TLHDiff_tutorial.ipynb

Lines changed: 18 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,15 @@
2929
"cell_type": "markdown",
3030
"metadata": {},
3131
"source": [
32-
"This ipython notebook illustrtes running the transport-length-model hillslope diffusion component in a simple example.\n",
32+
"# WARNING:\n",
33+
"**Some components used in this tutorial are not included in the latest release of Landlab. You need to do the [developer install](https://github.com/landlab/landlab/wiki/Installing-Landlab-from-source-code-(%22developer-install%22) to use them and run this tutorial.**"
34+
]
35+
},
36+
{
37+
"cell_type": "markdown",
38+
"metadata": {},
39+
"source": [
40+
"This ipython notebook illustrates running the transport-length-model hillslope diffusion component in two simple examples.\n",
3341
"\n",
3442
"# The basics:\n",
3543
"\n",
@@ -128,9 +136,7 @@
128136
{
129137
"cell_type": "code",
130138
"execution_count": null,
131-
"metadata": {
132-
"collapsed": true
133-
},
139+
"metadata": {},
134140
"outputs": [],
135141
"source": [
136142
"import numpy as np\n",
@@ -154,9 +160,7 @@
154160
{
155161
"cell_type": "code",
156162
"execution_count": null,
157-
"metadata": {
158-
"collapsed": true
159-
},
163+
"metadata": {},
160164
"outputs": [],
161165
"source": [
162166
"mg = RasterModelGrid((100, 100), 10.) # raster grid with 100 rows, 100 columns and dx=10m\n",
@@ -176,9 +180,7 @@
176180
{
177181
"cell_type": "code",
178182
"execution_count": null,
179-
"metadata": {
180-
"collapsed": true
181-
},
183+
"metadata": {},
182184
"outputs": [],
183185
"source": [
184186
"total_t = 2000000. # total run time (yr)\n",
@@ -201,9 +203,7 @@
201203
{
202204
"cell_type": "code",
203205
"execution_count": null,
204-
"metadata": {
205-
"collapsed": true
206-
},
206+
"metadata": {},
207207
"outputs": [],
208208
"source": [
209209
"fdir = FlowDirectorSteepest(mg)\n",
@@ -323,9 +323,7 @@
323323
{
324324
"cell_type": "code",
325325
"execution_count": null,
326-
"metadata": {
327-
"collapsed": true
328-
},
326+
"metadata": {},
329327
"outputs": [],
330328
"source": [
331329
"total_t = 1000000. # total run time (yr)\n",
@@ -343,9 +341,7 @@
343341
{
344342
"cell_type": "code",
345343
"execution_count": null,
346-
"metadata": {
347-
"collapsed": true
348-
},
344+
"metadata": {},
349345
"outputs": [],
350346
"source": [
351347
"fdir = FlowDirectorSteepest(mg2)\n",
@@ -429,9 +425,9 @@
429425
],
430426
"metadata": {
431427
"kernelspec": {
432-
"display_name": "Python [conda root]",
428+
"display_name": "Python 3",
433429
"language": "python",
434-
"name": "conda-root-py"
430+
"name": "python3"
435431
},
436432
"language_info": {
437433
"codemirror_mode": {
@@ -443,7 +439,7 @@
443439
"name": "python",
444440
"nbconvert_exporter": "python",
445441
"pygments_lexer": "ipython3",
446-
"version": "3.5.4"
442+
"version": "3.6.2"
447443
}
448444
},
449445
"nbformat": 4,

0 commit comments

Comments
 (0)