Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Second tutorial about time dependent data #564

Merged
merged 31 commits into from
Nov 3, 2021
Merged
Show file tree
Hide file tree
Changes from 28 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
5ef9e33
Finish first draft of second tutorial
vhirtham Sep 27, 2021
d878aaa
Update tutorial
vhirtham Sep 30, 2021
97e6c01
Update text
vhirtham Oct 1, 2021
7821c2a
Merge branch 'new_tutorials' into simple_data
vhirtham Oct 1, 2021
2a613d1
Fix file name in tutorial
vhirtham Oct 1, 2021
07aa4d2
Try fix doc
vhirtham Oct 1, 2021
63b0837
Fix doc
vhirtham Oct 1, 2021
41680c2
Fix typos
vhirtham Oct 1, 2021
5cfc88b
Rename tutorial file
vhirtham Oct 14, 2021
39523f8
Merge branch 'new_tutorials' into simple_data
vhirtham Oct 14, 2021
81cf4d3
Update tutorial
vhirtham Oct 14, 2021
4d36639
Merge branch 'new_tutorials' into simple_data
vhirtham Oct 14, 2021
5a7b65a
Update tutorial
vhirtham Oct 14, 2021
6667a13
Merge branch 'new_tutorials' into simple_data
vhirtham Oct 25, 2021
1d1e8be
Add link
vhirtham Oct 25, 2021
f4ccd58
Add tutorial to getting started
vhirtham Oct 25, 2021
0f6fb11
Update link
vhirtham Oct 25, 2021
222a4a4
Add example section
vhirtham Oct 25, 2021
ece46a6
Fix pre-commit
vhirtham Oct 25, 2021
1da5945
add previous and next links
vhirtham Oct 25, 2021
f5e86aa
update link
vhirtham Oct 26, 2021
03c94b4
Update tutorials/01_02_time_dependent_data.ipynb
vhirtham Oct 26, 2021
d9b8d4e
Fix notebook
vhirtham Oct 26, 2021
936afd2
Remove empty cell
vhirtham Oct 26, 2021
589144f
Clean notebook
vhirtham Oct 26, 2021
2f43a10
Update code section in link
vhirtham Oct 26, 2021
63cb2d3
Remove empty cell
vhirtham Oct 26, 2021
0567b14
Fix link
vhirtham Oct 26, 2021
f59670f
Uncomment magic command
vhirtham Oct 27, 2021
2d355af
Undo previous commit
vhirtham Oct 27, 2021
1897206
Merge branch 'new_tutorials' into simple_data
vhirtham Nov 3, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ def _prevent_sphinx_circular_imports_bug():
# todo: Remove
shutil.copy("./../tutorials/single_pass_weld.wx", tutorials_dir)


# -- Project information -----------------------------------------------------
_now = datetime.datetime.now().year

Expand Down
1 change: 1 addition & 0 deletions doc/tutorials.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ data processing and visualization.
:caption: Welding examples

tutorials/01_01_introduction
tutorials/01_02_time_dependent_data


******************
Expand Down
8 changes: 6 additions & 2 deletions tutorials/01_01_introduction.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
"source": [
"# Introduction / Opening WelDX Files\n",
"\n",
"[NEXT TUTORIAL >>](01_02_time_dependent_data.ipynb)\n",
"\n",
"## Introduction\n",
"\n",
"This tutorial is the first one of a whole series that has the purpose to teach you how to work with WelDX files using the `weldx` Python package.\n",
Expand All @@ -20,7 +22,7 @@
"\n",
"All tutorials are written as jupyter notebooks so that you can always run and test the code on your local machine.\n",
"You can find them in the `tutorials` subdirectory of [our GitHub repository](https://github.com/BAMWelDX/weldx).\n",
"To learn how to install the `weldx` package and all required dependencies to run the tutorials, visit the [installation guide] (https://weldx.readthedocs.io/en/latest/install.html) page of our [online documentation](https://weldx.readthedocs.io/en/latest/index.html).\n",
"To learn how to install the `weldx` package and all required dependencies to run the tutorials, visit the [installation guide](https://weldx.readthedocs.io/en/latest/install.html) page of our [online documentation](https://weldx.readthedocs.io/en/latest/index.html).\n",
"\n",
"All tutorials are also contained on the [\"Getting Started\"](https://weldx.readthedocs.io/en/latest/tutorials.html) page of the [online documentation](https://weldx.readthedocs.io/en/latest/index.html) so that you can read a nicely rendered version online.\n",
"\n",
Expand Down Expand Up @@ -148,7 +150,9 @@
"\n",
"This concludes the first tutorial about opening and navigating through WelDX Files.\n",
"You should now be able to read any given WelDX file and to inspect its structure.\n",
"In the next tutorials, we will learn how to access the actual data and what we can do with it."
"In the next tutorials, we will learn how to access the actual data and what we can do with it.\n",
"\n",
"[NEXT TUTORIAL >>](01_02_time_dependent_data.ipynb)"
]
}
],
Expand Down
Loading