Skip to content

Commit

Permalink
Merge pull request #45 from pangeo-data/fix-figure-path
Browse files Browse the repository at this point in the history
Fix figure path
  • Loading branch information
tinaok authored Oct 31, 2023
2 parents 0d43277 + bef4b17 commit 6c8ae21
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions tutorial/part3/chunking_introduction.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -187,15 +187,15 @@
"__Chunking__ is splitting a dataset into small pieces. \n",
"\n",
"Original dataset, in one piece, \n",
"<img src=\"../figures/notchunked.png\" width=\"200\" height=\"100\">\n",
"<img src=\"https://github.com/pangeo-data/pangeo-openeo-BiDS-2023/tree/main/tutorial/figures/notchunked.png\" width=\"200\" height=\"100\">\n",
"\n",
"and we split it into several smaller pieces. \n",
"<img src=\"../figures/chunked.png\" width=\"200\" height=\"100\">\n",
"<img src=\"https://github.com/pangeo-data/pangeo-openeo-BiDS-2023/tree/main/tutorial/figures/chunked.png\" width=\"200\" height=\"100\">\n",
"\n",
"We split it into pieces so that we can process our data block by block or __chunk__ by __chunk__.\n",
"\n",
"In our case, for the moment, we used stackstac without specifying 'chunk' explicitly. The dataset is composed of 8MiB each, each contains, 1 time step, 1 band, 1024 x 1024 on x and y direction. \n",
"<img src=\"../figures/chunk_original.png\" width=\"200\" height=\"100\">\n",
"<img src=\"https://github.com/pangeo-data/pangeo-openeo-BiDS-2023/tree/main/tutorial/figures/chunk_original.png\" width=\"200\" height=\"100\">\n",
"\n",
"\n",
"If we have too small chunk size, we will divide our work flow in too small pieces, which can create too many communications, too many 'distirbution' overheads. \n",
Expand Down
8 changes: 4 additions & 4 deletions tutorial/part3/scaling_dask.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -272,11 +272,11 @@
"you will just need too look at the html link you have for your jupyterlab, and Dask dashboard port number, as highlighted in the figure below.\n",
"\n",
"\n",
"<img src=\"../figures/dashboardlink.png\" width=\"50%\">\n",
"<img src=\"../figures/dasklab.png\" width=\"80%\">\n",
"<img src=\"https://github.com/pangeo-data/pangeo-openeo-BiDS-2023/tree/main/tutorial/figures/dashboardlink.png\" width=\"50%\">\n",
"<img src=\"https://github.com/pangeo-data/pangeo-openeo-BiDS-2023/tree/main/tutorial/figures/dasklab.png\" width=\"80%\">\n",
"\n",
"Then click the orange icon indicated in the above figure, and type 'your' dashboard link (normally, you just need to replace 'todaka' to 'your username'). \n",
"<img src=\"../figures/daskclick.png\" width=\"30%\">\n",
"<img src=\"https://github.com/pangeo-data/pangeo-openeo-BiDS-2023/tree/main/tutorial/figures/daskclick.png\" width=\"30%\">\n",
"\n",
"\n",
"\n",
Expand All @@ -285,7 +285,7 @@
"You can click several buttons indicated with blue arrows in above figures, then drag and drop to place them as your convenience. \n",
"\n",
"\n",
"<img src=\"../figures/exampledasklab.png\" width=\"50%\">\n",
"<img src=\"https://github.com/pangeo-data/pangeo-openeo-BiDS-2023/tree/main/tutorial/figuresexampledasklab.png\" width=\"50%\">\n",
"\n",
"\n",
"It's really helpfull to understand your computation and how it is distributed."
Expand Down

0 comments on commit 6c8ae21

Please sign in to comment.