w-geo 1.1.17 → 1.1.19

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 (80) hide show
  1. package/README.md +1 -1
  2. package/dist/w-geo.umd.js +3 -3
  3. package/dist/w-geo.umd.js.map +1 -1
  4. package/docs/-_class.mjs.html +1 -1
  5. package/docs/calcDepthByDepthStartEnd.mjs.html +1 -1
  6. package/docs/calcDepthStartEndByConnect.mjs.html +1 -1
  7. package/docs/calcDepthStartEndByDepth.mjs.html +1 -1
  8. package/docs/calcDepthStartEndByGroup.mjs.html +1 -1
  9. package/docs/calcLiquefaction.mjs.html +1 -1
  10. package/docs/calcVerticalStress.mjs.html +1 -1
  11. package/docs/checkDepth.mjs.html +1 -1
  12. package/docs/checkDepthStartEnd.mjs.html +1 -1
  13. package/docs/complementDepthData.mjs.html +1 -1
  14. package/docs/groupByDepthStartEnd.mjs.html +1 -1
  15. package/docs/index.html +1 -1
  16. package/docs/mergeByDepthStartEnd.mjs.html +1 -1
  17. package/docs/relaPlasticityParams.mjs.html +1 -1
  18. package/docs/relaPorousParams.mjs.html +1 -1
  19. package/docs/sepDepthStartEndByDepth.mjs.html +1 -1
  20. package/docs/smoothDepthByKey.mjs.html +1 -1
  21. package/docs/w-geo.html +1 -1
  22. package/{g_2_1_2-calcLiquefactionSpt.mjs → g_2_1-calcLiquefactionSpt.mjs} +1 -1
  23. package/{g_2_1_1-calcLiquefaction-spt.mjs → g_2_1_calcLiquefaction-spt.mjs} +1 -1
  24. package/g_3_2-calcCptUnitWeight.mjs +5 -5
  25. package/g_3_4-calcCptVelocityShear.mjs +5 -5
  26. package/{g_3_5-calcCptLayers.mjs → g_3_5-calcCptLayer.mjs} +47 -71
  27. package/g_6-1-calcLayersByCompress.mjs +5159 -0
  28. package/{g_6_9-calcPropInterfaceFrictionAngle.mjs → g_7_9-calcPropInterfaceFrictionAngle.mjs} +1 -1
  29. package/package.json +1 -1
  30. package/src/WGeo.mjs +1 -1
  31. package/src/calcCptClassify.mjs +92 -52
  32. package/src/{calcCptLayers.mjs → calcCptLayer.mjs} +22 -24
  33. package/src/calcCptUnitWeight.mjs +2 -2
  34. package/src/calcLayersByCompress.mjs +541 -2161
  35. package/src/calcLayersByMerge.mjs +18 -6
  36. package/src/calcPropInterfaceFrictionAngle.mjs +2 -0
  37. package/test/calcCptLayer-rowsIn.json +1 -0
  38. package/test/calcCptLayer-rowsOut1.json +1 -0
  39. package/test/calcCptLayer-rowsOut2.json +1 -0
  40. package/test/calcCptLayer-rowsOut3.json +1 -0
  41. package/test/calcCptLayer-rowsOut4.json +1 -0
  42. package/test/calcCptLayer-rowsOut5.json +1 -0
  43. package/test/calcCptLayer-rowsOut6.json +1 -0
  44. package/test/calcCptLayer-rowsOut7.json +1 -0
  45. package/test/calcCptLayer-rowsOut8.json +1 -0
  46. package/test/calcCptLayer.test.mjs +107 -0
  47. package/test/calcCptUnitWeight.test.mjs +7 -7
  48. package/test/calcCptVelocityShear.test.mjs +14 -14
  49. package/test/calcLayersByCompress-rowsIn.json +1 -0
  50. package/test/calcLayersByCompress-rowsOut.json +1 -0
  51. package/test/calcLayersByCompress.test.mjs +140 -0
  52. package/test/calcCptLayers-rowsIn1.json +0 -1
  53. package/test/calcCptLayers-rowsOut1.json +0 -1
  54. package/test/calcCptLayers-rowsOut2.json +0 -1
  55. package/test/calcCptLayers-rowsOut3.json +0 -1
  56. package/test/calcCptLayers-rowsOut4.json +0 -1
  57. package/test/calcCptLayers-rowsOut5.json +0 -1
  58. package/test/calcCptLayers-rowsOut6.json +0 -1
  59. package/test/calcCptLayers-rowsOut7.json +0 -1
  60. package/test/calcCptLayers-rowsOut8.json +0 -1
  61. package/test/calcCptLayers.test.mjs +0 -108
  62. /package/test/{calcCptUnitWeight-cpt-rowsIn.json → calcCptUnitWeight-rowsIn.json} +0 -0
  63. /package/test/{calcCptUnitWeight-cpt-rowsOut1.json → calcCptUnitWeight-rowsOut1.json} +0 -0
  64. /package/test/{calcCptUnitWeight-cpt-rowsOut2.json → calcCptUnitWeight-rowsOut2.json} +0 -0
  65. /package/test/{calcCptUnitWeight-cpt-rowsOut3.json → calcCptUnitWeight-rowsOut3.json} +0 -0
  66. /package/test/{calcCptUnitWeight-cpt-rowsOut4.json → calcCptUnitWeight-rowsOut4.json} +0 -0
  67. /package/test/{calcCptUnitWeight-cpt-rowsOut5.json → calcCptUnitWeight-rowsOut5.json} +0 -0
  68. /package/test/{calcCptVelocityShear-cpt-rowsIn.json → calcCptVelocityShear-rowsIn.json} +0 -0
  69. /package/test/{calcCptVelocityShear-cpt-rowsOut1.json → calcCptVelocityShear-rowsOut1.json} +0 -0
  70. /package/test/{calcCptVelocityShear-cpt-rowsOut10.json → calcCptVelocityShear-rowsOut10.json} +0 -0
  71. /package/test/{calcCptVelocityShear-cpt-rowsOut11.json → calcCptVelocityShear-rowsOut11.json} +0 -0
  72. /package/test/{calcCptVelocityShear-cpt-rowsOut12.json → calcCptVelocityShear-rowsOut12.json} +0 -0
  73. /package/test/{calcCptVelocityShear-cpt-rowsOut2.json → calcCptVelocityShear-rowsOut2.json} +0 -0
  74. /package/test/{calcCptVelocityShear-cpt-rowsOut3.json → calcCptVelocityShear-rowsOut3.json} +0 -0
  75. /package/test/{calcCptVelocityShear-cpt-rowsOut4.json → calcCptVelocityShear-rowsOut4.json} +0 -0
  76. /package/test/{calcCptVelocityShear-cpt-rowsOut5.json → calcCptVelocityShear-rowsOut5.json} +0 -0
  77. /package/test/{calcCptVelocityShear-cpt-rowsOut6.json → calcCptVelocityShear-rowsOut6.json} +0 -0
  78. /package/test/{calcCptVelocityShear-cpt-rowsOut7.json → calcCptVelocityShear-rowsOut7.json} +0 -0
  79. /package/test/{calcCptVelocityShear-cpt-rowsOut8.json → calcCptVelocityShear-rowsOut8.json} +0 -0
  80. /package/test/{calcCptVelocityShear-cpt-rowsOut9.json → calcCptVelocityShear-rowsOut9.json} +0 -0
package/README.md CHANGED
@@ -23,5 +23,5 @@ npm i w-geo
23
23
 
24
24
  Add script for w-geo.
25
25
  ```alias
26
- <script src="https://cdn.jsdelivr.net/npm/w-geo@1.1.17/dist/w-geo.umd.js"></script>
26
+ <script src="https://cdn.jsdelivr.net/npm/w-geo@1.1.19/dist/w-geo.umd.js"></script>
27
27
  ```