w-geo 1.1.12 → 1.1.13

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 +1 -1
  2. package/README.md +1 -1
  3. package/dist/w-geo.umd.js +1 -1
  4. package/docs/-_class.mjs.html +1 -1
  5. package/docs/calcDepthByDepthStartEnd.mjs.html +7 -7
  6. package/docs/calcDepthStartEndByConnect.mjs.html +8 -8
  7. package/docs/calcDepthStartEndByDepth.mjs.html +9 -9
  8. package/docs/calcDepthStartEndByGroup.mjs.html +10 -10
  9. package/docs/calcLiquefaction.mjs.html +15 -15
  10. package/docs/calcVerticalStress.mjs.html +7 -7
  11. package/docs/checkDepth.mjs.html +6 -6
  12. package/docs/checkDepthStartEnd.mjs.html +4 -4
  13. package/docs/complementDepthData.mjs.html +9 -9
  14. package/docs/groupByDepthStartEnd.mjs.html +9 -9
  15. package/docs/index.html +1 -1
  16. package/docs/mergeByDepthStartEnd.mjs.html +10 -10
  17. package/docs/relaPlasticityParams.mjs.html +4 -4
  18. package/docs/relaPorousParams.mjs.html +5 -5
  19. package/docs/sepDepthStartEndByDepth.mjs.html +10 -10
  20. package/docs/smoothDepthByKey.mjs.html +6 -6
  21. package/docs/w-geo.html +1 -1
  22. package/package.json +6 -6
  23. package/script.txt +22 -0
  24. package/src/_share.mjs +5 -5
  25. package/src/_soilGroup.mjs +6 -6
  26. package/src/calcClassifyUscs.mjs +4 -4
  27. package/src/calcCpt.mjs +6 -6
  28. package/src/calcCptClassify.mjs +3 -3
  29. package/src/calcCptLayers.mjs +5 -5
  30. package/src/calcCptUnitWeight.mjs +3 -3
  31. package/src/calcDepthByDepthStartEnd.mjs +6 -6
  32. package/src/calcDepthStartEndByConnect.mjs +7 -7
  33. package/src/calcDepthStartEndByDepth.mjs +8 -8
  34. package/src/calcDepthStartEndByGroup.mjs +9 -9
  35. package/src/calcLayersByCompress.mjs +14 -14
  36. package/src/calcLayersByMerge.mjs +5 -5
  37. package/src/calcLiquefaction.mjs +14 -14
  38. package/src/calcLiquefactionAddErr.mjs +1 -1
  39. package/src/calcLiquefactionClearStress.mjs +1 -1
  40. package/src/calcLiquefactionExtractErr.mjs +8 -8
  41. package/src/calcLiquefactionSpt.mjs +4 -4
  42. package/src/calcLiquefactionSptAddPropsAdv.mjs +1 -1
  43. package/src/calcLiquefactionSptAddPropsBasic.mjs +2 -2
  44. package/src/calcLiquefactionSptForCriticalPga.mjs +10 -10
  45. package/src/calcVerticalStress.mjs +6 -6
  46. package/src/checkDepth.mjs +5 -5
  47. package/src/checkDepthStartEnd.mjs +3 -3
  48. package/src/complementDepthData.mjs +8 -8
  49. package/src/getCptDepthHcOpt.mjs +8 -8
  50. package/src/getDepthMaxMin.mjs +3 -3
  51. package/src/groupByDepthStartEnd.mjs +8 -8
  52. package/src/mergeByDepthStartEnd.mjs +9 -9
  53. package/src/relaPlasticityParams.mjs +3 -3
  54. package/src/relaPorousParams.mjs +4 -4
  55. package/src/sepDepthStartEndByDepth.mjs +9 -9
  56. package/src/smoothDepthByKey.mjs +5 -5
@@ -9,7 +9,7 @@ jobs:
9
9
 
10
10
  strategy:
11
11
  matrix:
12
- node-version: [18.x]
12
+ node-version: [20.x]
13
13
 
14
14
  steps:
15
15
  - uses: actions/checkout@v2
package/README.md CHANGED
@@ -24,5 +24,5 @@ npm i w-geo
24
24
 
25
25
  Add script for w-geo.
26
26
  ```alias
27
- <script src="https://cdn.jsdelivr.net/npm/w-geo@1.1.12/dist/w-geo.umd.js"></script>
27
+ <script src="https://cdn.jsdelivr.net/npm/w-geo@1.1.13/dist/w-geo.umd.js"></script>
28
28
  ```
package/dist/w-geo.umd.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * w-geo v1.1.12
2
+ * w-geo v1.1.13
3
3
  * (c) 2018-2021 yuda-lyu(semisphere)
4
4
  * Released under the MIT License.
5
5
  */
@@ -62,7 +62,7 @@
62
62
  <br class="clear">
63
63
 
64
64
  <footer>
65
- Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed Mar 20 2024 15:34:01 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
65
+ Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Mar 24 2024 20:39:52 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
66
66
  </footer>
67
67
 
68
68
  <script>prettyPrint();</script>
@@ -45,12 +45,12 @@
45
45
 
46
46
  <section>
47
47
  <article>
48
- <pre class="prettyprint source linenums"><code>import each from 'lodash-es/each'
49
- import get from 'lodash-es/get'
50
- import size from 'lodash-es/size'
51
- import join from 'lodash-es/join'
52
- import sortBy from 'lodash-es/sortBy'
53
- import cloneDeep from 'lodash-es/cloneDeep'
48
+ <pre class="prettyprint source linenums"><code>import each from 'lodash-es/each.js'
49
+ import get from 'lodash-es/get.js'
50
+ import size from 'lodash-es/size.js'
51
+ import join from 'lodash-es/join.js'
52
+ import sortBy from 'lodash-es/sortBy.js'
53
+ import cloneDeep from 'lodash-es/cloneDeep.js'
54
54
  import cdbl from 'wsemi/src/cdbl.mjs'
55
55
  import isestr from 'wsemi/src/isestr.mjs'
56
56
  import isearr from 'wsemi/src/isearr.mjs'
@@ -233,7 +233,7 @@ export default calcDepthByDepthStartEnd
233
233
  <br class="clear">
234
234
 
235
235
  <footer>
236
- Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed Mar 20 2024 15:34:01 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
236
+ Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Mar 24 2024 20:39:52 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
237
237
  </footer>
238
238
 
239
239
  <script>prettyPrint();</script>
@@ -45,13 +45,13 @@
45
45
 
46
46
  <section>
47
47
  <article>
48
- <pre class="prettyprint source linenums"><code>import each from 'lodash-es/each'
49
- import get from 'lodash-es/get'
50
- import size from 'lodash-es/size'
51
- import join from 'lodash-es/join'
52
- import isNumber from 'lodash-es/isNumber'
53
- import sortBy from 'lodash-es/sortBy'
54
- import cloneDeep from 'lodash-es/cloneDeep'
48
+ <pre class="prettyprint source linenums"><code>import each from 'lodash-es/each.js'
49
+ import get from 'lodash-es/get.js'
50
+ import size from 'lodash-es/size.js'
51
+ import join from 'lodash-es/join.js'
52
+ import isNumber from 'lodash-es/isNumber.js'
53
+ import sortBy from 'lodash-es/sortBy.js'
54
+ import cloneDeep from 'lodash-es/cloneDeep.js'
55
55
  import cdbl from 'wsemi/src/cdbl.mjs'
56
56
  import isestr from 'wsemi/src/isestr.mjs'
57
57
  import isearr from 'wsemi/src/isearr.mjs'
@@ -322,7 +322,7 @@ export default calcDepthStartEndByConnect
322
322
  <br class="clear">
323
323
 
324
324
  <footer>
325
- Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed Mar 20 2024 15:34:01 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
325
+ Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Mar 24 2024 20:39:52 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
326
326
  </footer>
327
327
 
328
328
  <script>prettyPrint();</script>
@@ -45,14 +45,14 @@
45
45
 
46
46
  <section>
47
47
  <article>
48
- <pre class="prettyprint source linenums"><code>import each from 'lodash-es/each'
49
- import map from 'lodash-es/map'
50
- import get from 'lodash-es/get'
51
- import size from 'lodash-es/size'
52
- import isNumber from 'lodash-es/isNumber'
53
- import join from 'lodash-es/join'
54
- import sortBy from 'lodash-es/sortBy'
55
- import cloneDeep from 'lodash-es/cloneDeep'
48
+ <pre class="prettyprint source linenums"><code>import each from 'lodash-es/each.js'
49
+ import map from 'lodash-es/map.js'
50
+ import get from 'lodash-es/get.js'
51
+ import size from 'lodash-es/size.js'
52
+ import isNumber from 'lodash-es/isNumber.js'
53
+ import join from 'lodash-es/join.js'
54
+ import sortBy from 'lodash-es/sortBy.js'
55
+ import cloneDeep from 'lodash-es/cloneDeep.js'
56
56
  import cdbl from 'wsemi/src/cdbl.mjs'
57
57
  import isestr from 'wsemi/src/isestr.mjs'
58
58
  import isearr from 'wsemi/src/isearr.mjs'
@@ -347,7 +347,7 @@ export default calcDepthStartEndByDepth
347
347
  <br class="clear">
348
348
 
349
349
  <footer>
350
- Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed Mar 20 2024 15:34:01 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
350
+ Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Mar 24 2024 20:39:52 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
351
351
  </footer>
352
352
 
353
353
  <script>prettyPrint();</script>
@@ -45,15 +45,15 @@
45
45
 
46
46
  <section>
47
47
  <article>
48
- <pre class="prettyprint source linenums"><code>import each from 'lodash-es/each'
49
- import map from 'lodash-es/map'
50
- import get from 'lodash-es/get'
51
- import size from 'lodash-es/size'
52
- import keys from 'lodash-es/keys'
53
- import join from 'lodash-es/join'
54
- import sortBy from 'lodash-es/sortBy'
55
- import pullAt from 'lodash-es/pullAt'
56
- import cloneDeep from 'lodash-es/cloneDeep'
48
+ <pre class="prettyprint source linenums"><code>import each from 'lodash-es/each.js'
49
+ import map from 'lodash-es/map.js'
50
+ import get from 'lodash-es/get.js'
51
+ import size from 'lodash-es/size.js'
52
+ import keys from 'lodash-es/keys.js'
53
+ import join from 'lodash-es/join.js'
54
+ import sortBy from 'lodash-es/sortBy.js'
55
+ import pullAt from 'lodash-es/pullAt.js'
56
+ import cloneDeep from 'lodash-es/cloneDeep.js'
57
57
  import cdbl from 'wsemi/src/cdbl.mjs'
58
58
  import isestr from 'wsemi/src/isestr.mjs'
59
59
  import isearr from 'wsemi/src/isearr.mjs'
@@ -566,7 +566,7 @@ export default calcDepthStartEndByGroup
566
566
  <br class="clear">
567
567
 
568
568
  <footer>
569
- Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed Mar 20 2024 15:34:01 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
569
+ Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Mar 24 2024 20:39:52 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
570
570
  </footer>
571
571
 
572
572
  <script>prettyPrint();</script>
@@ -45,20 +45,20 @@
45
45
 
46
46
  <section>
47
47
  <article>
48
- <pre class="prettyprint source linenums"><code>import map from 'lodash-es/map'
49
- import each from 'lodash-es/each'
50
- import min from 'lodash-es/min'
51
- import max from 'lodash-es/max'
52
- import size from 'lodash-es/size'
53
- import join from 'lodash-es/join'
54
- import trim from 'lodash-es/trim'
55
- import sortBy from 'lodash-es/sortBy'
56
- import toLower from 'lodash-es/toLower'
57
- import isNumber from 'lodash-es/isNumber'
58
- import get from 'lodash-es/get'
59
- import split from 'lodash-es/split'
60
- import keys from 'lodash-es/keys'
61
- import cloneDeep from 'lodash-es/cloneDeep'
48
+ <pre class="prettyprint source linenums"><code>import map from 'lodash-es/map.js'
49
+ import each from 'lodash-es/each.js'
50
+ import min from 'lodash-es/min.js'
51
+ import max from 'lodash-es/max.js'
52
+ import size from 'lodash-es/size.js'
53
+ import join from 'lodash-es/join.js'
54
+ import trim from 'lodash-es/trim.js'
55
+ import sortBy from 'lodash-es/sortBy.js'
56
+ import toLower from 'lodash-es/toLower.js'
57
+ import isNumber from 'lodash-es/isNumber.js'
58
+ import get from 'lodash-es/get.js'
59
+ import split from 'lodash-es/split.js'
60
+ import keys from 'lodash-es/keys.js'
61
+ import cloneDeep from 'lodash-es/cloneDeep.js'
62
62
  import cdbl from 'wsemi/src/cdbl.mjs'
63
63
  import cint from 'wsemi/src/cint.mjs'
64
64
  import cstr from 'wsemi/src/cstr.mjs'
@@ -7801,7 +7801,7 @@ export default calcLiquefaction
7801
7801
  <br class="clear">
7802
7802
 
7803
7803
  <footer>
7804
- Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed Mar 20 2024 15:34:01 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
7804
+ Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Mar 24 2024 20:39:52 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
7805
7805
  </footer>
7806
7806
 
7807
7807
  <script>prettyPrint();</script>
@@ -45,12 +45,12 @@
45
45
 
46
46
  <section>
47
47
  <article>
48
- <pre class="prettyprint source linenums"><code>import map from 'lodash-es/map'
49
- import get from 'lodash-es/get'
50
- import sortBy from 'lodash-es/sortBy'
51
- import cloneDeep from 'lodash-es/cloneDeep'
52
- import size from 'lodash-es/size'
53
- import join from 'lodash-es/join'
48
+ <pre class="prettyprint source linenums"><code>import map from 'lodash-es/map.js'
49
+ import get from 'lodash-es/get.js'
50
+ import sortBy from 'lodash-es/sortBy.js'
51
+ import cloneDeep from 'lodash-es/cloneDeep.js'
52
+ import size from 'lodash-es/size.js'
53
+ import join from 'lodash-es/join.js'
54
54
  import cdbl from 'wsemi/src/cdbl.mjs'
55
55
  import isnum from 'wsemi/src/isnum.mjs'
56
56
  import isearr from 'wsemi/src/isearr.mjs'
@@ -720,7 +720,7 @@ export default { //整合輸出預設得要有default
720
720
  <br class="clear">
721
721
 
722
722
  <footer>
723
- Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed Mar 20 2024 15:34:01 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
723
+ Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Mar 24 2024 20:39:52 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
724
724
  </footer>
725
725
 
726
726
  <script>prettyPrint();</script>
@@ -45,11 +45,11 @@
45
45
 
46
46
  <section>
47
47
  <article>
48
- <pre class="prettyprint source linenums"><code>import each from 'lodash-es/each'
49
- import get from 'lodash-es/get'
50
- import size from 'lodash-es/size'
51
- import sortBy from 'lodash-es/sortBy'
52
- import cloneDeep from 'lodash-es/cloneDeep'
48
+ <pre class="prettyprint source linenums"><code>import each from 'lodash-es/each.js'
49
+ import get from 'lodash-es/get.js'
50
+ import size from 'lodash-es/size.js'
51
+ import sortBy from 'lodash-es/sortBy.js'
52
+ import cloneDeep from 'lodash-es/cloneDeep.js'
53
53
  import cdbl from 'wsemi/src/cdbl.mjs'
54
54
  import isestr from 'wsemi/src/isestr.mjs'
55
55
  import isearr from 'wsemi/src/isearr.mjs'
@@ -214,7 +214,7 @@ export default checkDepth
214
214
  <br class="clear">
215
215
 
216
216
  <footer>
217
- Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed Mar 20 2024 15:34:01 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
217
+ Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Mar 24 2024 20:39:52 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
218
218
  </footer>
219
219
 
220
220
  <script>prettyPrint();</script>
@@ -45,9 +45,9 @@
45
45
 
46
46
  <section>
47
47
  <article>
48
- <pre class="prettyprint source linenums"><code>import each from 'lodash-es/each'
49
- import get from 'lodash-es/get'
50
- import sortBy from 'lodash-es/sortBy'
48
+ <pre class="prettyprint source linenums"><code>import each from 'lodash-es/each.js'
49
+ import get from 'lodash-es/get.js'
50
+ import sortBy from 'lodash-es/sortBy.js'
51
51
  import cdbl from 'wsemi/src/cdbl.mjs'
52
52
  import isestr from 'wsemi/src/isestr.mjs'
53
53
  import isearr from 'wsemi/src/isearr.mjs'
@@ -273,7 +273,7 @@ export default checkDepthStartEnd
273
273
  <br class="clear">
274
274
 
275
275
  <footer>
276
- Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed Mar 20 2024 15:34:01 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
276
+ Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Mar 24 2024 20:39:52 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
277
277
  </footer>
278
278
 
279
279
  <script>prettyPrint();</script>
@@ -45,16 +45,16 @@
45
45
 
46
46
  <section>
47
47
  <article>
48
- <pre class="prettyprint source linenums"><code>import get from 'lodash-es/get'
49
- import set from 'lodash-es/set'
50
- import each from 'lodash-es/each'
51
- import size from 'lodash-es/size'
52
- import isNumber from 'lodash-es/isNumber'
53
- import cloneDeep from 'lodash-es/cloneDeep'
48
+ <pre class="prettyprint source linenums"><code>import get from 'lodash-es/get.js'
49
+ import set from 'lodash-es/set.js'
50
+ import each from 'lodash-es/each.js'
51
+ import size from 'lodash-es/size.js'
52
+ import isNumber from 'lodash-es/isNumber.js'
53
+ import cloneDeep from 'lodash-es/cloneDeep.js'
54
54
  import cdbl from 'wsemi/src/cdbl.mjs'
55
55
  import isnum from 'wsemi/src/isnum.mjs'
56
- import isestr from 'wsemi/src/isestr'
57
- import isearr from 'wsemi/src/isearr'
56
+ import isestr from 'wsemi/src/isestr.mjs'
57
+ import isearr from 'wsemi/src/isearr.mjs'
58
58
 
59
59
 
60
60
  function gv(rows, key, k) {
@@ -506,7 +506,7 @@ export default complementDepthData
506
506
  <br class="clear">
507
507
 
508
508
  <footer>
509
- Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed Mar 20 2024 15:34:01 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
509
+ Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Mar 24 2024 20:39:52 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
510
510
  </footer>
511
511
 
512
512
  <script>prettyPrint();</script>
@@ -45,14 +45,14 @@
45
45
 
46
46
  <section>
47
47
  <article>
48
- <pre class="prettyprint source linenums"><code>import each from 'lodash-es/each'
49
- import map from 'lodash-es/map'
50
- import get from 'lodash-es/get'
51
- import size from 'lodash-es/size'
52
- import join from 'lodash-es/join'
53
- import sortBy from 'lodash-es/sortBy'
54
- import pullAt from 'lodash-es/pullAt'
55
- import cloneDeep from 'lodash-es/cloneDeep'
48
+ <pre class="prettyprint source linenums"><code>import each from 'lodash-es/each.js'
49
+ import map from 'lodash-es/map.js'
50
+ import get from 'lodash-es/get.js'
51
+ import size from 'lodash-es/size.js'
52
+ import join from 'lodash-es/join.js'
53
+ import sortBy from 'lodash-es/sortBy.js'
54
+ import pullAt from 'lodash-es/pullAt.js'
55
+ import cloneDeep from 'lodash-es/cloneDeep.js'
56
56
  import cdbl from 'wsemi/src/cdbl.mjs'
57
57
  import isestr from 'wsemi/src/isestr.mjs'
58
58
  import isearr from 'wsemi/src/isearr.mjs'
@@ -492,7 +492,7 @@ export default groupByDepthStartEnd
492
492
  <br class="clear">
493
493
 
494
494
  <footer>
495
- Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed Mar 20 2024 15:34:01 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
495
+ Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Mar 24 2024 20:39:52 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
496
496
  </footer>
497
497
 
498
498
  <script>prettyPrint();</script>
package/docs/index.html CHANGED
@@ -71,7 +71,7 @@
71
71
  <br class="clear">
72
72
 
73
73
  <footer>
74
- Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed Mar 20 2024 15:34:01 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
74
+ Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Mar 24 2024 20:39:52 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
75
75
  </footer>
76
76
 
77
77
  <script>prettyPrint();</script>
@@ -45,15 +45,15 @@
45
45
 
46
46
  <section>
47
47
  <article>
48
- <pre class="prettyprint source linenums"><code>import get from 'lodash-es/get'
49
- import each from 'lodash-es/each'
50
- import map from 'lodash-es/map'
51
- import size from 'lodash-es/size'
52
- import join from 'lodash-es/join'
53
- import sortBy from 'lodash-es/sortBy'
54
- import pullAt from 'lodash-es/pullAt'
55
- import filter from 'lodash-es/filter'
56
- import cloneDeep from 'lodash-es/cloneDeep'
48
+ <pre class="prettyprint source linenums"><code>import get from 'lodash-es/get.js'
49
+ import each from 'lodash-es/each.js'
50
+ import map from 'lodash-es/map.js'
51
+ import size from 'lodash-es/size.js'
52
+ import join from 'lodash-es/join.js'
53
+ import sortBy from 'lodash-es/sortBy.js'
54
+ import pullAt from 'lodash-es/pullAt.js'
55
+ import filter from 'lodash-es/filter.js'
56
+ import cloneDeep from 'lodash-es/cloneDeep.js'
57
57
  import cdbl from 'wsemi/src/cdbl.mjs'
58
58
  import isestr from 'wsemi/src/isestr.mjs'
59
59
  import isnum from 'wsemi/src/isnum.mjs'
@@ -907,7 +907,7 @@ export default mergeByDepthStartEnd
907
907
  <br class="clear">
908
908
 
909
909
  <footer>
910
- Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed Mar 20 2024 15:34:01 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
910
+ Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Mar 24 2024 20:39:52 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
911
911
  </footer>
912
912
 
913
913
  <script>prettyPrint();</script>
@@ -45,9 +45,9 @@
45
45
 
46
46
  <section>
47
47
  <article>
48
- <pre class="prettyprint source linenums"><code>import join from 'lodash-es/join'
49
- import values from 'lodash-es/values'
50
- import isNumber from 'lodash-es/isNumber'
48
+ <pre class="prettyprint source linenums"><code>import join from 'lodash-es/join.js'
49
+ import values from 'lodash-es/values.js'
50
+ import isNumber from 'lodash-es/isNumber.js'
51
51
  import cdbl from 'wsemi/src/cdbl.mjs'
52
52
  import isnum from 'wsemi/src/isnum.mjs'
53
53
  import iseobj from 'wsemi/src/iseobj.mjs'
@@ -334,7 +334,7 @@ export default relaPlasticityParams
334
334
  <br class="clear">
335
335
 
336
336
  <footer>
337
- Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed Mar 20 2024 15:34:01 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
337
+ Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Mar 24 2024 20:39:52 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
338
338
  </footer>
339
339
 
340
340
  <script>prettyPrint();</script>
@@ -45,10 +45,10 @@
45
45
 
46
46
  <section>
47
47
  <article>
48
- <pre class="prettyprint source linenums"><code>import get from 'lodash-es/get'
49
- import join from 'lodash-es/join'
50
- import values from 'lodash-es/values'
51
- import isNumber from 'lodash-es/isNumber'
48
+ <pre class="prettyprint source linenums"><code>import get from 'lodash-es/get.js'
49
+ import join from 'lodash-es/join.js'
50
+ import values from 'lodash-es/values.js'
51
+ import isNumber from 'lodash-es/isNumber.js'
52
52
  import cdbl from 'wsemi/src/cdbl.mjs'
53
53
  import isnum from 'wsemi/src/isnum.mjs'
54
54
  import isbol from 'wsemi/src/isbol.mjs'
@@ -524,7 +524,7 @@ export default relaPorousParams
524
524
  <br class="clear">
525
525
 
526
526
  <footer>
527
- Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed Mar 20 2024 15:34:01 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
527
+ Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Mar 24 2024 20:39:52 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
528
528
  </footer>
529
529
 
530
530
  <script>prettyPrint();</script>
@@ -45,15 +45,15 @@
45
45
 
46
46
  <section>
47
47
  <article>
48
- <pre class="prettyprint source linenums"><code>import each from 'lodash-es/each'
49
- import map from 'lodash-es/map'
50
- import get from 'lodash-es/get'
51
- import size from 'lodash-es/size'
52
- import join from 'lodash-es/join'
53
- import sortBy from 'lodash-es/sortBy'
54
- import pullAt from 'lodash-es/pullAt'
55
- import uniq from 'lodash-es/uniq'
56
- import cloneDeep from 'lodash-es/cloneDeep'
48
+ <pre class="prettyprint source linenums"><code>import each from 'lodash-es/each.js'
49
+ import map from 'lodash-es/map.js'
50
+ import get from 'lodash-es/get.js'
51
+ import size from 'lodash-es/size.js'
52
+ import join from 'lodash-es/join.js'
53
+ import sortBy from 'lodash-es/sortBy.js'
54
+ import pullAt from 'lodash-es/pullAt.js'
55
+ import uniq from 'lodash-es/uniq.js'
56
+ import cloneDeep from 'lodash-es/cloneDeep.js'
57
57
  import cdbl from 'wsemi/src/cdbl.mjs'
58
58
  import isestr from 'wsemi/src/isestr.mjs'
59
59
  import isearr from 'wsemi/src/isearr.mjs'
@@ -324,7 +324,7 @@ export default sepDepthStartEndByDepth
324
324
  <br class="clear">
325
325
 
326
326
  <footer>
327
- Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed Mar 20 2024 15:34:01 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
327
+ Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Mar 24 2024 20:39:52 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
328
328
  </footer>
329
329
 
330
330
  <script>prettyPrint();</script>
@@ -45,11 +45,11 @@
45
45
 
46
46
  <section>
47
47
  <article>
48
- <pre class="prettyprint source linenums"><code>import get from 'lodash-es/get'
49
- import each from 'lodash-es/each'
50
- import map from 'lodash-es/map'
51
- import size from 'lodash-es/size'
52
- import sortBy from 'lodash-es/sortBy'
48
+ <pre class="prettyprint source linenums"><code>import get from 'lodash-es/get.js'
49
+ import each from 'lodash-es/each.js'
50
+ import map from 'lodash-es/map.js'
51
+ import size from 'lodash-es/size.js'
52
+ import sortBy from 'lodash-es/sortBy.js'
53
53
  import arrAt from 'wsemi/src/arrAt.mjs'
54
54
  import cdbl from 'wsemi/src/cdbl.mjs'
55
55
  import cint from 'wsemi/src/cint.mjs'
@@ -280,7 +280,7 @@ export default smoothDepthByKey
280
280
  <br class="clear">
281
281
 
282
282
  <footer>
283
- Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed Mar 20 2024 15:34:01 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
283
+ Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Mar 24 2024 20:39:52 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
284
284
  </footer>
285
285
 
286
286
  <script>prettyPrint();</script>
package/docs/w-geo.html CHANGED
@@ -9658,7 +9658,7 @@
9658
9658
  <br class="clear">
9659
9659
 
9660
9660
  <footer>
9661
- Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Wed Mar 20 2024 15:34:01 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
9661
+ Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Mar 24 2024 20:39:52 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
9662
9662
  </footer>
9663
9663
 
9664
9664
  <script>prettyPrint();</script>
package/package.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "w-geo",
3
- "version": "1.1.12",
3
+ "version": "1.1.13",
4
4
  "main": "dist/w-geo.umd.js",
5
5
  "dependencies": {
6
6
  "decimal.js": "^10.4.3",
7
7
  "lodash-es": "^4.17.21",
8
- "w-highcharts": "^1.0.3",
9
- "w-optimization": "^1.0.10",
10
- "w-statistic": "^1.0.15",
11
- "wsemi": "^1.7.47"
8
+ "w-highcharts": "^1.0.4",
9
+ "w-optimization": "^1.0.11",
10
+ "w-statistic": "^1.0.16",
11
+ "wsemi": "^1.7.49"
12
12
  },
13
13
  "devDependencies": {
14
- "w-package-tools": "^1.0.73"
14
+ "w-package-tools": "^1.0.75"
15
15
  },
16
16
  "scripts": {
17
17
  "test": "mocha --parallel --timeout 60000 --experimental-modules --es-module-specifier-resolution=node",
package/script.txt ADDED
@@ -0,0 +1,22 @@
1
+ #node --experimental-modules --es-module-specifier-resolution=node toolg/addVersion.mjs
2
+ node --experimental-modules --es-module-specifier-resolution=node toolg/modifyReadme.mjs
3
+
4
+ node --experimental-modules --es-module-specifier-resolution=node toolg/gPackageIndex.mjs
5
+
6
+ node --experimental-modules --es-module-specifier-resolution=node toolg/cleanFolder.mjs
7
+ ./node_modules/.bin/jsdoc -c .jsdoc
8
+
9
+ node --experimental-modules --es-module-specifier-resolution=node toolg/gDocsExams.mjs
10
+
11
+ node --experimental-modules --es-module-specifier-resolution=node toolg/gDistRollup.mjs
12
+
13
+ git add . -A
14
+ git commit -m 'modify: '
15
+ git push origin master:master
16
+
17
+ npm run deploy
18
+
19
+ #npm test
20
+
21
+ #npm publish
22
+
package/src/_share.mjs CHANGED
@@ -1,8 +1,8 @@
1
- import get from 'lodash-es/get'
2
- import each from 'lodash-es/each'
3
- import sortBy from 'lodash-es/sortBy'
4
- import isNumber from 'lodash-es/isNumber'
5
- import size from 'lodash-es/size'
1
+ import get from 'lodash-es/get.js'
2
+ import each from 'lodash-es/each.js'
3
+ import sortBy from 'lodash-es/sortBy.js'
4
+ import isNumber from 'lodash-es/isNumber.js'
5
+ import size from 'lodash-es/size.js'
6
6
  import isestr from 'wsemi/src/isestr.mjs'
7
7
  import isnum from 'wsemi/src/isnum.mjs'
8
8
  import isfun from 'wsemi/src/isfun.mjs'
@@ -1,9 +1,9 @@
1
- import get from 'lodash-es/get'
2
- import each from 'lodash-es/each'
3
- import map from 'lodash-es/map'
4
- import find from 'lodash-es/find'
5
- import keys from 'lodash-es/keys'
6
- import sortBy from 'lodash-es/sortBy'
1
+ import get from 'lodash-es/get.js'
2
+ import each from 'lodash-es/each.js'
3
+ import map from 'lodash-es/map.js'
4
+ import find from 'lodash-es/find.js'
5
+ import keys from 'lodash-es/keys.js'
6
+ import sortBy from 'lodash-es/sortBy.js'
7
7
  import isestr from 'wsemi/src/isestr.mjs'
8
8
  import iseobj from 'wsemi/src/iseobj.mjs'
9
9
  import isearr from 'wsemi/src/isearr.mjs'
@@ -1,7 +1,7 @@
1
- import get from 'lodash-es/get'
2
- import size from 'lodash-es/size'
3
- import join from 'lodash-es/join'
4
- import isNumber from 'lodash-es/isNumber'
1
+ import get from 'lodash-es/get.js'
2
+ import size from 'lodash-es/size.js'
3
+ import join from 'lodash-es/join.js'
4
+ import isNumber from 'lodash-es/isNumber.js'
5
5
  import isnum from 'wsemi/src/isnum.mjs'
6
6
  import isestr from 'wsemi/src/isestr.mjs'
7
7
  import cdbl from 'wsemi/src/cdbl.mjs'
package/src/calcCpt.mjs CHANGED
@@ -1,9 +1,9 @@
1
- import each from 'lodash-es/each'
2
- import map from 'lodash-es/map'
3
- import get from 'lodash-es/get'
4
- import cloneDeep from 'lodash-es/cloneDeep'
5
- import isNumber from 'lodash-es/isNumber'
6
- import trim from 'lodash-es/trim'
1
+ import each from 'lodash-es/each.js'
2
+ import map from 'lodash-es/map.js'
3
+ import get from 'lodash-es/get.js'
4
+ import cloneDeep from 'lodash-es/cloneDeep.js'
5
+ import isNumber from 'lodash-es/isNumber.js'
6
+ import trim from 'lodash-es/trim.js'
7
7
  import isstr from 'wsemi/src/isstr.mjs'
8
8
  import isfun from 'wsemi/src/isfun.mjs'
9
9
  import iseobj from 'wsemi/src/iseobj.mjs'
@@ -1,6 +1,6 @@
1
- import each from 'lodash-es/each'
2
- import get from 'lodash-es/get'
3
- import isNumber from 'lodash-es/isNumber'
1
+ import each from 'lodash-es/each.js'
2
+ import get from 'lodash-es/get.js'
3
+ import isNumber from 'lodash-es/isNumber.js'
4
4
  import isnum from 'wsemi/src/isnum.mjs'
5
5
  import haskey from 'wsemi/src/haskey.mjs'
6
6
  import isint from 'wsemi/src/isint.mjs'
@@ -1,8 +1,8 @@
1
- import get from 'lodash-es/get'
2
- import each from 'lodash-es/each'
3
- import map from 'lodash-es/map'
4
- import size from 'lodash-es/size'
5
- import isNumber from 'lodash-es/isNumber'
1
+ import get from 'lodash-es/get.js'
2
+ import each from 'lodash-es/each.js'
3
+ import map from 'lodash-es/map.js'
4
+ import size from 'lodash-es/size.js'
5
+ import isNumber from 'lodash-es/isNumber.js'
6
6
  import dig from 'wsemi/src/dig.mjs'
7
7
  import isestr from 'wsemi/src/isestr.mjs'
8
8
  import isnum from 'wsemi/src/isnum.mjs'
@@ -1,6 +1,6 @@
1
- import map from 'lodash-es/map'
2
- import get from 'lodash-es/get'
3
- import cloneDeep from 'lodash-es/cloneDeep'
1
+ import map from 'lodash-es/map.js'
2
+ import get from 'lodash-es/get.js'
3
+ import cloneDeep from 'lodash-es/cloneDeep.js'
4
4
  import isnum from 'wsemi/src/isnum.mjs'
5
5
  import isint from 'wsemi/src/isint.mjs'
6
6
  import isestr from 'wsemi/src/isestr.mjs'
@@ -1,9 +1,9 @@
1
- import each from 'lodash-es/each'
2
- import get from 'lodash-es/get'
3
- import size from 'lodash-es/size'
4
- import join from 'lodash-es/join'
5
- import sortBy from 'lodash-es/sortBy'
6
- import cloneDeep from 'lodash-es/cloneDeep'
1
+ import each from 'lodash-es/each.js'
2
+ import get from 'lodash-es/get.js'
3
+ import size from 'lodash-es/size.js'
4
+ import join from 'lodash-es/join.js'
5
+ import sortBy from 'lodash-es/sortBy.js'
6
+ import cloneDeep from 'lodash-es/cloneDeep.js'
7
7
  import cdbl from 'wsemi/src/cdbl.mjs'
8
8
  import isestr from 'wsemi/src/isestr.mjs'
9
9
  import isearr from 'wsemi/src/isearr.mjs'
@@ -1,10 +1,10 @@
1
- import each from 'lodash-es/each'
2
- import get from 'lodash-es/get'
3
- import size from 'lodash-es/size'
4
- import join from 'lodash-es/join'
5
- import isNumber from 'lodash-es/isNumber'
6
- import sortBy from 'lodash-es/sortBy'
7
- import cloneDeep from 'lodash-es/cloneDeep'
1
+ import each from 'lodash-es/each.js'
2
+ import get from 'lodash-es/get.js'
3
+ import size from 'lodash-es/size.js'
4
+ import join from 'lodash-es/join.js'
5
+ import isNumber from 'lodash-es/isNumber.js'
6
+ import sortBy from 'lodash-es/sortBy.js'
7
+ import cloneDeep from 'lodash-es/cloneDeep.js'
8
8
  import cdbl from 'wsemi/src/cdbl.mjs'
9
9
  import isestr from 'wsemi/src/isestr.mjs'
10
10
  import isearr from 'wsemi/src/isearr.mjs'
@@ -1,11 +1,11 @@
1
- import each from 'lodash-es/each'
2
- import map from 'lodash-es/map'
3
- import get from 'lodash-es/get'
4
- import size from 'lodash-es/size'
5
- import isNumber from 'lodash-es/isNumber'
6
- import join from 'lodash-es/join'
7
- import sortBy from 'lodash-es/sortBy'
8
- import cloneDeep from 'lodash-es/cloneDeep'
1
+ import each from 'lodash-es/each.js'
2
+ import map from 'lodash-es/map.js'
3
+ import get from 'lodash-es/get.js'
4
+ import size from 'lodash-es/size.js'
5
+ import isNumber from 'lodash-es/isNumber.js'
6
+ import join from 'lodash-es/join.js'
7
+ import sortBy from 'lodash-es/sortBy.js'
8
+ import cloneDeep from 'lodash-es/cloneDeep.js'
9
9
  import cdbl from 'wsemi/src/cdbl.mjs'
10
10
  import isestr from 'wsemi/src/isestr.mjs'
11
11
  import isearr from 'wsemi/src/isearr.mjs'
@@ -1,12 +1,12 @@
1
- import each from 'lodash-es/each'
2
- import map from 'lodash-es/map'
3
- import get from 'lodash-es/get'
4
- import size from 'lodash-es/size'
5
- import keys from 'lodash-es/keys'
6
- import join from 'lodash-es/join'
7
- import sortBy from 'lodash-es/sortBy'
8
- import pullAt from 'lodash-es/pullAt'
9
- import cloneDeep from 'lodash-es/cloneDeep'
1
+ import each from 'lodash-es/each.js'
2
+ import map from 'lodash-es/map.js'
3
+ import get from 'lodash-es/get.js'
4
+ import size from 'lodash-es/size.js'
5
+ import keys from 'lodash-es/keys.js'
6
+ import join from 'lodash-es/join.js'
7
+ import sortBy from 'lodash-es/sortBy.js'
8
+ import pullAt from 'lodash-es/pullAt.js'
9
+ import cloneDeep from 'lodash-es/cloneDeep.js'
10
10
  import cdbl from 'wsemi/src/cdbl.mjs'
11
11
  import isestr from 'wsemi/src/isestr.mjs'
12
12
  import isearr from 'wsemi/src/isearr.mjs'
@@ -1,17 +1,17 @@
1
- import get from 'lodash-es/get'
2
- import keys from 'lodash-es/keys'
3
- import each from 'lodash-es/each'
4
- import map from 'lodash-es/map'
5
- import filter from 'lodash-es/filter'
6
- import size from 'lodash-es/size'
7
- import sortBy from 'lodash-es/sortBy'
8
- import uniqBy from 'lodash-es/uniqBy'
9
- import join from 'lodash-es/join'
10
- import groupBy from 'lodash-es/groupBy'
11
- import maxBy from 'lodash-es/maxBy'
12
- import range from 'lodash-es/range'
13
- import isNumber from 'lodash-es/isNumber'
14
- import cloneDeep from 'lodash-es/cloneDeep'
1
+ import get from 'lodash-es/get.js'
2
+ import keys from 'lodash-es/keys.js'
3
+ import each from 'lodash-es/each.js'
4
+ import map from 'lodash-es/map.js'
5
+ import filter from 'lodash-es/filter.js'
6
+ import size from 'lodash-es/size.js'
7
+ import sortBy from 'lodash-es/sortBy.js'
8
+ import uniqBy from 'lodash-es/uniqBy.js'
9
+ import join from 'lodash-es/join.js'
10
+ import groupBy from 'lodash-es/groupBy.js'
11
+ import maxBy from 'lodash-es/maxBy.js'
12
+ import range from 'lodash-es/range.js'
13
+ import isNumber from 'lodash-es/isNumber.js'
14
+ import cloneDeep from 'lodash-es/cloneDeep.js'
15
15
  import isarr from 'wsemi/src/isarr.mjs'
16
16
  import isearr from 'wsemi/src/isearr.mjs'
17
17
  import isestr from 'wsemi/src/isestr.mjs'
@@ -1,8 +1,8 @@
1
- import get from 'lodash-es/get'
2
- import each from 'lodash-es/each'
3
- import map from 'lodash-es/map'
4
- import filter from 'lodash-es/filter'
5
- import cloneDeep from 'lodash-es/cloneDeep'
1
+ import get from 'lodash-es/get.js'
2
+ import each from 'lodash-es/each.js'
3
+ import map from 'lodash-es/map.js'
4
+ import filter from 'lodash-es/filter.js'
5
+ import cloneDeep from 'lodash-es/cloneDeep.js'
6
6
  import isestr from 'wsemi/src/isestr.mjs'
7
7
  import isnum from 'wsemi/src/isnum.mjs'
8
8
  import isarr from 'wsemi/src/isarr.mjs'
@@ -1,17 +1,17 @@
1
- import map from 'lodash-es/map'
2
- import each from 'lodash-es/each'
3
- import min from 'lodash-es/min'
4
- import max from 'lodash-es/max'
5
- import size from 'lodash-es/size'
6
- import join from 'lodash-es/join'
7
- import trim from 'lodash-es/trim'
8
- import sortBy from 'lodash-es/sortBy'
9
- import toLower from 'lodash-es/toLower'
10
- import isNumber from 'lodash-es/isNumber'
11
- import get from 'lodash-es/get'
12
- import split from 'lodash-es/split'
13
- import keys from 'lodash-es/keys'
14
- import cloneDeep from 'lodash-es/cloneDeep'
1
+ import map from 'lodash-es/map.js'
2
+ import each from 'lodash-es/each.js'
3
+ import min from 'lodash-es/min.js'
4
+ import max from 'lodash-es/max.js'
5
+ import size from 'lodash-es/size.js'
6
+ import join from 'lodash-es/join.js'
7
+ import trim from 'lodash-es/trim.js'
8
+ import sortBy from 'lodash-es/sortBy.js'
9
+ import toLower from 'lodash-es/toLower.js'
10
+ import isNumber from 'lodash-es/isNumber.js'
11
+ import get from 'lodash-es/get.js'
12
+ import split from 'lodash-es/split.js'
13
+ import keys from 'lodash-es/keys.js'
14
+ import cloneDeep from 'lodash-es/cloneDeep.js'
15
15
  import cdbl from 'wsemi/src/cdbl.mjs'
16
16
  import cint from 'wsemi/src/cint.mjs'
17
17
  import cstr from 'wsemi/src/cstr.mjs'
@@ -1,4 +1,4 @@
1
- import get from 'lodash-es/get'
1
+ import get from 'lodash-es/get.js'
2
2
  import isestr from 'wsemi/src/isestr.mjs'
3
3
  import isstr from 'wsemi/src/isstr.mjs'
4
4
  import cstr from 'wsemi/src/cstr.mjs'
@@ -1,4 +1,4 @@
1
- import map from 'lodash-es/map'
1
+ import map from 'lodash-es/map.js'
2
2
 
3
3
 
4
4
  function calcLiquefactionClearStress(ltdt) {
@@ -1,11 +1,11 @@
1
- import size from 'lodash-es/size'
2
- import get from 'lodash-es/get'
3
- import each from 'lodash-es/each'
4
- import keys from 'lodash-es/keys'
5
- import filter from 'lodash-es/filter'
6
- import uniq from 'lodash-es/uniq'
7
- import join from 'lodash-es/join'
8
- import cloneDeep from 'lodash-es/cloneDeep'
1
+ import size from 'lodash-es/size.js'
2
+ import get from 'lodash-es/get.js'
3
+ import each from 'lodash-es/each.js'
4
+ import keys from 'lodash-es/keys.js'
5
+ import filter from 'lodash-es/filter.js'
6
+ import uniq from 'lodash-es/uniq.js'
7
+ import join from 'lodash-es/join.js'
8
+ import cloneDeep from 'lodash-es/cloneDeep.js'
9
9
  import isestr from 'wsemi/src/isestr.mjs'
10
10
  import isbol from 'wsemi/src/isbol.mjs'
11
11
  import isnum from 'wsemi/src/isnum.mjs'
@@ -1,7 +1,7 @@
1
- import get from 'lodash-es/get'
2
- import each from 'lodash-es/each'
3
- import size from 'lodash-es/size'
4
- import cloneDeep from 'lodash-es/cloneDeep'
1
+ import get from 'lodash-es/get.js'
2
+ import each from 'lodash-es/each.js'
3
+ import size from 'lodash-es/size.js'
4
+ import cloneDeep from 'lodash-es/cloneDeep.js'
5
5
  import isnum from 'wsemi/src/isnum.mjs'
6
6
  import isestr from 'wsemi/src/isestr.mjs'
7
7
  import cdbl from 'wsemi/src/cdbl.mjs'
@@ -1,4 +1,4 @@
1
- import map from 'lodash-es/map'
1
+ import map from 'lodash-es/map.js'
2
2
 
3
3
 
4
4
  function calcLiquefactionSptAddPropsAdv(ltdt, PGA, Mw, waterLevelUsual, waterLevelDesign) {
@@ -1,5 +1,5 @@
1
- import get from 'lodash-es/get'
2
- import map from 'lodash-es/map'
1
+ import get from 'lodash-es/get.js'
2
+ import map from 'lodash-es/map.js'
3
3
  import isnum from 'wsemi/src/isnum.mjs'
4
4
  import isestr from 'wsemi/src/isestr.mjs'
5
5
  import cdbl from 'wsemi/src/cdbl.mjs'
@@ -1,14 +1,14 @@
1
1
 
2
- import get from 'lodash-es/get'
3
- import each from 'lodash-es/each'
4
- import map from 'lodash-es/map'
5
- import keys from 'lodash-es/keys'
6
- import filter from 'lodash-es/filter'
7
- import size from 'lodash-es/size'
8
- import times from 'lodash-es/times'
9
- import pull from 'lodash-es/pull'
10
- import isNumber from 'lodash-es/isNumber'
11
- import cloneDeep from 'lodash-es/cloneDeep'
2
+ import get from 'lodash-es/get.js'
3
+ import each from 'lodash-es/each.js'
4
+ import map from 'lodash-es/map.js'
5
+ import keys from 'lodash-es/keys.js'
6
+ import filter from 'lodash-es/filter.js'
7
+ import size from 'lodash-es/size.js'
8
+ import times from 'lodash-es/times.js'
9
+ import pull from 'lodash-es/pull.js'
10
+ import isNumber from 'lodash-es/isNumber.js'
11
+ import cloneDeep from 'lodash-es/cloneDeep.js'
12
12
  import dtmapping from 'wsemi/src/dtmapping.mjs'
13
13
  import isnum from 'wsemi/src/isnum.mjs'
14
14
  import isearr from 'wsemi/src/isearr.mjs'
@@ -1,9 +1,9 @@
1
- import map from 'lodash-es/map'
2
- import get from 'lodash-es/get'
3
- import sortBy from 'lodash-es/sortBy'
4
- import cloneDeep from 'lodash-es/cloneDeep'
5
- import size from 'lodash-es/size'
6
- import join from 'lodash-es/join'
1
+ import map from 'lodash-es/map.js'
2
+ import get from 'lodash-es/get.js'
3
+ import sortBy from 'lodash-es/sortBy.js'
4
+ import cloneDeep from 'lodash-es/cloneDeep.js'
5
+ import size from 'lodash-es/size.js'
6
+ import join from 'lodash-es/join.js'
7
7
  import cdbl from 'wsemi/src/cdbl.mjs'
8
8
  import isnum from 'wsemi/src/isnum.mjs'
9
9
  import isearr from 'wsemi/src/isearr.mjs'
@@ -1,8 +1,8 @@
1
- import each from 'lodash-es/each'
2
- import get from 'lodash-es/get'
3
- import size from 'lodash-es/size'
4
- import sortBy from 'lodash-es/sortBy'
5
- import cloneDeep from 'lodash-es/cloneDeep'
1
+ import each from 'lodash-es/each.js'
2
+ import get from 'lodash-es/get.js'
3
+ import size from 'lodash-es/size.js'
4
+ import sortBy from 'lodash-es/sortBy.js'
5
+ import cloneDeep from 'lodash-es/cloneDeep.js'
6
6
  import cdbl from 'wsemi/src/cdbl.mjs'
7
7
  import isestr from 'wsemi/src/isestr.mjs'
8
8
  import isearr from 'wsemi/src/isearr.mjs'
@@ -1,6 +1,6 @@
1
- import each from 'lodash-es/each'
2
- import get from 'lodash-es/get'
3
- import sortBy from 'lodash-es/sortBy'
1
+ import each from 'lodash-es/each.js'
2
+ import get from 'lodash-es/get.js'
3
+ import sortBy from 'lodash-es/sortBy.js'
4
4
  import cdbl from 'wsemi/src/cdbl.mjs'
5
5
  import isestr from 'wsemi/src/isestr.mjs'
6
6
  import isearr from 'wsemi/src/isearr.mjs'
@@ -1,13 +1,13 @@
1
- import get from 'lodash-es/get'
2
- import set from 'lodash-es/set'
3
- import each from 'lodash-es/each'
4
- import size from 'lodash-es/size'
5
- import isNumber from 'lodash-es/isNumber'
6
- import cloneDeep from 'lodash-es/cloneDeep'
1
+ import get from 'lodash-es/get.js'
2
+ import set from 'lodash-es/set.js'
3
+ import each from 'lodash-es/each.js'
4
+ import size from 'lodash-es/size.js'
5
+ import isNumber from 'lodash-es/isNumber.js'
6
+ import cloneDeep from 'lodash-es/cloneDeep.js'
7
7
  import cdbl from 'wsemi/src/cdbl.mjs'
8
8
  import isnum from 'wsemi/src/isnum.mjs'
9
- import isestr from 'wsemi/src/isestr'
10
- import isearr from 'wsemi/src/isearr'
9
+ import isestr from 'wsemi/src/isestr.mjs'
10
+ import isearr from 'wsemi/src/isearr.mjs'
11
11
 
12
12
 
13
13
  function gv(rows, key, k) {
@@ -1,11 +1,11 @@
1
- import each from 'lodash-es/each'
2
- import map from 'lodash-es/map'
3
- import get from 'lodash-es/get'
4
- import size from 'lodash-es/size'
5
- import isNumber from 'lodash-es/isNumber'
6
- import max from 'lodash-es/max'
7
- import flattenDeep from 'lodash-es/flattenDeep'
8
- // import cloneDeep from 'lodash-es/cloneDeep'
1
+ import each from 'lodash-es/each.js'
2
+ import map from 'lodash-es/map.js'
3
+ import get from 'lodash-es/get.js'
4
+ import size from 'lodash-es/size.js'
5
+ import isNumber from 'lodash-es/isNumber.js'
6
+ import max from 'lodash-es/max.js'
7
+ import flattenDeep from 'lodash-es/flattenDeep.js'
8
+ // import cloneDeep from 'lodash-es/cloneDeep.js'
9
9
  import dig from 'wsemi/src/dig.mjs'
10
10
  import isestr from 'wsemi/src/isestr.mjs'
11
11
  import isint from 'wsemi/src/isint.mjs'
@@ -1,6 +1,6 @@
1
- import get from 'lodash-es/get'
2
- import each from 'lodash-es/each'
3
- import isNumber from 'lodash-es/isNumber'
1
+ import get from 'lodash-es/get.js'
2
+ import each from 'lodash-es/each.js'
3
+ import isNumber from 'lodash-es/isNumber.js'
4
4
  import isnum from 'wsemi/src/isnum.mjs'
5
5
  import isbol from 'wsemi/src/isbol.mjs'
6
6
  import isestr from 'wsemi/src/isestr.mjs'
@@ -1,11 +1,11 @@
1
- import each from 'lodash-es/each'
2
- import map from 'lodash-es/map'
3
- import get from 'lodash-es/get'
4
- import size from 'lodash-es/size'
5
- import join from 'lodash-es/join'
6
- import sortBy from 'lodash-es/sortBy'
7
- import pullAt from 'lodash-es/pullAt'
8
- import cloneDeep from 'lodash-es/cloneDeep'
1
+ import each from 'lodash-es/each.js'
2
+ import map from 'lodash-es/map.js'
3
+ import get from 'lodash-es/get.js'
4
+ import size from 'lodash-es/size.js'
5
+ import join from 'lodash-es/join.js'
6
+ import sortBy from 'lodash-es/sortBy.js'
7
+ import pullAt from 'lodash-es/pullAt.js'
8
+ import cloneDeep from 'lodash-es/cloneDeep.js'
9
9
  import cdbl from 'wsemi/src/cdbl.mjs'
10
10
  import isestr from 'wsemi/src/isestr.mjs'
11
11
  import isearr from 'wsemi/src/isearr.mjs'
@@ -1,12 +1,12 @@
1
- import get from 'lodash-es/get'
2
- import each from 'lodash-es/each'
3
- import map from 'lodash-es/map'
4
- import size from 'lodash-es/size'
5
- import join from 'lodash-es/join'
6
- import sortBy from 'lodash-es/sortBy'
7
- import pullAt from 'lodash-es/pullAt'
8
- import filter from 'lodash-es/filter'
9
- import cloneDeep from 'lodash-es/cloneDeep'
1
+ import get from 'lodash-es/get.js'
2
+ import each from 'lodash-es/each.js'
3
+ import map from 'lodash-es/map.js'
4
+ import size from 'lodash-es/size.js'
5
+ import join from 'lodash-es/join.js'
6
+ import sortBy from 'lodash-es/sortBy.js'
7
+ import pullAt from 'lodash-es/pullAt.js'
8
+ import filter from 'lodash-es/filter.js'
9
+ import cloneDeep from 'lodash-es/cloneDeep.js'
10
10
  import cdbl from 'wsemi/src/cdbl.mjs'
11
11
  import isestr from 'wsemi/src/isestr.mjs'
12
12
  import isnum from 'wsemi/src/isnum.mjs'
@@ -1,6 +1,6 @@
1
- import join from 'lodash-es/join'
2
- import values from 'lodash-es/values'
3
- import isNumber from 'lodash-es/isNumber'
1
+ import join from 'lodash-es/join.js'
2
+ import values from 'lodash-es/values.js'
3
+ import isNumber from 'lodash-es/isNumber.js'
4
4
  import cdbl from 'wsemi/src/cdbl.mjs'
5
5
  import isnum from 'wsemi/src/isnum.mjs'
6
6
  import iseobj from 'wsemi/src/iseobj.mjs'
@@ -1,7 +1,7 @@
1
- import get from 'lodash-es/get'
2
- import join from 'lodash-es/join'
3
- import values from 'lodash-es/values'
4
- import isNumber from 'lodash-es/isNumber'
1
+ import get from 'lodash-es/get.js'
2
+ import join from 'lodash-es/join.js'
3
+ import values from 'lodash-es/values.js'
4
+ import isNumber from 'lodash-es/isNumber.js'
5
5
  import cdbl from 'wsemi/src/cdbl.mjs'
6
6
  import isnum from 'wsemi/src/isnum.mjs'
7
7
  import isbol from 'wsemi/src/isbol.mjs'
@@ -1,12 +1,12 @@
1
- import each from 'lodash-es/each'
2
- import map from 'lodash-es/map'
3
- import get from 'lodash-es/get'
4
- import size from 'lodash-es/size'
5
- import join from 'lodash-es/join'
6
- import sortBy from 'lodash-es/sortBy'
7
- import pullAt from 'lodash-es/pullAt'
8
- import uniq from 'lodash-es/uniq'
9
- import cloneDeep from 'lodash-es/cloneDeep'
1
+ import each from 'lodash-es/each.js'
2
+ import map from 'lodash-es/map.js'
3
+ import get from 'lodash-es/get.js'
4
+ import size from 'lodash-es/size.js'
5
+ import join from 'lodash-es/join.js'
6
+ import sortBy from 'lodash-es/sortBy.js'
7
+ import pullAt from 'lodash-es/pullAt.js'
8
+ import uniq from 'lodash-es/uniq.js'
9
+ import cloneDeep from 'lodash-es/cloneDeep.js'
10
10
  import cdbl from 'wsemi/src/cdbl.mjs'
11
11
  import isestr from 'wsemi/src/isestr.mjs'
12
12
  import isearr from 'wsemi/src/isearr.mjs'
@@ -1,8 +1,8 @@
1
- import get from 'lodash-es/get'
2
- import each from 'lodash-es/each'
3
- import map from 'lodash-es/map'
4
- import size from 'lodash-es/size'
5
- import sortBy from 'lodash-es/sortBy'
1
+ import get from 'lodash-es/get.js'
2
+ import each from 'lodash-es/each.js'
3
+ import map from 'lodash-es/map.js'
4
+ import size from 'lodash-es/size.js'
5
+ import sortBy from 'lodash-es/sortBy.js'
6
6
  import arrAt from 'wsemi/src/arrAt.mjs'
7
7
  import cdbl from 'wsemi/src/cdbl.mjs'
8
8
  import cint from 'wsemi/src/cint.mjs'