geolysis 0.7.0__tar.gz → 0.7.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. {geolysis-0.7.0 → geolysis-0.7.2}/PKG-INFO +74 -87
  2. {geolysis-0.7.0 → geolysis-0.7.2}/README.md +73 -86
  3. {geolysis-0.7.0 → geolysis-0.7.2}/geolysis/__init__.py +1 -1
  4. {geolysis-0.7.0 → geolysis-0.7.2}/geolysis/foundation.py +5 -2
  5. {geolysis-0.7.0 → geolysis-0.7.2}/geolysis/utils/validators.py +3 -0
  6. {geolysis-0.7.0 → geolysis-0.7.2}/geolysis.egg-info/PKG-INFO +74 -87
  7. {geolysis-0.7.0 → geolysis-0.7.2}/LICENSE.txt +0 -0
  8. {geolysis-0.7.0 → geolysis-0.7.2}/geolysis/bearing_capacity/__init__.py +0 -0
  9. {geolysis-0.7.0 → geolysis-0.7.2}/geolysis/bearing_capacity/abc/__init__.py +0 -0
  10. {geolysis-0.7.0 → geolysis-0.7.2}/geolysis/bearing_capacity/abc/cohl/__init__.py +0 -0
  11. {geolysis-0.7.0 → geolysis-0.7.2}/geolysis/bearing_capacity/abc/cohl/_core.py +0 -0
  12. {geolysis-0.7.0 → geolysis-0.7.2}/geolysis/bearing_capacity/abc/cohl/bowles_abc.py +0 -0
  13. {geolysis-0.7.0 → geolysis-0.7.2}/geolysis/bearing_capacity/abc/cohl/meyerhof_abc.py +0 -0
  14. {geolysis-0.7.0 → geolysis-0.7.2}/geolysis/bearing_capacity/abc/cohl/terzaghi_abc.py +0 -0
  15. {geolysis-0.7.0 → geolysis-0.7.2}/geolysis/bearing_capacity/ubc/__init__.py +0 -0
  16. {geolysis-0.7.0 → geolysis-0.7.2}/geolysis/bearing_capacity/ubc/_core.py +0 -0
  17. {geolysis-0.7.0 → geolysis-0.7.2}/geolysis/bearing_capacity/ubc/hansen_ubc.py +0 -0
  18. {geolysis-0.7.0 → geolysis-0.7.2}/geolysis/bearing_capacity/ubc/terzaghi_ubc.py +0 -0
  19. {geolysis-0.7.0 → geolysis-0.7.2}/geolysis/bearing_capacity/ubc/vesic_ubc.py +0 -0
  20. {geolysis-0.7.0 → geolysis-0.7.2}/geolysis/soil_classifier.py +0 -0
  21. {geolysis-0.7.0 → geolysis-0.7.2}/geolysis/spt.py +0 -0
  22. {geolysis-0.7.0 → geolysis-0.7.2}/geolysis/utils/__init__.py +0 -0
  23. {geolysis-0.7.0 → geolysis-0.7.2}/geolysis/utils/exceptions.py +0 -0
  24. {geolysis-0.7.0 → geolysis-0.7.2}/geolysis.egg-info/SOURCES.txt +0 -0
  25. {geolysis-0.7.0 → geolysis-0.7.2}/geolysis.egg-info/dependency_links.txt +0 -0
  26. {geolysis-0.7.0 → geolysis-0.7.2}/geolysis.egg-info/requires.txt +0 -0
  27. {geolysis-0.7.0 → geolysis-0.7.2}/geolysis.egg-info/top_level.txt +0 -0
  28. {geolysis-0.7.0 → geolysis-0.7.2}/pyproject.toml +0 -0
  29. {geolysis-0.7.0 → geolysis-0.7.2}/setup.cfg +0 -0
  30. {geolysis-0.7.0 → geolysis-0.7.2}/setup.py +0 -0
  31. {geolysis-0.7.0 → geolysis-0.7.2}/tests/test_foundation.py +0 -0
  32. {geolysis-0.7.0 → geolysis-0.7.2}/tests/test_soil_classifier.py +0 -0
  33. {geolysis-0.7.0 → geolysis-0.7.2}/tests/test_spt.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: geolysis
3
- Version: 0.7.0
3
+ Version: 0.7.2
4
4
  Summary: geolysis is an opensource software for geotechnical engineering analysis and modeling.
5
5
  Author-email: Patrick Boateng <boatengpato.pb@gmail.com>
6
6
  License: MIT License
@@ -49,53 +49,77 @@ alt="geolysislogo" width="75%" />
49
49
 
50
50
  </div>
51
51
 
52
- `geolysis` is an open-source library for geotechnical analysis and modeling.
53
- It offers tools for soil classification, Standard Penetration Test (SPT)
54
- analysis, and bearing capacity estimation, among others.
55
-
56
- The `geolysis` library is among four main projects: `geolysis.gui`,
57
- `geolysis.excel`, and `geolysis.ai`. The geolysis library powers all of these
58
- projects.
59
-
60
- **_The `geolysis` projects are currently under developement and not yet
61
- publicly available_**.
62
-
63
- **_Active development of `geolysis` occurs on the `dev` branch. For more
64
- information on the latest features of `geolysis`, switch to the
65
- `dev` branch_**.
66
-
67
- Here are brief descriptions of these projects:
68
-
69
- <table>
70
- <tr>
71
- <td>
72
- <strong>geolysis.gui</strong>
73
- </td>
74
- <td>A graphical user interface that allows users to interact with the
75
- geolysis library. Through this interface, users can view generated reports
76
- and visualizations, such as Particle Size Distribution (PSD) curves,
77
- Atterberg Limits plots, and Compaction curves, among others.
78
- Additionally, it enables users to conduct foundation analysis and
79
- design, among other functionalities.
80
- </td>
81
- </tr>
82
- <tr>
83
- <td>
84
- <strong>geolysis.excel</strong>
85
- </td>
86
- <td>An add-in for Microsoft Excel that performs simple geotechnical
87
- analysis. It offers some features similar to <code>geolysis.gui</code>
88
- within Microsoft Excel.
89
- </td>
90
- </tr>
91
- <tr>
92
- <td>
93
- <strong>geolysis.ai</strong>
94
- </td>
95
- <td>Offers machine learning models that are trained using geotechnical data.
96
- </td>
97
- </tr>
98
- </table>
52
+ `geolysis` is an open-source python package (library) for geotechnical analysis
53
+ and modeling. It offers tools for soil classification, Standard Penetration
54
+ Test (SPT) analysis, and bearing capacity estimation, among others.
55
+
56
+ The `geolysis` package is among three other projects, `geolysis.gui`,
57
+ `geolysis.excel`, and `geolysis.ai`.
58
+
59
+ Here are brief descriptions of the `geolysis` projects:
60
+
61
+ 1. `geolysis`
62
+
63
+ A python package (library) which provides the core functionalities for
64
+ `geolysis.gui` and the `geolysis.excel` applications. Current features
65
+ provided by the `geolysis` package are shown in the table below.
66
+
67
+ <table>
68
+ <tr>
69
+ <td><strong>Soil Classification</strong></td>
70
+ <td>AASHTO Classification System</td>
71
+ </tr>
72
+ <tr>
73
+ <td></td>
74
+ <td>Unified Soil Classification System</td>
75
+ </tr>
76
+ <tr>
77
+ <td><strong>Standard Penetration Test (SPT) Analysis</strong></td>
78
+ <td>SPT Energy Correction</td>
79
+ </tr>
80
+ <tr>
81
+ <td></td>
82
+ <td>SPT Overburden Pressure Correction</td>
83
+ </tr>
84
+ <tr>
85
+ <td></td>
86
+ <td>SPT Dilatancy Correction</td>
87
+ </tr>
88
+ <tr>
89
+ <td></td>
90
+ <td>SPT N-Design Calculation</td>
91
+ </tr>
92
+ <tr>
93
+ <td><strong>Bearing Capacity Estimation</strong></td>
94
+ <td>Allowable Bearing Capacity Estimation</td>
95
+ </tr>
96
+ <tr>
97
+ <td></td>
98
+ <td>Ultimate Bearing Capacity Estimation</td>
99
+ </tr>
100
+ </table>
101
+
102
+ 2. `geolysis.gui`
103
+
104
+ A graphical user interface that allows users to interact with the `geolysis`
105
+ package. Through this interface, users can view generated reports and
106
+ visualizations, such as Particle Size Distribution (PSD) curves, Atterberg
107
+ Limits plots, and Compaction curves, among others.
108
+
109
+ 3. `geolysis.excel`
110
+
111
+ An add-in for Microsoft Excel that performs simple geotechnical analysis.
112
+ It offers some features similar to `geolysis.gui` within Microsoft Excel.
113
+ Below is an example of the Microsoft Excel addin.
114
+
115
+ <div align="center">
116
+ <img src="https://raw.githubusercontent.com/patrickboateng/geolysis/main/docs/_static/geolysis_excel_example.gif"
117
+ alt="geolysis excel example" width="100%" />
118
+ </div><br>
119
+
120
+ 4. `geolysis.ai`
121
+
122
+ Offers machine learning models that are trained using geotechnical data.
99
123
 
100
124
  ## Project Structure
101
125
 
@@ -162,43 +186,6 @@ SoilClf(symbol='A-6(4)', description='Clayey soils')
162
186
  Check out more examples
163
187
  [here](https://docs.geolysis.io/en/latest/user_guide/getting_started.html#quick-start)
164
188
 
165
- ## Features
166
-
167
- <table>
168
- <tr>
169
- <td><strong>Soil Classification</strong></td>
170
- <td>AASHTO Classification System</td>
171
- </tr>
172
- <tr>
173
- <td></td>
174
- <td>Unified Soil Classification System</td>
175
- </tr>
176
- <tr>
177
- <td><strong>Standard Penetration Test (SPT) Analysis</strong></td>
178
- <td>SPT Energy Correction</td>
179
- </tr>
180
- <tr>
181
- <td></td>
182
- <td>SPT Overburden Pressure Correction</td>
183
- </tr>
184
- <tr>
185
- <td></td>
186
- <td>Dilatancy Correction</td>
187
- </tr>
188
- <tr>
189
- <td></td>
190
- <td>SPT N-Design Calculation</td>
191
- </tr>
192
- <tr>
193
- <td><strong>Bearing Capacity Estimation</strong></td>
194
- <td>Allowable Bearing Capacity Estimation</td>
195
- </tr>
196
- <tr>
197
- <td></td>
198
- <td>Ultimate Bearing Capacity Estimation</td>
199
- </tr>
200
- </table>
201
-
202
189
  ## Documentation
203
190
 
204
191
  Full documentation is available [here](https://docs.geolysis.io/en/latest/)
@@ -216,5 +203,5 @@ file for more details.
216
203
 
217
204
  ## Contact
218
205
 
219
- For questions or feedback, please contact us at
220
- [boatengpato.pb@gmail.com](mailto:boatengpato.pb@gmail.com)
206
+ For questions or feedback, please
207
+ contact [boatengpato.pb@gmail.com](mailto:boatengpato.pb@gmail.com)
@@ -17,53 +17,77 @@ alt="geolysislogo" width="75%" />
17
17
 
18
18
  </div>
19
19
 
20
- `geolysis` is an open-source library for geotechnical analysis and modeling.
21
- It offers tools for soil classification, Standard Penetration Test (SPT)
22
- analysis, and bearing capacity estimation, among others.
23
-
24
- The `geolysis` library is among four main projects: `geolysis.gui`,
25
- `geolysis.excel`, and `geolysis.ai`. The geolysis library powers all of these
26
- projects.
27
-
28
- **_The `geolysis` projects are currently under developement and not yet
29
- publicly available_**.
30
-
31
- **_Active development of `geolysis` occurs on the `dev` branch. For more
32
- information on the latest features of `geolysis`, switch to the
33
- `dev` branch_**.
34
-
35
- Here are brief descriptions of these projects:
36
-
37
- <table>
38
- <tr>
39
- <td>
40
- <strong>geolysis.gui</strong>
41
- </td>
42
- <td>A graphical user interface that allows users to interact with the
43
- geolysis library. Through this interface, users can view generated reports
44
- and visualizations, such as Particle Size Distribution (PSD) curves,
45
- Atterberg Limits plots, and Compaction curves, among others.
46
- Additionally, it enables users to conduct foundation analysis and
47
- design, among other functionalities.
48
- </td>
49
- </tr>
50
- <tr>
51
- <td>
52
- <strong>geolysis.excel</strong>
53
- </td>
54
- <td>An add-in for Microsoft Excel that performs simple geotechnical
55
- analysis. It offers some features similar to <code>geolysis.gui</code>
56
- within Microsoft Excel.
57
- </td>
58
- </tr>
59
- <tr>
60
- <td>
61
- <strong>geolysis.ai</strong>
62
- </td>
63
- <td>Offers machine learning models that are trained using geotechnical data.
64
- </td>
65
- </tr>
66
- </table>
20
+ `geolysis` is an open-source python package (library) for geotechnical analysis
21
+ and modeling. It offers tools for soil classification, Standard Penetration
22
+ Test (SPT) analysis, and bearing capacity estimation, among others.
23
+
24
+ The `geolysis` package is among three other projects, `geolysis.gui`,
25
+ `geolysis.excel`, and `geolysis.ai`.
26
+
27
+ Here are brief descriptions of the `geolysis` projects:
28
+
29
+ 1. `geolysis`
30
+
31
+ A python package (library) which provides the core functionalities for
32
+ `geolysis.gui` and the `geolysis.excel` applications. Current features
33
+ provided by the `geolysis` package are shown in the table below.
34
+
35
+ <table>
36
+ <tr>
37
+ <td><strong>Soil Classification</strong></td>
38
+ <td>AASHTO Classification System</td>
39
+ </tr>
40
+ <tr>
41
+ <td></td>
42
+ <td>Unified Soil Classification System</td>
43
+ </tr>
44
+ <tr>
45
+ <td><strong>Standard Penetration Test (SPT) Analysis</strong></td>
46
+ <td>SPT Energy Correction</td>
47
+ </tr>
48
+ <tr>
49
+ <td></td>
50
+ <td>SPT Overburden Pressure Correction</td>
51
+ </tr>
52
+ <tr>
53
+ <td></td>
54
+ <td>SPT Dilatancy Correction</td>
55
+ </tr>
56
+ <tr>
57
+ <td></td>
58
+ <td>SPT N-Design Calculation</td>
59
+ </tr>
60
+ <tr>
61
+ <td><strong>Bearing Capacity Estimation</strong></td>
62
+ <td>Allowable Bearing Capacity Estimation</td>
63
+ </tr>
64
+ <tr>
65
+ <td></td>
66
+ <td>Ultimate Bearing Capacity Estimation</td>
67
+ </tr>
68
+ </table>
69
+
70
+ 2. `geolysis.gui`
71
+
72
+ A graphical user interface that allows users to interact with the `geolysis`
73
+ package. Through this interface, users can view generated reports and
74
+ visualizations, such as Particle Size Distribution (PSD) curves, Atterberg
75
+ Limits plots, and Compaction curves, among others.
76
+
77
+ 3. `geolysis.excel`
78
+
79
+ An add-in for Microsoft Excel that performs simple geotechnical analysis.
80
+ It offers some features similar to `geolysis.gui` within Microsoft Excel.
81
+ Below is an example of the Microsoft Excel addin.
82
+
83
+ <div align="center">
84
+ <img src="https://raw.githubusercontent.com/patrickboateng/geolysis/main/docs/_static/geolysis_excel_example.gif"
85
+ alt="geolysis excel example" width="100%" />
86
+ </div><br>
87
+
88
+ 4. `geolysis.ai`
89
+
90
+ Offers machine learning models that are trained using geotechnical data.
67
91
 
68
92
  ## Project Structure
69
93
 
@@ -130,43 +154,6 @@ SoilClf(symbol='A-6(4)', description='Clayey soils')
130
154
  Check out more examples
131
155
  [here](https://docs.geolysis.io/en/latest/user_guide/getting_started.html#quick-start)
132
156
 
133
- ## Features
134
-
135
- <table>
136
- <tr>
137
- <td><strong>Soil Classification</strong></td>
138
- <td>AASHTO Classification System</td>
139
- </tr>
140
- <tr>
141
- <td></td>
142
- <td>Unified Soil Classification System</td>
143
- </tr>
144
- <tr>
145
- <td><strong>Standard Penetration Test (SPT) Analysis</strong></td>
146
- <td>SPT Energy Correction</td>
147
- </tr>
148
- <tr>
149
- <td></td>
150
- <td>SPT Overburden Pressure Correction</td>
151
- </tr>
152
- <tr>
153
- <td></td>
154
- <td>Dilatancy Correction</td>
155
- </tr>
156
- <tr>
157
- <td></td>
158
- <td>SPT N-Design Calculation</td>
159
- </tr>
160
- <tr>
161
- <td><strong>Bearing Capacity Estimation</strong></td>
162
- <td>Allowable Bearing Capacity Estimation</td>
163
- </tr>
164
- <tr>
165
- <td></td>
166
- <td>Ultimate Bearing Capacity Estimation</td>
167
- </tr>
168
- </table>
169
-
170
157
  ## Documentation
171
158
 
172
159
  Full documentation is available [here](https://docs.geolysis.io/en/latest/)
@@ -184,5 +171,5 @@ file for more details.
184
171
 
185
172
  ## Contact
186
173
 
187
- For questions or feedback, please contact us at
188
- [boatengpato.pb@gmail.com](mailto:boatengpato.pb@gmail.com)
174
+ For questions or feedback, please
175
+ contact [boatengpato.pb@gmail.com](mailto:boatengpato.pb@gmail.com)
@@ -1,5 +1,5 @@
1
1
  from . import foundation, soil_classifier, spt
2
2
 
3
- __version__ = "0.7.0"
3
+ __version__ = "0.7.2"
4
4
 
5
5
  __all__ = ["foundation", "soil_classifier", "spt"]
@@ -320,7 +320,9 @@ class FoundationSize:
320
320
  """Returns the :attr:`effective_width`, :attr:`length`, and
321
321
  :attr:`footing_shape` of the foundation footing.
322
322
  """
323
- width, length, shape = self.effective_width, self.length, self.footing_shape
323
+ width, length, shape = (self.effective_width,
324
+ self.length,
325
+ self.footing_shape)
324
326
 
325
327
  if not isclose(width, length) and shape != Shape.STRIP:
326
328
  shape = Shape.RECTANGLE
@@ -374,7 +376,8 @@ def create_foundation(depth: float,
374
376
  try:
375
377
  shape = Shape(str(shape).casefold())
376
378
  except ValueError as e:
377
- msg = EnumErrorMsg(param_name="shape", param_value=shape,
379
+ msg = EnumErrorMsg(param_name="shape",
380
+ param_value=shape,
378
381
  param_type=Shape)
379
382
  raise ValueError(msg) from e
380
383
 
@@ -1,6 +1,7 @@
1
1
  """validators"""
2
2
  import operator
3
3
  from typing import Callable, TypeAlias, Optional
4
+ from functools import wraps
4
5
 
5
6
  from .exceptions import ValidationError
6
7
 
@@ -13,6 +14,7 @@ def _num_validator(bound: float, /, *,
13
14
  exc_type: Callable,
14
15
  err_msg: str):
15
16
  def dec(fn):
17
+ @wraps(fn)
16
18
  def wrapper(obj, val):
17
19
  if not compare_fn(val, bound):
18
20
  msg = f"{fn.__name__} must be {compare_symbol} {bound}"
@@ -30,6 +32,7 @@ def _len_validator(bound: float, /, *,
30
32
  exc_type: Callable,
31
33
  err_msg: str):
32
34
  def dec(fn):
35
+ @wraps(fn)
33
36
  def wrapper(obj, val):
34
37
  _len = len(val)
35
38
  if not compare_fn(_len, bound):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: geolysis
3
- Version: 0.7.0
3
+ Version: 0.7.2
4
4
  Summary: geolysis is an opensource software for geotechnical engineering analysis and modeling.
5
5
  Author-email: Patrick Boateng <boatengpato.pb@gmail.com>
6
6
  License: MIT License
@@ -49,53 +49,77 @@ alt="geolysislogo" width="75%" />
49
49
 
50
50
  </div>
51
51
 
52
- `geolysis` is an open-source library for geotechnical analysis and modeling.
53
- It offers tools for soil classification, Standard Penetration Test (SPT)
54
- analysis, and bearing capacity estimation, among others.
55
-
56
- The `geolysis` library is among four main projects: `geolysis.gui`,
57
- `geolysis.excel`, and `geolysis.ai`. The geolysis library powers all of these
58
- projects.
59
-
60
- **_The `geolysis` projects are currently under developement and not yet
61
- publicly available_**.
62
-
63
- **_Active development of `geolysis` occurs on the `dev` branch. For more
64
- information on the latest features of `geolysis`, switch to the
65
- `dev` branch_**.
66
-
67
- Here are brief descriptions of these projects:
68
-
69
- <table>
70
- <tr>
71
- <td>
72
- <strong>geolysis.gui</strong>
73
- </td>
74
- <td>A graphical user interface that allows users to interact with the
75
- geolysis library. Through this interface, users can view generated reports
76
- and visualizations, such as Particle Size Distribution (PSD) curves,
77
- Atterberg Limits plots, and Compaction curves, among others.
78
- Additionally, it enables users to conduct foundation analysis and
79
- design, among other functionalities.
80
- </td>
81
- </tr>
82
- <tr>
83
- <td>
84
- <strong>geolysis.excel</strong>
85
- </td>
86
- <td>An add-in for Microsoft Excel that performs simple geotechnical
87
- analysis. It offers some features similar to <code>geolysis.gui</code>
88
- within Microsoft Excel.
89
- </td>
90
- </tr>
91
- <tr>
92
- <td>
93
- <strong>geolysis.ai</strong>
94
- </td>
95
- <td>Offers machine learning models that are trained using geotechnical data.
96
- </td>
97
- </tr>
98
- </table>
52
+ `geolysis` is an open-source python package (library) for geotechnical analysis
53
+ and modeling. It offers tools for soil classification, Standard Penetration
54
+ Test (SPT) analysis, and bearing capacity estimation, among others.
55
+
56
+ The `geolysis` package is among three other projects, `geolysis.gui`,
57
+ `geolysis.excel`, and `geolysis.ai`.
58
+
59
+ Here are brief descriptions of the `geolysis` projects:
60
+
61
+ 1. `geolysis`
62
+
63
+ A python package (library) which provides the core functionalities for
64
+ `geolysis.gui` and the `geolysis.excel` applications. Current features
65
+ provided by the `geolysis` package are shown in the table below.
66
+
67
+ <table>
68
+ <tr>
69
+ <td><strong>Soil Classification</strong></td>
70
+ <td>AASHTO Classification System</td>
71
+ </tr>
72
+ <tr>
73
+ <td></td>
74
+ <td>Unified Soil Classification System</td>
75
+ </tr>
76
+ <tr>
77
+ <td><strong>Standard Penetration Test (SPT) Analysis</strong></td>
78
+ <td>SPT Energy Correction</td>
79
+ </tr>
80
+ <tr>
81
+ <td></td>
82
+ <td>SPT Overburden Pressure Correction</td>
83
+ </tr>
84
+ <tr>
85
+ <td></td>
86
+ <td>SPT Dilatancy Correction</td>
87
+ </tr>
88
+ <tr>
89
+ <td></td>
90
+ <td>SPT N-Design Calculation</td>
91
+ </tr>
92
+ <tr>
93
+ <td><strong>Bearing Capacity Estimation</strong></td>
94
+ <td>Allowable Bearing Capacity Estimation</td>
95
+ </tr>
96
+ <tr>
97
+ <td></td>
98
+ <td>Ultimate Bearing Capacity Estimation</td>
99
+ </tr>
100
+ </table>
101
+
102
+ 2. `geolysis.gui`
103
+
104
+ A graphical user interface that allows users to interact with the `geolysis`
105
+ package. Through this interface, users can view generated reports and
106
+ visualizations, such as Particle Size Distribution (PSD) curves, Atterberg
107
+ Limits plots, and Compaction curves, among others.
108
+
109
+ 3. `geolysis.excel`
110
+
111
+ An add-in for Microsoft Excel that performs simple geotechnical analysis.
112
+ It offers some features similar to `geolysis.gui` within Microsoft Excel.
113
+ Below is an example of the Microsoft Excel addin.
114
+
115
+ <div align="center">
116
+ <img src="https://raw.githubusercontent.com/patrickboateng/geolysis/main/docs/_static/geolysis_excel_example.gif"
117
+ alt="geolysis excel example" width="100%" />
118
+ </div><br>
119
+
120
+ 4. `geolysis.ai`
121
+
122
+ Offers machine learning models that are trained using geotechnical data.
99
123
 
100
124
  ## Project Structure
101
125
 
@@ -162,43 +186,6 @@ SoilClf(symbol='A-6(4)', description='Clayey soils')
162
186
  Check out more examples
163
187
  [here](https://docs.geolysis.io/en/latest/user_guide/getting_started.html#quick-start)
164
188
 
165
- ## Features
166
-
167
- <table>
168
- <tr>
169
- <td><strong>Soil Classification</strong></td>
170
- <td>AASHTO Classification System</td>
171
- </tr>
172
- <tr>
173
- <td></td>
174
- <td>Unified Soil Classification System</td>
175
- </tr>
176
- <tr>
177
- <td><strong>Standard Penetration Test (SPT) Analysis</strong></td>
178
- <td>SPT Energy Correction</td>
179
- </tr>
180
- <tr>
181
- <td></td>
182
- <td>SPT Overburden Pressure Correction</td>
183
- </tr>
184
- <tr>
185
- <td></td>
186
- <td>Dilatancy Correction</td>
187
- </tr>
188
- <tr>
189
- <td></td>
190
- <td>SPT N-Design Calculation</td>
191
- </tr>
192
- <tr>
193
- <td><strong>Bearing Capacity Estimation</strong></td>
194
- <td>Allowable Bearing Capacity Estimation</td>
195
- </tr>
196
- <tr>
197
- <td></td>
198
- <td>Ultimate Bearing Capacity Estimation</td>
199
- </tr>
200
- </table>
201
-
202
189
  ## Documentation
203
190
 
204
191
  Full documentation is available [here](https://docs.geolysis.io/en/latest/)
@@ -216,5 +203,5 @@ file for more details.
216
203
 
217
204
  ## Contact
218
205
 
219
- For questions or feedback, please contact us at
220
- [boatengpato.pb@gmail.com](mailto:boatengpato.pb@gmail.com)
206
+ For questions or feedback, please
207
+ contact [boatengpato.pb@gmail.com](mailto:boatengpato.pb@gmail.com)
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes