stbkit 0.1.0a9.dev1__py3-none-any.whl

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 (125) hide show
  1. stbkit/__main__.py +10 -0
  2. stbkit/api/__init__.py +48 -0
  3. stbkit/api/experimental/__init__.py +19 -0
  4. stbkit/api/experimental/repository/__init__.py +30 -0
  5. stbkit/api/py.typed +0 -0
  6. stbkit/api/stb_latest.py +7 -0
  7. stbkit/api/stb_v2_0_2.py +11 -0
  8. stbkit/api/stb_v2_1_1.py +9 -0
  9. stbkit/cli/__init__.py +17 -0
  10. stbkit/cli/_internal/cli_main.py +114 -0
  11. stbkit/cli/_internal/common.py +126 -0
  12. stbkit/cli/_internal/constants_exit_code.py +59 -0
  13. stbkit/cli/_internal/converter.py +693 -0
  14. stbkit/cli/_internal/diff.py +213 -0
  15. stbkit/cli/_internal/entry_points.py +25 -0
  16. stbkit/cli/_internal/global_parent.py +70 -0
  17. stbkit/cli/_internal/show_versions.py +36 -0
  18. stbkit/cli/_internal/validate.py +310 -0
  19. stbkit/cli/commands/convert.py +16 -0
  20. stbkit/cli/commands/diff.py +16 -0
  21. stbkit/cli/commands/validate.py +16 -0
  22. stbkit/cli/py.typed +0 -0
  23. stbkit/tools/__init__.py +12 -0
  24. stbkit/tools/_internal/__init__.py +5 -0
  25. stbkit/tools/_internal/constants.py +21 -0
  26. stbkit/tools/_internal/data_model/building_geometry.py +1208 -0
  27. stbkit/tools/_internal/data_model/building_geometry_web.py +106 -0
  28. stbkit/tools/_internal/data_model/element_data.py +93 -0
  29. stbkit/tools/_internal/data_model/ifc_data/entity_data.py +67 -0
  30. stbkit/tools/_internal/data_model/ifc_data/entity_names.py +32 -0
  31. stbkit/tools/_internal/data_model/shape_data.py +1089 -0
  32. stbkit/tools/_internal/diff/__init__.py +5 -0
  33. stbkit/tools/_internal/diff/common.py +50 -0
  34. stbkit/tools/_internal/diff/diff_xml.py +796 -0
  35. stbkit/tools/_internal/matrix.py +51 -0
  36. stbkit/tools/_internal/optional_dependencies/__init__.py +5 -0
  37. stbkit/tools/_internal/optional_dependencies/ifc_common.py +28 -0
  38. stbkit/tools/_internal/optional_dependencies/ifc_exporter/ifc_entity_exporter.py +473 -0
  39. stbkit/tools/_internal/optional_dependencies/ifc_exporter/ifc_profile_exporter.py +267 -0
  40. stbkit/tools/_internal/optional_dependencies/ifc_exporter/ifc_representation_exporter.py +178 -0
  41. stbkit/tools/_internal/optional_dependencies/ifc_pipeline.py +133 -0
  42. stbkit/tools/_internal/optional_dependencies/ifc_to_building_geometry.py +64 -0
  43. stbkit/tools/_internal/stb_io.py +116 -0
  44. stbkit/tools/_internal/stb_repair/_common.py +24 -0
  45. stbkit/tools/_internal/stb_repair/_stb_repair.py +197 -0
  46. stbkit/tools/_internal/stb_repair/_stb_v2_0_2_repair.py +53 -0
  47. stbkit/tools/_internal/stb_repair/_stb_v2_1_0_repair.py +109 -0
  48. stbkit/tools/_internal/stb_repair/_stb_v2_1_1_repair.py +109 -0
  49. stbkit/tools/_internal/studio_report.py +49 -0
  50. stbkit/tools/_internal/utils/atomic_writer.py +57 -0
  51. stbkit/tools/_internal/utils/float_rounding.py +49 -0
  52. stbkit/tools/_internal/utils/girder_utils.py +91 -0
  53. stbkit/tools/_internal/utils/guid_utils.py +30 -0
  54. stbkit/tools/_internal/utils/mesh_utils.py +1305 -0
  55. stbkit/tools/_internal/utils/node_utils.py +50 -0
  56. stbkit/tools/_internal/utils/unit_utils.py +23 -0
  57. stbkit/tools/_internal/vectors.py +222 -0
  58. stbkit/tools/converters/__init__.py +39 -0
  59. stbkit/tools/converters/_internal/__init__.py +5 -0
  60. stbkit/tools/converters/_internal/building_geometry_to_ply_text.py +32 -0
  61. stbkit/tools/converters/_internal/coord_converter.py +151 -0
  62. stbkit/tools/converters/_internal/element_data_to_building_geometry.py +549 -0
  63. stbkit/tools/converters/_internal/ifc_to_ply_text.py +21 -0
  64. stbkit/tools/converters/_internal/name_converter.py +23 -0
  65. stbkit/tools/converters/_internal/pipeline/__init__.py +5 -0
  66. stbkit/tools/converters/_internal/pipeline/data.py +188 -0
  67. stbkit/tools/converters/_internal/pipeline/execution.py +569 -0
  68. stbkit/tools/converters/_internal/pipeline/ply_pipeline.py +52 -0
  69. stbkit/tools/converters/_internal/pipeline/stb_pipeline.py +226 -0
  70. stbkit/tools/converters/_internal/pipeline/stb_pipeline_latest.py +39 -0
  71. stbkit/tools/converters/_internal/pipeline/step.py +139 -0
  72. stbkit/tools/converters/_internal/stb_latest_to_element_data/__init__.py +17 -0
  73. stbkit/tools/converters/_internal/stb_latest_to_element_data/_stb_latest_to_element_data.py +186 -0
  74. stbkit/tools/converters/_internal/stb_latest_to_element_data/member/member_footing.py +49 -0
  75. stbkit/tools/converters/_internal/stb_latest_to_element_data/member/member_line.py +533 -0
  76. stbkit/tools/converters/_internal/stb_latest_to_element_data/member/member_pile.py +100 -0
  77. stbkit/tools/converters/_internal/stb_latest_to_element_data/member/member_plane.py +103 -0
  78. stbkit/tools/converters/_internal/stb_latest_to_element_data/open.py +70 -0
  79. stbkit/tools/converters/_internal/stb_latest_to_element_data/section/sec.py +214 -0
  80. stbkit/tools/converters/_internal/stb_latest_to_element_data/section/sec_beam_rc.py +67 -0
  81. stbkit/tools/converters/_internal/stb_latest_to_element_data/section/sec_beam_s.py +97 -0
  82. stbkit/tools/converters/_internal/stb_latest_to_element_data/section/sec_beam_src.py +28 -0
  83. stbkit/tools/converters/_internal/stb_latest_to_element_data/section/sec_brace_s.py +49 -0
  84. stbkit/tools/converters/_internal/stb_latest_to_element_data/section/sec_column_cft.py +217 -0
  85. stbkit/tools/converters/_internal/stb_latest_to_element_data/section/sec_column_rc.py +41 -0
  86. stbkit/tools/converters/_internal/stb_latest_to_element_data/section/sec_column_s.py +127 -0
  87. stbkit/tools/converters/_internal/stb_latest_to_element_data/section/sec_column_src.py +173 -0
  88. stbkit/tools/converters/_internal/stb_latest_to_element_data/section/sec_foundation.py +225 -0
  89. stbkit/tools/converters/_internal/stb_latest_to_element_data/section/sec_parapet_rc.py +53 -0
  90. stbkit/tools/converters/_internal/stb_latest_to_element_data/section/sec_pile_rc.py +106 -0
  91. stbkit/tools/converters/_internal/stb_latest_to_element_data/section/sec_pile_s.py +100 -0
  92. stbkit/tools/converters/_internal/stb_latest_to_element_data/section/sec_steel.py +432 -0
  93. stbkit/tools/converters/_internal/stb_to_building_geometry.py +44 -0
  94. stbkit/tools/converters/_internal/stb_to_ifc_data/__init__.py +5 -0
  95. stbkit/tools/converters/_internal/stb_to_ifc_data/_stb_to_ifc_data.py +59 -0
  96. stbkit/tools/converters/_internal/stb_to_ifc_data/convert_option.py +22 -0
  97. stbkit/tools/converters/_internal/stb_to_ply_text.py +22 -0
  98. stbkit/tools/py.typed +0 -0
  99. stbkit/tools/upgrade/__init__.py +13 -0
  100. stbkit/tools/upgrade/_internal/__init__.py +5 -0
  101. stbkit/tools/upgrade/_internal/common.py +205 -0
  102. stbkit/tools/upgrade/_internal/upgrade.py +228 -0
  103. stbkit/tools/upgrade/_internal/v2_0_2_to_v2_1_0/__init__.py +60 -0
  104. stbkit/tools/upgrade/_internal/v2_0_2_to_v2_1_0/hook_funcs/hook_common.py +62 -0
  105. stbkit/tools/upgrade/_internal/v2_0_2_to_v2_1_0/hook_funcs/hook_joint_beam_shape_h.py +44 -0
  106. stbkit/tools/upgrade/_internal/v2_0_2_to_v2_1_0/hook_funcs/hook_sec_pile_rc.py +101 -0
  107. stbkit/tools/upgrade/_internal/v2_0_2_to_v2_1_0/hook_funcs/hook_sec_pile_s.py +78 -0
  108. stbkit/tools/upgrade/_internal/v2_0_2_to_v2_1_0/hook_funcs/hook_sec_slab_deck.py +56 -0
  109. stbkit/tools/upgrade/_internal/v2_0_2_to_v2_1_0/hook_funcs/hook_sec_slab_rc.py +128 -0
  110. stbkit/tools/upgrade/_internal/v2_0_2_to_v2_1_0/hook_funcs/post_girder.py +126 -0
  111. stbkit/tools/upgrade/_internal/v2_0_2_to_v2_1_0/hook_funcs/post_open.py +110 -0
  112. stbkit/tools/upgrade/_internal/v2_0_2_to_v2_1_0/hook_funcs/post_sec_beam_rc.py +227 -0
  113. stbkit/tools/upgrade/_internal/v2_0_2_to_v2_1_0/hook_funcs/post_sec_beam_s.py +1153 -0
  114. stbkit/tools/upgrade/_internal/v2_0_2_to_v2_1_0/hooks.py +22 -0
  115. stbkit/tools/upgrade/_internal/v2_0_2_to_v2_1_0/post.py +42 -0
  116. stbkit/tools/upgrade/_internal/v2_0_2_to_v2_1_0/tables.py +99 -0
  117. stbkit/tools/upgrade/_internal/v2_1_0_to_v2_1_1/__init__.py +58 -0
  118. stbkit/tools/upgrade/_internal/v2_1_0_to_v2_1_1/hooks.py +32 -0
  119. stbkit/tools/upgrade/_internal/v2_1_0_to_v2_1_1/tables.py +56 -0
  120. stbkit-0.1.0a9.dev1.dist-info/METADATA +196 -0
  121. stbkit-0.1.0a9.dev1.dist-info/RECORD +125 -0
  122. stbkit-0.1.0a9.dev1.dist-info/WHEEL +5 -0
  123. stbkit-0.1.0a9.dev1.dist-info/entry_points.txt +2 -0
  124. stbkit-0.1.0a9.dev1.dist-info/licenses/LICENSE +373 -0
  125. stbkit-0.1.0a9.dev1.dist-info/top_level.txt +1 -0
@@ -0,0 +1,22 @@
1
+ # Copyright 2025-2026 TAISEI CORPORATION
2
+ # SPDX-License-Identifier: MPL-2.0
3
+ # This Source Code Form is subject to the terms of the Mozilla Public
4
+ # License, v. 2.0. If a copy of the MPL was not distributed with this
5
+ # file, You can obtain one at https://mozilla.org/MPL/2.0/.
6
+
7
+ from ..common import ElementHook
8
+ from .hook_funcs.hook_common import hook_apply_conditions_list
9
+ from .hook_funcs.hook_joint_beam_shape_h import joint_beam_shape_h
10
+ from .hook_funcs.hook_sec_pile_rc import sec_pile_rc
11
+ from .hook_funcs.hook_sec_pile_s import sec_pile_s
12
+ from .hook_funcs.hook_sec_slab_deck import sec_slab_deck
13
+ from .hook_funcs.hook_sec_slab_rc import sec_slab_rc
14
+
15
+ HOOKS: dict[str, ElementHook] = {
16
+ "StbApplyConditionsList": hook_apply_conditions_list,
17
+ "StbSecPile_RC": sec_pile_rc,
18
+ "StbSecPile_S": sec_pile_s,
19
+ "StbSecSlab_RC": sec_slab_rc,
20
+ "StbJointBeamShapeH": joint_beam_shape_h,
21
+ "StbSecSlabDeck": sec_slab_deck,
22
+ }
@@ -0,0 +1,42 @@
1
+ # Copyright 2025-2026 TAISEI CORPORATION
2
+ # SPDX-License-Identifier: MPL-2.0
3
+ # This Source Code Form is subject to the terms of the Mozilla Public
4
+ # License, v. 2.0. If a copy of the MPL was not distributed with this
5
+ # file, You can obtain one at https://mozilla.org/MPL/2.0/.
6
+
7
+ from stbkit.core.data_model import stb_v2_0_2, stb_v2_1_0
8
+ from stbkit.core.data_model.common import StBridgeElement
9
+ from stbkit.core.repository import RepositoryV2_0_2
10
+ from stbkit.core.stb_reporting import Code, Phase, Reporter
11
+
12
+ from .hook_funcs.post_girder import post_girder
13
+ from .hook_funcs.post_open import post_open
14
+ from .hook_funcs.post_sec_beam_rc import post_sec_beam_rc, post_sec_beam_src_rc
15
+ from .hook_funcs.post_sec_beam_s import post_sec_beam_s, post_sec_beam_src_s
16
+
17
+
18
+ def post_conversion(
19
+ before: StBridgeElement, after: StBridgeElement, *, reporter: Reporter
20
+ ) -> None:
21
+ if not isinstance(before, stb_v2_0_2.StBridge) or not isinstance(
22
+ after, stb_v2_1_0.StBridge
23
+ ):
24
+ reporter.error(
25
+ "変換後後処理が正しく実装されていません",
26
+ code=Code.DEVELOPER_ERROR,
27
+ phase=Phase.UPGRADE,
28
+ )
29
+ return
30
+ repo_v202: RepositoryV2_0_2 = RepositoryV2_0_2(before)
31
+ # Girder
32
+ post_girder(before, after, repo_v202=repo_v202, reporter=reporter)
33
+ # StbSecBeam_S
34
+ post_sec_beam_s(before, after, reporter=reporter)
35
+ # StbSecBeam_RC
36
+ post_sec_beam_rc(before, after, reporter=reporter)
37
+ # StbSecBeam_SRC
38
+ # S断面処理時に断面をコピーする場合があるため、RC断面処理の後に実行する
39
+ post_sec_beam_src_rc(before, after, reporter=reporter)
40
+ post_sec_beam_src_s(before, after, reporter=reporter)
41
+ # open
42
+ post_open(before, after)
@@ -0,0 +1,99 @@
1
+ # Copyright 2025-2026 TAISEI CORPORATION
2
+ # SPDX-License-Identifier: MPL-2.0
3
+ # This Source Code Form is subject to the terms of the Mozilla Public
4
+ # License, v. 2.0. If a copy of the MPL was not distributed with this
5
+ # file, You can obtain one at https://mozilla.org/MPL/2.0/.
6
+
7
+ """v2.0.2からv2.1.0への変換規則。
8
+
9
+ 記載する名称は下記の規則で記載する:
10
+ - 要素を指すキー・値はXMLの要素名で書く。
11
+ - クラスの中の属性指す名前はPython属性名で書く。XMLでいう属性と子要素の両方を含む。
12
+ TODO: XML名またはPython名に統一するか検討中
13
+ """
14
+
15
+ ignore_field: dict[str, list[str]] = {
16
+ "StbMembers": ["stb_opens"],
17
+ "StbWall": ["stb_open_id_list"],
18
+ "StbSlab": ["stb_open_id_list"],
19
+ "StbBeam": [
20
+ "condition_start",
21
+ "condition_end",
22
+ "haunch_start",
23
+ "haunch_end",
24
+ "joint_start",
25
+ "joint_end",
26
+ "kind_haunch_start",
27
+ "kind_haunch_end",
28
+ ],
29
+ "StbGirder": [
30
+ "condition_start",
31
+ "condition_end",
32
+ "haunch_start",
33
+ "haunch_end",
34
+ "joint_start",
35
+ "joint_end",
36
+ "kind_haunch_start",
37
+ "kind_haunch_end",
38
+ ],
39
+ "StbColumn": ["condition_bottom", "condition_top"],
40
+ "StbPost": ["condition_bottom", "condition_top"],
41
+ "StbApplyConditionsList": ["stb_column_rc_rebar_position_apply"],
42
+ "StbSecBeam_S": ["stb_sec_steel_figure_beam_s"],
43
+ "StbSecBeam_RC": ["stb_sec_figure_beam_rc", "stb_sec_bar_arrangement_beam_rc"],
44
+ "StbSecBeam_SRC": [
45
+ "stb_sec_figure_beam_src",
46
+ "stb_sec_steel_figure_beam_src",
47
+ "stb_sec_bar_arrangement_beam_src",
48
+ ],
49
+ "StbSecPile_RC": [
50
+ "stb_sec_bar_arrangement_pile_rc",
51
+ "stb_sec_figure_pile_rc",
52
+ "strength_concrete",
53
+ ],
54
+ "StbSecPile_S": ["stb_sec_figure_pile_s"],
55
+ "StbSecSlab_RC": ["stb_sec_figure_slab_rc"],
56
+ }
57
+ """変換をスキップするフィールド。後処理(post_*)で作り直すものを列挙する。"""
58
+
59
+ class_name_table: dict[str, str] = {
60
+ "StbSecColumn_RC_Circle": "StbSecColumnCircle",
61
+ "StbSecColumn_RC_Rect": "StbSecColumnRect",
62
+ "StbSecColumn_SRC_Circle": "StbSecColumnCircle",
63
+ "StbSecColumn_SRC_Rect": "StbSecColumnRect",
64
+ "StbSecColumn_SRC_SameShapeH": "StbSecSteelColumn_SRC_ShapeH",
65
+ "StbSecColumn_SRC_SameShapeBox": "StbSecSteelColumn_SRC_ShapeBox",
66
+ "StbSecColumn_SRC_SameShapePipe": "StbSecSteelColumn_SRC_ShapePipe",
67
+ "StbSecColumn_SRC_SameShapeCross": "StbSecSteelColumn_SRC_ShapeCross1",
68
+ "StbSecColumn_SRC_SameShapeT": "StbSecSteelColumn_SRC_ShapeT",
69
+ "StbSecColumn_SRC_NotSameShapeH": "StbSecSteelColumn_SRC_ShapeH",
70
+ "StbSecColumn_SRC_NotSameShapeBox": "StbSecSteelColumn_SRC_ShapeBox",
71
+ "StbSecColumn_SRC_NotSameShapePipe": "StbSecSteelColumn_SRC_ShapePipe",
72
+ "StbSecColumn_SRC_NotSameShapeCross": "StbSecSteelColumn_SRC_ShapeCross1",
73
+ "StbSecColumn_SRC_NotSameShapeT": "StbSecSteelColumn_SRC_ShapeT",
74
+ "StbSecColumn_SRC_ThreeTypesShapeH": "StbSecSteelColumn_SRC_ShapeH",
75
+ "StbSecColumn_SRC_ThreeTypesShapeBox": "StbSecSteelColumn_SRC_ShapeBox",
76
+ "StbSecColumn_SRC_ThreeTypesShapePipe": "StbSecSteelColumn_SRC_ShapePipe",
77
+ "StbSecColumn_SRC_ThreeTypesShapeCross": "StbSecSteelColumn_SRC_ShapeCross1",
78
+ "StbSecColumn_SRC_ThreeTypesShapeT": "StbSecSteelColumn_SRC_ShapeT",
79
+ "StbSecPileProduct": "StbSecPilePrecast",
80
+ "StbSecProductSlabDeck": "StbSecSlabDeckProduct",
81
+ }
82
+
83
+ attr_name_table: dict[str, dict[str, str]] = {
84
+ "StbColumn": {
85
+ "joint_top": "steel_switch_heigth_top",
86
+ "joint_bottom": "steel_switch_height_bottom",
87
+ },
88
+ "StbBrace": {
89
+ "offset_start_x": "aim_offset_start_x",
90
+ "offset_start_y": "aim_offset_start_y",
91
+ "offset_start_z": "aim_offset_start_z",
92
+ "offset_end_x": "aim_offset_end_x",
93
+ "offset_end_y": "aim_offset_end_y",
94
+ "offset_end_z": "aim_offset_end_z",
95
+ },
96
+ "StbJointShapeH": {
97
+ "strength_plate": "strength_plate_flange",
98
+ },
99
+ }
@@ -0,0 +1,58 @@
1
+ # Copyright 2025-2026 TAISEI CORPORATION
2
+ # SPDX-License-Identifier: MPL-2.0
3
+ # This Source Code Form is subject to the terms of the Mozilla Public
4
+ # License, v. 2.0. If a copy of the MPL was not distributed with this
5
+ # file, You can obtain one at https://mozilla.org/MPL/2.0/.
6
+
7
+ from stbkit.core.data_model import (
8
+ stb_v2_1_0,
9
+ stb_v2_1_1,
10
+ )
11
+ from stbkit.core.stb_reporting import Code, Phase, Reporter
12
+ from stbkit.core.validation._internal.validator import _validate
13
+
14
+ from .. import common
15
+ from . import tables
16
+ from .hooks import HOOKS
17
+
18
+
19
+ def upgrade_v2_1_0_to_v2_1_1(
20
+ stb: stb_v2_1_0.StBridge,
21
+ *,
22
+ reporter: Reporter,
23
+ ) -> stb_v2_1_1.StBridge:
24
+ reporter.info(
25
+ "---v2.1.0->v2.1.1変換処理開始---",
26
+ code=Code.PROGRESS_INFO,
27
+ phase=Phase.UPGRADE,
28
+ )
29
+ new_stb = common.convert_element(
30
+ stb,
31
+ stb_v2_1_1,
32
+ ignore_field=tables.ignore_field,
33
+ class_name_table=tables.class_name_table,
34
+ attr_name_table=tables.attr_name_table,
35
+ hooks=HOOKS,
36
+ reporter=reporter,
37
+ )
38
+
39
+ if isinstance(new_stb, stb_v2_1_1.StBridge):
40
+ reporter.info(
41
+ "---v2.1.0->v2.1.1変換処理完了---",
42
+ code=Code.PROGRESS_INFO,
43
+ phase=Phase.UPGRADE,
44
+ )
45
+ reporter.info(
46
+ "---v2.1.1バリデーション開始---",
47
+ code=Code.PROGRESS_INFO,
48
+ phase=Phase.UPGRADE,
49
+ )
50
+ _validate(reporter=reporter, stb=new_stb)
51
+ reporter.info(
52
+ "---v2.1.1バリデーション完了---",
53
+ code=Code.PROGRESS_INFO,
54
+ phase=Phase.UPGRADE,
55
+ )
56
+ return new_stb
57
+ else:
58
+ raise TypeError("ST-Bridgeのバージョン変換に失敗しました")
@@ -0,0 +1,32 @@
1
+ # Copyright 2025-2026 TAISEI CORPORATION
2
+ # SPDX-License-Identifier: MPL-2.0
3
+ # This Source Code Form is subject to the terms of the Mozilla Public
4
+ # License, v. 2.0. If a copy of the MPL was not distributed with this
5
+ # file, You can obtain one at https://mozilla.org/MPL/2.0/.
6
+
7
+ from stbkit.core.data_model import stb_v2_1_0
8
+ from stbkit.core.data_model.common import StBridgeElement
9
+ from stbkit.core.stb_reporting import Code, Phase, Reporter
10
+
11
+ from ..common import ElementHook
12
+
13
+
14
+ def post_sec_damping_device_friction(
15
+ before: StBridgeElement,
16
+ after: StBridgeElement,
17
+ *,
18
+ reporter: Reporter,
19
+ ) -> None:
20
+ if isinstance(before, stb_v2_1_0.StbSecDampingDeviceFriction):
21
+ reporter.error(
22
+ "StbSecDampingDeviceFrictionの子要素StbSecIsolatingDeviceSpecificationChangeは"
23
+ "XSDに誤記がありstbkitで扱えないため、値を破棄しました",
24
+ code=Code.UNEXPECTED_ERROR,
25
+ phase=Phase.UPGRADE,
26
+ stb_element=before,
27
+ )
28
+
29
+
30
+ HOOKS: dict[str, ElementHook] = {
31
+ "StbSecDampingDeviceFriction": post_sec_damping_device_friction,
32
+ }
@@ -0,0 +1,56 @@
1
+ # Copyright 2025-2026 TAISEI CORPORATION
2
+ # SPDX-License-Identifier: MPL-2.0
3
+ # This Source Code Form is subject to the terms of the Mozilla Public
4
+ # License, v. 2.0. If a copy of the MPL was not distributed with this
5
+ # file, You can obtain one at https://mozilla.org/MPL/2.0/.
6
+
7
+ ignore_field: dict[str, list[str]] = {
8
+ "StbSecDampingDeviceFriction": ["stb_sec_isolating_device_specification_change"]
9
+ }
10
+ """変換をスキップするフィールド。後処理(post_*)で作り直すものを列挙する。"""
11
+
12
+ class_name_table: dict[str, str] = {
13
+ "StbSecBuild-HAssymmetric": "StbSecBuild-HAsymmetric",
14
+ "StbConnectionStiffner": "StbConnectionStiffener",
15
+ "StbConnectionSpecStiffner": "StbConnectionSpecStiffener",
16
+ "StbStiffner": "StbStiffener",
17
+ "StbStiffners": "StbStiffeners",
18
+ }
19
+
20
+ attr_name_table: dict[str, dict[str, str]] = {
21
+ "StbApply_RC_FoundationGirder": {"allocation_rule_stirrup": "allocation_rule_hoop"},
22
+ "StbColumn": {
23
+ "steel_switch_heigth_top": "steel_switch_height_top",
24
+ },
25
+ "StbPost": {
26
+ "steel_switch_heigth_top": "steel_switch_height_top",
27
+ },
28
+ "StbConnectionSpecColumnH": {
29
+ "stiffner_size_up_connected": "stiffener_size_up_connected",
30
+ "stiffner_size_up_connecting": "stiffener_size_up_connecting",
31
+ },
32
+ "StbSecBarArrangementSlabDeck": {
33
+ "d_refactory_bar": "d_refractory_bar",
34
+ "strength_refactory_bar": "strength_refractory_bar",
35
+ },
36
+ "StbSecConnectionIsolatingDeviceSP": {
37
+ "shape_plate_start": "shape_plate_bearingside"
38
+ },
39
+ "StbSecPenetration_S_HiringExtension": {"protruce_stick": "protrude_stick"},
40
+ "StbSecPile_S_Connection": {
41
+ "d_pile_band": "d_pile_head",
42
+ "n_pile_band": "n_pile_head",
43
+ },
44
+ "StbSecSteelFigureDampingDeviceHistory": {
45
+ "kind_section_stiffner": "kind_section_stiffener",
46
+ "id_section_stiffner": "id_section_stiffener",
47
+ },
48
+ "StbWeldPartialPenetration": {
49
+ "shape_bavel": "shape_bevel",
50
+ "sid_bavel1": "side_bevel1",
51
+ "sid_bavel2": "side_bevel2",
52
+ },
53
+ "StbConnectionStiffner": {
54
+ "id_stiffner": "id_stiffener",
55
+ },
56
+ }
@@ -0,0 +1,196 @@
1
+ Metadata-Version: 2.4
2
+ Name: stbkit
3
+ Version: 0.1.0a9.dev1
4
+ Summary: ST-Bridgeを扱うライブラリSTB-KIT
5
+ Author-email: "STB-KIT Development Team (TAISEI CORPORATION)" <oss-dev@pub.taisei.co.jp>
6
+ License-Expression: MPL-2.0
7
+ Project-URL: Homepage, https://github.com/taisei-oss/stb-kit
8
+ Project-URL: Repository, https://github.com/taisei-oss/stb-kit
9
+ Project-URL: Issues, https://github.com/taisei-oss/stb-kit/issues
10
+ Project-URL: Changelog, https://github.com/taisei-oss/stb-kit/blob/main/CHANGELOG.md
11
+ Keywords: ST-Bridge,BIM,IFC,structural-engineering,stbridge
12
+ Classifier: Development Status :: 3 - Alpha
13
+ Classifier: Environment :: Console
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: Intended Audience :: Science/Research
16
+ Classifier: Natural Language :: Japanese
17
+ Classifier: Operating System :: OS Independent
18
+ Classifier: Programming Language :: Python :: 3
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Programming Language :: Python :: 3.13
21
+ Classifier: Programming Language :: Python :: 3.14
22
+ Classifier: Topic :: Multimedia :: Graphics :: 3D Modeling
23
+ Classifier: Topic :: Scientific/Engineering
24
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
25
+ Classifier: Topic :: Text Processing :: Markup :: XML
26
+ Classifier: Typing :: Typed
27
+ Requires-Python: >=3.12
28
+ Description-Content-Type: text/markdown
29
+ License-File: LICENSE
30
+ Requires-Dist: stbkit-core==0.1.0a9.dev1
31
+ Provides-Extra: xsd
32
+ Requires-Dist: xmlschema>=4.3.2; extra == "xsd"
33
+ Provides-Extra: ifc
34
+ Requires-Dist: ifcopenshell>=0.8.5; extra == "ifc"
35
+ Requires-Dist: numpy; extra == "ifc"
36
+ Provides-Extra: full
37
+ Requires-Dist: ifcopenshell>=0.8.5; extra == "full"
38
+ Requires-Dist: numpy; extra == "full"
39
+ Requires-Dist: xmlschema>=4.3.2; extra == "full"
40
+ Dynamic: license-file
41
+
42
+ # stbkit
43
+
44
+ ST-Bridgeを扱うためのツールキットです。
45
+
46
+ _An utility library for handling ST-Bridge._
47
+
48
+ ST-Bridgeは、日本の建築構造分野で広く利用されている建築構造データ交換フォーマットです。
49
+
50
+ _ST-Bridge is a structural data exchange format widely used in Japan._
51
+
52
+ 詳細はリポジトリの[README](https://github.com/taisei-oss/stb-kit)および[DISCLAIMER](https://github.com/taisei-oss/stb-kit/blob/main/DISCLAIMER.md)をご確認ください。
53
+
54
+ ## 概要
55
+
56
+ stbkitはST-Bridgeを扱うためのツールキットSTB-KITの統合パッケージです。
57
+
58
+ stbkit-core(データモデル・バリデーション)をコアの依存とし、主に以下の機能を提供します。
59
+
60
+ - CLIコマンドツール(フォーマット変換、バリデーション、差分検出等)
61
+ - PLYへの変換
62
+ - IFCへの変換(ifcopenshell利用)
63
+
64
+ 本パッケージは **安全性検証(構造安全性の保証・確認)や法令適合性判定を行いません**。
65
+ 出力結果の検証、専門家確認、適用法令の確認は利用者の責任です。
66
+
67
+ ## インストール(最小構成)
68
+
69
+ STB-KITは現在アルファ版です。通常のインストールではアルファ版が選ばれない場合があるため、次の例では`--pre`を指定します。利用するアルファ版の番号が分かっている場合は、`stbkit==バージョン番号`のようにバージョンを直接指定することもできます。
70
+
71
+ ```bash
72
+ python -m pip install --pre stbkit
73
+ ```
74
+
75
+ ## オプション依存について
76
+
77
+ - `ifc` : IFC関連の処理を利用する場合に必要です。
78
+ 例)IFC形式への変換など
79
+ インストール方法:
80
+ ```bash
81
+ python -m pip install --pre "stbkit[ifc]"
82
+ ```
83
+ ※300MB程度のディスク容量が必要です
84
+ - `xsd` : XSDによるスキーマ検証を利用する場合に必要です。
85
+ 例)`stbkit validate --schema` の指定など
86
+ インストール方法:
87
+ ```bash
88
+ python -m pip install --pre "stbkit[xsd]"
89
+ ```
90
+ - `full` : 全機能を利用する場合に必要です(xsd, ifc を含む)。
91
+ インストール方法:
92
+ ```bash
93
+ python -m pip install --pre "stbkit[full]"
94
+ ```
95
+ ※300MB程度のディスク容量が必要です
96
+
97
+ ## CLI使用例
98
+ - ヘルプを表示する
99
+
100
+ ```bash
101
+ stbkit -h
102
+ ```
103
+
104
+ - ST-Bridgeをのバリデーションを行う
105
+
106
+ ```bash
107
+ stbkit validate model.stb
108
+ ```
109
+
110
+ - ST-BridgeをPLYへ変換する
111
+
112
+ ```bash
113
+ stbkit convert model.stb -o model.ply
114
+ ```
115
+
116
+ - ST-BridgeをIFCへ変換する(依存パッケージのifcopenshellが必要です)
117
+
118
+ ```bash
119
+ stbkit convert model.stb -o model.ifc
120
+ ```
121
+
122
+ - 2つのST-BridgeのXML差分を表示する
123
+
124
+ ```bash
125
+ stbkit diff xml reference.stb target.stb
126
+ ```
127
+
128
+ - 標準入力から読み込む
129
+
130
+ ```bash
131
+ cat model.stb | stbkit validate -
132
+ ```
133
+ validateとconvertが対応しています。
134
+ diffは入力が2つあるため対応していません。
135
+
136
+ ## CLIの終了コード
137
+
138
+ 終了コードについてはstbkitのサブコマンドで、同系統の結果で同じになるようにしています。
139
+ 0と1は処理を正常に実行できた場合、2以降は処理が実行しきれなかった場合です。
140
+ 正常に完了したかどうかのみを判定したい場合は、終了コードが1以下かで判定できます。
141
+
142
+ |終了コード|意味|例|
143
+ |----|----|----|
144
+ |0|正常に終了|バリデーションOK、diffの差分無し、変換成功|
145
+ |1|正常に実行できたが、対象に問題または差分が見つかった|バリデーションNG、diffの差分有り, 変換は実行できたがエラーあり|
146
+ |2|引数や指定の間違いで、処理が開始できなかった|未知のオプション、非対応の変換、存在しないパスの指定|
147
+ |3|処理の実行中にエラーが生じた|XMLの構文エラー、サイズ上限の超過、比較の失敗|
148
+ |4|任意依存パッケージが導入されておらず、要求された処理が実行できない|ifcopenshell無しでのIFC変換、xmlschema無しでの`--schema`指定|
149
+ |130|中断終了|Ctrl+C|
150
+
151
+ 1は正常に実行した結果でエラーではないですが、検査や比較を行うツールの慣習に合わせているためです。
152
+ `grep`の一致なし、`diff`の差分あり、`git diff --exit-code`の差分有り等は1を返します。
153
+ エラーは2以降へ割り当て、正常実行の1がエラーと混ざらないようにしています。
154
+ 想定外例外も3を返すので、1はバリデーションや差分が正しくできた場合の結果となります。
155
+
156
+ `validate`でバリデーション不合格と実行中エラーが同時に生じた場合は、バリデーション不合格の問題を優先して1を返します。
157
+ ディレクトリ内をまとめて検査する場合、読み込めないファイルがあっても残りの検査は続行します。
158
+
159
+ `diff`で差分があっても0を返したい場合は、`--exit-zero`を指定します。
160
+
161
+ ## ドキュメント
162
+
163
+ ドキュメントは現在準備中です。公開時にこちらへリンクを掲載します。
164
+
165
+ - ユーザーガイド(準備中)
166
+ - バージョンアップ、IFC変換の仕様(準備中)
167
+
168
+ ## 依存ライブラリ・再配布に関する注意
169
+
170
+ - 一部の依存ライブラリはライセンスがLGPLです。本プロジェクトはLGPLライブラリを同梱して再配布しません。ライセンスに関しては利用者が確認してください。
171
+ - 詳細はリポジトリの[THIRD_PARTY_COMPLIANCE](https://github.com/taisei-oss/stb-kit/blob/main/THIRD_PARTY_COMPLIANCE.md)を参照してください。
172
+
173
+ ## 依存パッケージ(間接依存を除く)
174
+ ### 必須
175
+ - stbkit-core(MPL-2.0)
176
+ ### オプション
177
+ - xmlschema(MIT): XSDを利用したバリデーションで利用
178
+ - ifcopenshell(LGPL): IFCへの変換で利用
179
+ - numpy(BSD-3-Clause): ifcopenshellへ渡す回転用列の作成に利用
180
+
181
+ ## ライセンス
182
+
183
+ 本プロジェクトのソースコードは **Mozilla Public License 2.0 (MPL-2.0)** のもとで提供されます。
184
+
185
+ - MPL-2.0 はファイル単位のコピーレフトライセンスです。
186
+ - 本プロジェクトの改変部分(該当ファイル)を再配布する場合、ソース公開義務が発生します。
187
+ - 本ライブラリを利用するアプリケーションはOSSである必要はありません
188
+
189
+ 実務利用とオープンな改善の両立を意図したライセンスです。
190
+
191
+ ## 免責(重要)
192
+
193
+ 本ソフトウェアは現状有姿で提供され、いかなる保証もありません。
194
+ 詳細はリポジトリの[DISCLAIMER](https://github.com/taisei-oss/stb-kit/blob/main/DISCLAIMER.md)を参照してください。
195
+
196
+ Copyright 2026 TAISEI CORPORATION
@@ -0,0 +1,125 @@
1
+ stbkit/__main__.py,sha256=eIY2Uh5XGNSa5vRQuhKlb3iffy7xVmceeI_GhtqgtAI,338
2
+ stbkit/api/__init__.py,sha256=VASbGA9EtS8KMRFe84tMtASQeXXfFOy7CcIdafCR6Oc,1832
3
+ stbkit/api/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ stbkit/api/stb_latest.py,sha256=xYQA-qIXd_-y7bWSoSWIesB2bLFSRiZYd4zfn6WcRgM,320
5
+ stbkit/api/stb_v2_0_2.py,sha256=k6_AwUxhRgvebfqTBKDo5YcFSO57LXGgrS35SSUGtcc,485
6
+ stbkit/api/stb_v2_1_1.py,sha256=bzo_4TWLwJalfXsJq2LaQc1erUeytMt6fAw3FGpwDgU,365
7
+ stbkit/api/experimental/__init__.py,sha256=e92Zr2TC35oCtFgAFx_kcmmpNelS_PTGj4nSEAAM1FY,1056
8
+ stbkit/api/experimental/repository/__init__.py,sha256=iLlomtMiB-PSfyrNSvxITP_VRSw2WRg9P8bp-hOdFQQ,1573
9
+ stbkit/cli/__init__.py,sha256=kKyal6ZNAEK_UA8kOa0Koq6sAKnJxBx0tRhKC6NUaqw,775
10
+ stbkit/cli/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ stbkit/cli/_internal/cli_main.py,sha256=j_TQpCNfhWuMFCHMxwco625offcJFCo-Wnv5lxPf1og,4308
12
+ stbkit/cli/_internal/common.py,sha256=3Fq2ZltieX9d8QBj8Dog_VaMeHZgQ_GtU6hCGgOk2ms,4190
13
+ stbkit/cli/_internal/constants_exit_code.py,sha256=n-kjaddvO0TXzE0VXk5IpfQzr0QJNM4xVaUIJzgIXQE,2669
14
+ stbkit/cli/_internal/converter.py,sha256=DfIzinwgXYk0YrFw1RCecxlVga74rBN621cNv0M8_Ik,22093
15
+ stbkit/cli/_internal/diff.py,sha256=nqd7zduvvG_VqimAXguKbHwwVExVK33jdYr2gO8b2w4,7230
16
+ stbkit/cli/_internal/entry_points.py,sha256=FOFhWvq7WeLf7a2bE56IuuPWRBlnG56xRZIGnLaGRPo,992
17
+ stbkit/cli/_internal/global_parent.py,sha256=nyRrIocBNkkd1lcK8dle6Ala4vL2GPShxI2IROdmbZo,2293
18
+ stbkit/cli/_internal/show_versions.py,sha256=dT8RXZCTZP7rHNGHQ-KWVxM_U21N_xgGH2wCVYxHoqQ,1259
19
+ stbkit/cli/_internal/validate.py,sha256=sD77zkWhcXCd2JV6V_MvovvVU2QUfc9VtsiWlnlRzbk,11638
20
+ stbkit/cli/commands/convert.py,sha256=6_343uM-nFUD6suN-iT93US4gZHgjE5c6SWvgZwZBhM,500
21
+ stbkit/cli/commands/diff.py,sha256=IQRdQemnQmSkW06y71cvkL-wqiX0q4sQS7AJ3ljBJ_I,490
22
+ stbkit/cli/commands/validate.py,sha256=TDejKPygWfa2zSTfC1XyvUhftPVRdiEMFd74hOb5Qqk,498
23
+ stbkit/tools/__init__.py,sha256=hLwetoyIFnj63Pliilm_1Uig_UaZNrIIJf2tHHlpnE8,681
24
+ stbkit/tools/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
+ stbkit/tools/_internal/__init__.py,sha256=z-L3mjtR0NsjC82xf0bF7446A5aObfPVJ-2G5iU1aYY,276
26
+ stbkit/tools/_internal/constants.py,sha256=FfXlQV53Gz_lwu6GYkwyRqt6h8oRh-hRolG-tSl90TY,679
27
+ stbkit/tools/_internal/matrix.py,sha256=g_PtPiGP71ooDimO7vQttmOE5KyaHHj2MmSZN7OpCIk,1543
28
+ stbkit/tools/_internal/stb_io.py,sha256=5iR5wrfFb87lhqE8zYlEeZ1mPoQmak40okabWRQGCUE,4403
29
+ stbkit/tools/_internal/studio_report.py,sha256=h3MtdG2Fa0U0iPH1OBnB7KWCAfbfPz3OsCS457Carhc,1742
30
+ stbkit/tools/_internal/vectors.py,sha256=Fz_eWdEe8YMEEUFyFsiPFCVHhShoWAFS2HlRTNDKWr8,7410
31
+ stbkit/tools/_internal/data_model/building_geometry.py,sha256=77lz5k7Jzvp699bEZCaJEAadTievbAM69IVLK8gOGW4,46333
32
+ stbkit/tools/_internal/data_model/building_geometry_web.py,sha256=vP6SSyH4pdMKsJqEd7UaN3cS7_lTAEnka8lsNyVc4NQ,4472
33
+ stbkit/tools/_internal/data_model/element_data.py,sha256=KJVtrb1JWW34MjXvhtTQUnNPKv54jsyglobSBB2EIrw,2782
34
+ stbkit/tools/_internal/data_model/shape_data.py,sha256=1NgRwyx53Grkenwu1kT5OZ8lgyZoBpwgUBjd8etOfgs,38801
35
+ stbkit/tools/_internal/data_model/ifc_data/entity_data.py,sha256=qMKGkj1DoaWS73x1qDxqZwvnd1_GfmtZNFEXSlEJYwY,1891
36
+ stbkit/tools/_internal/data_model/ifc_data/entity_names.py,sha256=UqCuAa8r42cLeBhHbymwliZGkC_9qSqxL-C6ZH5gtrk,1278
37
+ stbkit/tools/_internal/diff/__init__.py,sha256=6qxs-6wDNL0ELG0gYYyXhKIgD5Ug5rErZkmh8_9nRvI,271
38
+ stbkit/tools/_internal/diff/common.py,sha256=D2-c7DTnhU46s6spZr_zqqZVZRsIt30uiRG7P1DJPr0,1418
39
+ stbkit/tools/_internal/diff/diff_xml.py,sha256=8g_dtkw9wH2Z2nMuuh5hmyzHfYDLeSUazOU488Jp834,23297
40
+ stbkit/tools/_internal/optional_dependencies/__init__.py,sha256=z-L3mjtR0NsjC82xf0bF7446A5aObfPVJ-2G5iU1aYY,276
41
+ stbkit/tools/_internal/optional_dependencies/ifc_common.py,sha256=fVl-6qrtAg5klhmw893NHqCcoXeKTDFDLeoJQfV2RRg,1069
42
+ stbkit/tools/_internal/optional_dependencies/ifc_pipeline.py,sha256=QZTqlZZC-mBq7Qcc9_OBuznIUJKOLWbMu0MQc0ydt0U,3981
43
+ stbkit/tools/_internal/optional_dependencies/ifc_to_building_geometry.py,sha256=yBa7TriwpuysFSS3aSjoAUGcMXuyZO62dRBuwIMxpHc,2361
44
+ stbkit/tools/_internal/optional_dependencies/ifc_exporter/ifc_entity_exporter.py,sha256=s7mSgiGZz6DTtlxgwj1Q1lvlu3id0_y7kl1OeK3yymE,19055
45
+ stbkit/tools/_internal/optional_dependencies/ifc_exporter/ifc_profile_exporter.py,sha256=zjLhBea_R_MOqKSEiSR0dD6rwK4U-_RLiYGSnC4Kd_A,10830
46
+ stbkit/tools/_internal/optional_dependencies/ifc_exporter/ifc_representation_exporter.py,sha256=G_hCF9ezJIqPNynzA8fl-i_d88xB9zPBJbqhUh0nM-Y,6347
47
+ stbkit/tools/_internal/stb_repair/_common.py,sha256=wZLXKhahqiLD7OwBp2BkSQxGXCvcdyHCSs7tdkjIGzY,621
48
+ stbkit/tools/_internal/stb_repair/_stb_repair.py,sha256=o5x9-ev8U-lpf_oJPOSzYnLbFfOeA5LzQnwUkzqoNL8,8004
49
+ stbkit/tools/_internal/stb_repair/_stb_v2_0_2_repair.py,sha256=tcQk_d27fqLZwVBdlBye3O2nl8D8q0kG5uOVFZlqb_s,2075
50
+ stbkit/tools/_internal/stb_repair/_stb_v2_1_0_repair.py,sha256=5GDVXi6lTF79uhfggYdhLKpoh-PMmOMZhj3k6uqQ5y0,4175
51
+ stbkit/tools/_internal/stb_repair/_stb_v2_1_1_repair.py,sha256=EiC67MTaiEtQORoSwIR7_2rJ6TOBvD6oeLneryQqK6I,4175
52
+ stbkit/tools/_internal/utils/atomic_writer.py,sha256=LwHMrgJJPNm7PGN4J0KcWvVw9KT9fveWc8FzYWLVHgA,1693
53
+ stbkit/tools/_internal/utils/float_rounding.py,sha256=eu4sLV2Jx-aVcG9zKQG0uWo_gg2BY0kVvXnVa94RyVQ,1418
54
+ stbkit/tools/_internal/utils/girder_utils.py,sha256=uL9y5h7Kkj_LM-6me2IYq8gz0aFzcPAPQd6MqjpNTkM,2991
55
+ stbkit/tools/_internal/utils/guid_utils.py,sha256=oF6ZhtOVwk2VW3M6iqOka5kKtdbARINdBSuz0Zm9OVY,914
56
+ stbkit/tools/_internal/utils/mesh_utils.py,sha256=TLPf9IxfB8g2Bo_QZlNKFbrjH7LWDA3q0R4JchafHlo,42972
57
+ stbkit/tools/_internal/utils/node_utils.py,sha256=jJrMQsg-8DdOFhSDdf8G3sW-6bwUiPB0qRAr6H3QWuc,1339
58
+ stbkit/tools/_internal/utils/unit_utils.py,sha256=uEzQcR1IPWPSxiO6a2IBHuhjT7cW6m-ZMgrDZjeUzfc,573
59
+ stbkit/tools/converters/__init__.py,sha256=RaFHYfyCEU7W9RzVVZlhvv-bbvaDKVLJanvgQggZzRE,1346
60
+ stbkit/tools/converters/_internal/__init__.py,sha256=6qxs-6wDNL0ELG0gYYyXhKIgD5Ug5rErZkmh8_9nRvI,271
61
+ stbkit/tools/converters/_internal/building_geometry_to_ply_text.py,sha256=YDDCS_4q9M9fvzOAHU-qQTMqqz5VkO-74h79d2p_hBs,1317
62
+ stbkit/tools/converters/_internal/coord_converter.py,sha256=3jMB605S9Gt0uHefVU_DXstFbJHlSutjR07_EThs63A,4961
63
+ stbkit/tools/converters/_internal/element_data_to_building_geometry.py,sha256=ZduPrSVlQCLlitYOfj9BJqm1-CYqqebKCF3TJhmcgu4,19484
64
+ stbkit/tools/converters/_internal/ifc_to_ply_text.py,sha256=PaeXGhIEdKo-cuT_d7EnRf3q_4SD5xC7Y6TZhdNiq-4,781
65
+ stbkit/tools/converters/_internal/name_converter.py,sha256=ka-i49Uownl2t2w1RAx8O6Z5PCbBuU_XVqIe1B_xFVY,902
66
+ stbkit/tools/converters/_internal/stb_to_building_geometry.py,sha256=crIqYDfFQhS6PQGdM4gBVRWvAGFlr3wHDd74JOGwNOg,1298
67
+ stbkit/tools/converters/_internal/stb_to_ply_text.py,sha256=1Y1hUoxIFFIjt19gP4Cgzebj6ohMjlWJlpCkbHTPWFI,859
68
+ stbkit/tools/converters/_internal/pipeline/__init__.py,sha256=z-L3mjtR0NsjC82xf0bF7446A5aObfPVJ-2G5iU1aYY,276
69
+ stbkit/tools/converters/_internal/pipeline/data.py,sha256=Pr7cTNbzbcfRpPGDmFCY5NTimSjN-1j4Kyj4lIJ6oEY,5137
70
+ stbkit/tools/converters/_internal/pipeline/execution.py,sha256=EmStcY2nDaXo0oi3iKWffk2uG0jrJA3xMU3245xPdIU,18931
71
+ stbkit/tools/converters/_internal/pipeline/ply_pipeline.py,sha256=YcUziJnXnPa8Kv-4CpZPLT_0hEFx_as2wtzs2I9JTGk,1985
72
+ stbkit/tools/converters/_internal/pipeline/stb_pipeline.py,sha256=0CI5i1Ns5sTNUzFBBeRz1NSP1yqTqEcB3uKpSKVl_2E,7134
73
+ stbkit/tools/converters/_internal/pipeline/stb_pipeline_latest.py,sha256=cy3z24T-PT_yK6Flco5OvWmPL4y0whgNoTFDv83h53k,1451
74
+ stbkit/tools/converters/_internal/pipeline/step.py,sha256=G6Yr3tVGu-c-5iquvkM3Na4yXRlhf_I6L83I-ajcrj0,4493
75
+ stbkit/tools/converters/_internal/stb_latest_to_element_data/__init__.py,sha256=vyXxwZiyvE4U-5sIEcF7AIluOjc0X6XCW0wFLaqRe-Y,519
76
+ stbkit/tools/converters/_internal/stb_latest_to_element_data/_stb_latest_to_element_data.py,sha256=zsnz8Yu9qb3Aa_q7pO3xYOrfs1qMJ3kbEiWxiHL-37k,5508
77
+ stbkit/tools/converters/_internal/stb_latest_to_element_data/open.py,sha256=hVKBA2oQng6XlJjIMrGWPvScAOOO9AMeiLqyxlDcT6M,2420
78
+ stbkit/tools/converters/_internal/stb_latest_to_element_data/member/member_footing.py,sha256=DJ8xONYpK3xHj2OOsExIWRX_HMjTkAqqmzc_o1Kh010,2003
79
+ stbkit/tools/converters/_internal/stb_latest_to_element_data/member/member_line.py,sha256=yfY8c1UsEKobQlS7awy3FZkipmY6v2nAkdegCi675yA,18998
80
+ stbkit/tools/converters/_internal/stb_latest_to_element_data/member/member_pile.py,sha256=pFRQCQtAj9CiOc_Pwn4ycpfHsTih7AO6jvArxhGlsE8,3979
81
+ stbkit/tools/converters/_internal/stb_latest_to_element_data/member/member_plane.py,sha256=zIcYf9LkJKh5yV32kUXDFEYJ2dwkeSUYD6qMZJKitgU,3717
82
+ stbkit/tools/converters/_internal/stb_latest_to_element_data/section/sec.py,sha256=CzQlwXUXBYAObRQd-CBmiMxoV602l5XD8izTzqIPLvs,7567
83
+ stbkit/tools/converters/_internal/stb_latest_to_element_data/section/sec_beam_rc.py,sha256=YQLOLHLJXsOVcY3mYnYJ3sw6UPZaCOdEsdzATXol_TU,2084
84
+ stbkit/tools/converters/_internal/stb_latest_to_element_data/section/sec_beam_s.py,sha256=L3ZgXwnLFVAV_cL-PWbns68UeMab1V2LxBov3UZumsk,3735
85
+ stbkit/tools/converters/_internal/stb_latest_to_element_data/section/sec_beam_src.py,sha256=UOLj-bGz--YgCxkD0JWyUYjRmq2KC18KyrxELa17qB0,966
86
+ stbkit/tools/converters/_internal/stb_latest_to_element_data/section/sec_brace_s.py,sha256=ugiTRdPazi9iUrTzyMqIeVrSaKnXKUMJH9KF844PSS4,1575
87
+ stbkit/tools/converters/_internal/stb_latest_to_element_data/section/sec_column_cft.py,sha256=6yREddz-sk_-0FEUA9rojzhIFcooMKaccIy_buxXaSQ,7534
88
+ stbkit/tools/converters/_internal/stb_latest_to_element_data/section/sec_column_rc.py,sha256=PxXV-pvepxd50MwQ23M2dj0bi8bfn4gvLZWAyt_g7Mw,1249
89
+ stbkit/tools/converters/_internal/stb_latest_to_element_data/section/sec_column_s.py,sha256=KhQJ_3WvSGRtSEY0DUpGXygvJhbkHZGjuFt10eGD6Ww,5087
90
+ stbkit/tools/converters/_internal/stb_latest_to_element_data/section/sec_column_src.py,sha256=Qs07zs-7Pglx4_HPbxtKVJ5n-RCehCAz1PI9_5kcxEY,6265
91
+ stbkit/tools/converters/_internal/stb_latest_to_element_data/section/sec_foundation.py,sha256=qjHthHJlEVbf9KNC5xhJM1PgwWuGOwAs05GAvaERX5U,8842
92
+ stbkit/tools/converters/_internal/stb_latest_to_element_data/section/sec_parapet_rc.py,sha256=FfGHC6nTxoOrcGe1VnWcgSmHEhFJbfR-6QOiO1tnIvE,1764
93
+ stbkit/tools/converters/_internal/stb_latest_to_element_data/section/sec_pile_rc.py,sha256=Xl1gUQz9ReenpVOFh0BKbPBj3DfWihavIeE2IWow35E,4226
94
+ stbkit/tools/converters/_internal/stb_latest_to_element_data/section/sec_pile_s.py,sha256=0MxDtaNzEPQ9knI3lqI2UUvKuhpVji2Wd-vA3g4RCiE,3910
95
+ stbkit/tools/converters/_internal/stb_latest_to_element_data/section/sec_steel.py,sha256=7nYU7g4LCb7N5iGF6ezh3PGZWrH8-ct-6Q8iaA3jzWo,14284
96
+ stbkit/tools/converters/_internal/stb_to_ifc_data/__init__.py,sha256=z-L3mjtR0NsjC82xf0bF7446A5aObfPVJ-2G5iU1aYY,276
97
+ stbkit/tools/converters/_internal/stb_to_ifc_data/_stb_to_ifc_data.py,sha256=3G3Jvt_4HYmIQtVEUU4ZdjzcZPPQh8Kas3u5MsuekrI,1989
98
+ stbkit/tools/converters/_internal/stb_to_ifc_data/convert_option.py,sha256=_ilb81qZFHhaTin20KhfALnH2eWbAeLAyOYrbmYMo3E,647
99
+ stbkit/tools/upgrade/__init__.py,sha256=1ZfC0ljnKUBiYmbK0yq_UAfD8yA3y9YPqm2VVdA1rx4,456
100
+ stbkit/tools/upgrade/_internal/__init__.py,sha256=6qxs-6wDNL0ELG0gYYyXhKIgD5Ug5rErZkmh8_9nRvI,271
101
+ stbkit/tools/upgrade/_internal/common.py,sha256=8Crmpx1Xetd6zzbmgDVQq6G-uBSumb2psCSVyyb192Q,8054
102
+ stbkit/tools/upgrade/_internal/upgrade.py,sha256=noVZDs5pyIxV0S2LcIN3nvrVAe9ghEqnm9svvk88vN4,7300
103
+ stbkit/tools/upgrade/_internal/v2_0_2_to_v2_1_0/__init__.py,sha256=QemfZNNA6Kdl9G10sR7NvIo2rqg2iTcx5rLQWKoCp2k,1815
104
+ stbkit/tools/upgrade/_internal/v2_0_2_to_v2_1_0/hooks.py,sha256=J-mWKijRhngNJFrfxu7YWn2Iw8tODMDANWJ_bfH6Qow,932
105
+ stbkit/tools/upgrade/_internal/v2_0_2_to_v2_1_0/post.py,sha256=83bZt_OrNToNhVIsBrbT-oNRRj6yeX16CfrrGxyHg0o,1748
106
+ stbkit/tools/upgrade/_internal/v2_0_2_to_v2_1_0/tables.py,sha256=QMic8XPPoGFvgyLImNtqwfYCs9bZNevy8-IaeHbt7bQ,4029
107
+ stbkit/tools/upgrade/_internal/v2_0_2_to_v2_1_0/hook_funcs/hook_common.py,sha256=7RgLTzDL5_3ZS3U3YdC6HJyDtQxhpvk_DIUuVqr1A5s,2473
108
+ stbkit/tools/upgrade/_internal/v2_0_2_to_v2_1_0/hook_funcs/hook_joint_beam_shape_h.py,sha256=3GaOZRQBy64CpHFTnXEjQ2yAq0ODlSt0R4RvEmSoWB0,1945
109
+ stbkit/tools/upgrade/_internal/v2_0_2_to_v2_1_0/hook_funcs/hook_sec_pile_rc.py,sha256=ChPiSWM89dQ8wYaM8zhnGECHG2wqlCb84WBPa7GP2T4,4869
110
+ stbkit/tools/upgrade/_internal/v2_0_2_to_v2_1_0/hook_funcs/hook_sec_pile_s.py,sha256=wBJv3LPhuQy-9rKTXPWun2LUssj4rqjX-39n0lwxDwA,3299
111
+ stbkit/tools/upgrade/_internal/v2_0_2_to_v2_1_0/hook_funcs/hook_sec_slab_deck.py,sha256=RymcHKds73kgT4XupXQP2PRF9FODx_u_m6dcaniaEEk,2436
112
+ stbkit/tools/upgrade/_internal/v2_0_2_to_v2_1_0/hook_funcs/hook_sec_slab_rc.py,sha256=G9tpn2iBuPwV8MOpeW-5fa-qXFmytIpvMFuLlLxFHL8,4765
113
+ stbkit/tools/upgrade/_internal/v2_0_2_to_v2_1_0/hook_funcs/post_girder.py,sha256=8K46dY8pZkvRieVqEabEzQqa6Td2HBU7oSkbUjyu-xo,5904
114
+ stbkit/tools/upgrade/_internal/v2_0_2_to_v2_1_0/hook_funcs/post_open.py,sha256=vYr_3IbVn7CbBtEC7qjUVorZIKpSt_S-9AnxQLhVMRY,4270
115
+ stbkit/tools/upgrade/_internal/v2_0_2_to_v2_1_0/hook_funcs/post_sec_beam_rc.py,sha256=d9T7NoWESkPlGYIERwUzPfqHXbshmm2bTabpLlSiLBs,7940
116
+ stbkit/tools/upgrade/_internal/v2_0_2_to_v2_1_0/hook_funcs/post_sec_beam_s.py,sha256=znPVZ3JpBN2KfydIzrfXbzOAl3MSBPaJtB7XquoWpX8,49041
117
+ stbkit/tools/upgrade/_internal/v2_1_0_to_v2_1_1/__init__.py,sha256=mLMkRbsxX7mYnxqY-x6mcg3j6FuUyetUuXm7tWj5s8s,1751
118
+ stbkit/tools/upgrade/_internal/v2_1_0_to_v2_1_1/hooks.py,sha256=YIupVyOfPdDJq6EQVVKuC0E1iOT2WiuYAxvkAi-ukSQ,1115
119
+ stbkit/tools/upgrade/_internal/v2_1_0_to_v2_1_1/tables.py,sha256=VELblTXsiIog-0IPlIuMD0mnYs4E3XiQh9CsfE54f_s,2148
120
+ stbkit-0.1.0a9.dev1.dist-info/licenses/LICENSE,sha256=Pz2eACSxkhsGfW9_iN60pgy-enjnbGTj8df8O3ebnQQ,16726
121
+ stbkit-0.1.0a9.dev1.dist-info/METADATA,sha256=IKxQ4Lmg8kL2Vry4Fu3QsZsWVmgAO8mCYDvY35C-R18,8569
122
+ stbkit-0.1.0a9.dev1.dist-info/WHEEL,sha256=YVMoNqKzERt-wjUZwJ33xBGAwnFl-4cqbYkTtWa4itE,91
123
+ stbkit-0.1.0a9.dev1.dist-info/entry_points.txt,sha256=lMAe7lV8iKCCyfdcEC7ha0-hNnOh_syL4s7ttEY1OpI,48
124
+ stbkit-0.1.0a9.dev1.dist-info/top_level.txt,sha256=XQu5_dcKxDeBuVZhisTUGhZU1ECFMdDiUv6mSiwkSw0,7
125
+ stbkit-0.1.0a9.dev1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (84.0.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ stbkit = stbkit.__main__:main