Skip to content

Commit

Permalink
update templates
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoalopez committed May 31, 2024
1 parent e3e4b66 commit aa0963d
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 20 deletions.
27 changes: 17 additions & 10 deletions grain_size_tools/grain_size_analysis_template.ipynb

Large diffs are not rendered by default.

20 changes: 14 additions & 6 deletions grain_size_tools/paleopizometry_template.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@
"> This is the template for the paleopiezometry module. The specific documentation can be found at the following link: \n",
"> https://github.com/marcoalopez/GrainSizeTools/wiki/4.-Using-the-paleopiezometry-module \n",
">\n",
"> The template shows typical examples of paleopizometrys and different strategies for presenting them. Modify, delete and add as necessary to create your own analysis procedure."
"> The template shows typical examples of paleopizometrys and different strategies for presenting them. Modify, delete and add as necessary to create your own analysis procedure.\n",
">\n",
"> If you find errors, please report them at https://github.com/marcoalopez/GrainSizeTools/issues \n",
"> If you have any questions or suggestions open a discussion at https://github.com/marcoalopez/GrainSizeTools/discussions"
]
},
{
Expand Down Expand Up @@ -48,7 +51,8 @@
"Welcome to the GrainSizetool piezometers module\n",
"===================================================\n",
"Piezometric database v2024.05.21 loaded.\n",
"To get the pizometric properties use:\n",
"\n",
"To get or display piezometric properties use:\n",
">>> piezometers.<mineral>.<piezometer>\n",
"\n",
"Available piezometric relationships:\n",
Expand Down Expand Up @@ -80,7 +84,7 @@
"# Load the script. Ensure the notebook is in the same folder as the\n",
"# GrainSizeTools.py file, if not specify the full path to the file.\n",
"# e.g. %run filepath...\\GrainSizeTools_script.py\n",
"%run piezometers2.py"
"%run piezometers.py"
]
},
{
Expand Down Expand Up @@ -264,8 +268,10 @@
"name": "stdout",
"output_type": "stream",
"text": [
"Notebook last run in 2024-05-30 using:\n",
"Python 3.10.13 | packaged by Anaconda, Inc. | (main, Sep 11 2023, 13:24:38) [MSC v.1916 64 bit (AMD64)]\n"
"Notebook last run in 2024-05-31 using:\n",
"Python 3.10.13 | packaged by Anaconda, Inc. | (main, Sep 11 2023, 13:24:38) [MSC v.1916 64 bit (AMD64)]\n",
"Numpy 1.26.4\n",
"Pandas 2.2.1\n"
]
}
],
Expand All @@ -276,7 +282,9 @@
"today = date.today().isoformat()\n",
"\n",
"print(f'Notebook last run in {today} using:')\n",
"print('Python', sys.version)"
"print('Python', sys.version)\n",
"print('Numpy', np.__version__)\n",
"print('Pandas', pd.__version__)"
]
}
],
Expand Down
15 changes: 11 additions & 4 deletions grain_size_tools/stereology_analysis_template.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@
"> This is the template for using the stereology module. The specific documentation can be found at the following link: \n",
"> https://github.com/marcoalopez/GrainSizeTools/wiki/3.-Using-the-stereology-module \n",
">\n",
"> The template shows typical examples of using the stereology module with grain size populations and different strategies for presenting them. Modify, delete and add as necessary to create your own analysis procedure."
"> The template shows typical examples of using the stereology module with grain size populations and different strategies for presenting them. Modify, delete and add as necessary to create your own analysis procedure.\n",
">\n",
"> If you find errors, please report them at https://github.com/marcoalopez/GrainSizeTools/issues \n",
"> If you have any questions or suggestions open a discussion at https://github.com/marcoalopez/GrainSizeTools/discussions"
]
},
{
Expand Down Expand Up @@ -578,8 +581,10 @@
"name": "stdout",
"output_type": "stream",
"text": [
"Notebook last run in 2024-05-30 using:\n",
"Python 3.10.13 | packaged by Anaconda, Inc. | (main, Sep 11 2023, 13:24:38) [MSC v.1916 64 bit (AMD64)]\n"
"Notebook last run in 2024-05-31 using:\n",
"Python 3.10.13 | packaged by Anaconda, Inc. | (main, Sep 11 2023, 13:24:38) [MSC v.1916 64 bit (AMD64)]\n",
"Numpy 1.26.4\n",
"Pandas 2.2.1\n"
]
}
],
Expand All @@ -590,7 +595,9 @@
"today = date.today().isoformat()\n",
"\n",
"print(f'Notebook last run in {today} using:')\n",
"print('Python', sys.version)"
"print('Python', sys.version)\n",
"print('Numpy', np.__version__)\n",
"print('Pandas', pd.__version__)"
]
}
],
Expand Down

0 comments on commit aa0963d

Please sign in to comment.