w-geo 1.1.61 → 1.1.63

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 (56) hide show
  1. package/.github/workflows/ci-test.yml +3 -3
  2. package/README.md +2 -2
  3. package/dist/w-geo.umd.js +4 -4
  4. package/dist/w-geo.umd.js.map +1 -1
  5. package/docs/-_class.mjs.html +1 -1
  6. package/docs/calcDepthByDepthStartEnd.mjs.html +1 -1
  7. package/docs/calcDepthStartEndByConnect.mjs.html +1 -1
  8. package/docs/calcDepthStartEndByDepth.mjs.html +1 -1
  9. package/docs/calcDepthStartEndByGroup.mjs.html +1 -1
  10. package/docs/calcLayersByMerge.mjs.html +1 -1
  11. package/docs/calcLiquefaction.mjs.html +1 -1
  12. package/docs/calcVerticalStress.mjs.html +1 -1
  13. package/docs/checkDepth.mjs.html +1 -1
  14. package/docs/checkDepthStartEnd.mjs.html +1 -1
  15. package/docs/complementDepthData.mjs.html +1 -1
  16. package/docs/examples/ex-complementDepthData.html +1 -1
  17. package/docs/groupByDepthStartEnd.mjs.html +1 -1
  18. package/docs/index.html +1 -1
  19. package/docs/mergeByDepthStartEnd.mjs.html +1 -1
  20. package/docs/relaPlasticity.mjs.html +1 -1
  21. package/docs/relaPorous.mjs.html +1 -1
  22. package/docs/sepDepthStartEndByDepth.mjs.html +1 -1
  23. package/docs/smoothDepthByKey.mjs.html +1 -1
  24. package/docs/w-geo.html +1 -1
  25. package/examples/ex-complementDepthData.html +1 -1
  26. package/g.mjs +2 -0
  27. package/g_0_1-checkDepth.mjs +1 -1
  28. package/g_0_2-checkDepthStartEnd.mjs +1 -1
  29. package/g_1_1-relaPorous.mjs +1 -0
  30. package/g_1_2-relaPlasticity.mjs +1 -0
  31. package/g_1_3-relaPsdContent.mjs +1 -0
  32. package/g_1_4-estmRelativeDensity.mjs +1 -0
  33. package/g_1_5-estmOcr.mjs +1 -0
  34. package/g_1_6-trimParams.mjs +1 -0
  35. package/g_1_7-calcClassifyUscs.mjs +1 -0
  36. package/g_1_8-calcClassifyUscs.mjs +72 -0
  37. package/g_2_1-calcLiquefaction-spt.mjs +1 -0
  38. package/g_2_1-calcLiquefactionSpt.mjs +1 -0
  39. package/g_2_2-calcLiquefaction-cpt.mjs +1 -0
  40. package/g_2_3-calcLiquefactionSptForCriticalPga.mjs +1 -0
  41. package/g_3_1-calcCpt.mjs +1 -0
  42. package/g_3_3-calcCptClassify.mjs +1 -0
  43. package/g_3_4-calcCptVelocityShear.mjs +1 -0
  44. package/g_3_5-calcCptLayers.mjs +1 -0
  45. package/g_4_3-calcDepthStartEndByGroup.mjs +0 -15
  46. package/g_4_4-calcDepthStartEndByConnect.mjs +1 -1
  47. package/g_4_5-calcDepthMaxMin.mjs +1 -0
  48. package/g_4_6-calcEstmVerticalStress.mjs +2 -0
  49. package/g_5_1-groupByDepthStartEnd.mjs +1 -0
  50. package/g_5_2-sepDepthStartEndByDepth.mjs +1 -1
  51. package/g_5_4-cutByDepthStartEnd.mjs +1 -0
  52. package/g_5_5-complementDepthData.mjs +2 -0
  53. package/g_5_6-buildInterpFun.mjs +1 -0
  54. package/g_7_a1-calcPropInterfaceFrictionAngle.mjs +1 -0
  55. package/package.json +7 -8
  56. package/script.txt +0 -1
@@ -9,12 +9,12 @@ jobs:
9
9
 
10
10
  strategy:
11
11
  matrix:
12
- node-version: [22.x]
12
+ node-version: [24.x]
13
13
 
14
14
  steps:
15
- - uses: actions/checkout@v2
15
+ - uses: actions/checkout@v4
16
16
  - name: Use Node.js ${{ matrix.node-version }}
17
- uses: actions/setup-node@v1
17
+ uses: actions/setup-node@v4
18
18
  with:
19
19
  node-version: ${{ matrix.node-version }}
20
20
  - run: npm cache clean -f
package/README.md CHANGED
@@ -12,15 +12,15 @@ A tool for geotech analysis.
12
12
  To view documentation or get support, visit [docs](https://yuda-lyu.github.io/w-geo/w-geo.html).
13
13
 
14
14
  ## Installation
15
+
15
16
  ### Using npm(ES6 module):
16
17
  ```alias
17
18
  npm i w-geo
18
19
  ```
19
20
 
20
21
  ### In a browser(UMD module):
21
- > **Note:** w-geo does not dependent on any package.
22
22
 
23
23
  Add script for w-geo.
24
24
  ```alias
25
- <script src="https://cdn.jsdelivr.net/npm/w-geo@1.1.61/dist/w-geo.umd.js"></script>
25
+ <script src="https://cdn.jsdelivr.net/npm/w-geo@1.1.63/dist/w-geo.umd.js"></script>
26
26
  ```