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.
- package/.github/workflows/ci-test.yml +3 -3
- package/README.md +2 -2
- package/dist/w-geo.umd.js +4 -4
- package/dist/w-geo.umd.js.map +1 -1
- package/docs/-_class.mjs.html +1 -1
- package/docs/calcDepthByDepthStartEnd.mjs.html +1 -1
- package/docs/calcDepthStartEndByConnect.mjs.html +1 -1
- package/docs/calcDepthStartEndByDepth.mjs.html +1 -1
- package/docs/calcDepthStartEndByGroup.mjs.html +1 -1
- package/docs/calcLayersByMerge.mjs.html +1 -1
- package/docs/calcLiquefaction.mjs.html +1 -1
- package/docs/calcVerticalStress.mjs.html +1 -1
- package/docs/checkDepth.mjs.html +1 -1
- package/docs/checkDepthStartEnd.mjs.html +1 -1
- package/docs/complementDepthData.mjs.html +1 -1
- package/docs/examples/ex-complementDepthData.html +1 -1
- package/docs/groupByDepthStartEnd.mjs.html +1 -1
- package/docs/index.html +1 -1
- package/docs/mergeByDepthStartEnd.mjs.html +1 -1
- package/docs/relaPlasticity.mjs.html +1 -1
- package/docs/relaPorous.mjs.html +1 -1
- package/docs/sepDepthStartEndByDepth.mjs.html +1 -1
- package/docs/smoothDepthByKey.mjs.html +1 -1
- package/docs/w-geo.html +1 -1
- package/examples/ex-complementDepthData.html +1 -1
- package/g.mjs +2 -0
- package/g_0_1-checkDepth.mjs +1 -1
- package/g_0_2-checkDepthStartEnd.mjs +1 -1
- package/g_1_1-relaPorous.mjs +1 -0
- package/g_1_2-relaPlasticity.mjs +1 -0
- package/g_1_3-relaPsdContent.mjs +1 -0
- package/g_1_4-estmRelativeDensity.mjs +1 -0
- package/g_1_5-estmOcr.mjs +1 -0
- package/g_1_6-trimParams.mjs +1 -0
- package/g_1_7-calcClassifyUscs.mjs +1 -0
- package/g_1_8-calcClassifyUscs.mjs +72 -0
- package/g_2_1-calcLiquefaction-spt.mjs +1 -0
- package/g_2_1-calcLiquefactionSpt.mjs +1 -0
- package/g_2_2-calcLiquefaction-cpt.mjs +1 -0
- package/g_2_3-calcLiquefactionSptForCriticalPga.mjs +1 -0
- package/g_3_1-calcCpt.mjs +1 -0
- package/g_3_3-calcCptClassify.mjs +1 -0
- package/g_3_4-calcCptVelocityShear.mjs +1 -0
- package/g_3_5-calcCptLayers.mjs +1 -0
- package/g_4_3-calcDepthStartEndByGroup.mjs +0 -15
- package/g_4_4-calcDepthStartEndByConnect.mjs +1 -1
- package/g_4_5-calcDepthMaxMin.mjs +1 -0
- package/g_4_6-calcEstmVerticalStress.mjs +2 -0
- package/g_5_1-groupByDepthStartEnd.mjs +1 -0
- package/g_5_2-sepDepthStartEndByDepth.mjs +1 -1
- package/g_5_4-cutByDepthStartEnd.mjs +1 -0
- package/g_5_5-complementDepthData.mjs +2 -0
- package/g_5_6-buildInterpFun.mjs +1 -0
- package/g_7_a1-calcPropInterfaceFrictionAngle.mjs +1 -0
- package/package.json +7 -8
- package/script.txt +0 -1
|
@@ -9,12 +9,12 @@ jobs:
|
|
|
9
9
|
|
|
10
10
|
strategy:
|
|
11
11
|
matrix:
|
|
12
|
-
node-version: [
|
|
12
|
+
node-version: [24.x]
|
|
13
13
|
|
|
14
14
|
steps:
|
|
15
|
-
- uses: actions/checkout@
|
|
15
|
+
- uses: actions/checkout@v4
|
|
16
16
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
17
|
-
uses: actions/setup-node@
|
|
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.
|
|
25
|
+
<script src="https://cdn.jsdelivr.net/npm/w-geo@1.1.63/dist/w-geo.umd.js"></script>
|
|
26
26
|
```
|