OpenGeodeWeb-Back 5.2.0__py3-none-any.whl → 5.3.0__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.
- {OpenGeodeWeb_Back-5.2.0.dist-info → OpenGeodeWeb_Back-5.3.0.dist-info}/METADATA +1 -1
- {OpenGeodeWeb_Back-5.2.0.dist-info → OpenGeodeWeb_Back-5.3.0.dist-info}/RECORD +6 -6
- opengeodeweb_back/geode_objects.py +42 -0
- {OpenGeodeWeb_Back-5.2.0.dist-info → OpenGeodeWeb_Back-5.3.0.dist-info}/LICENSE +0 -0
- {OpenGeodeWeb_Back-5.2.0.dist-info → OpenGeodeWeb_Back-5.3.0.dist-info}/WHEEL +0 -0
- {OpenGeodeWeb_Back-5.2.0.dist-info → OpenGeodeWeb_Back-5.3.0.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: OpenGeodeWeb-Back
|
3
|
-
Version: 5.
|
3
|
+
Version: 5.3.0
|
4
4
|
Summary: OpenGeodeWeb-Back is an open source framework that proposes handy python functions and wrappers for the OpenGeode ecosystem
|
5
5
|
Author-email: Geode-solutions <team-web@geode-solutions.com>
|
6
6
|
Project-URL: Homepage, https://github.com/Geode-solutions/OpenGeodeWeb-Back
|
@@ -1,7 +1,7 @@
|
|
1
1
|
opengeodeweb_back/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
2
|
opengeodeweb_back/app_config.py,sha256=bgn31kmMUhn6PwqpENPPQfsRsuXqnYgqMaV0_OoenDw,721
|
3
3
|
opengeodeweb_back/geode_functions.py,sha256=m1icB_E9SctF6LFoUDLxE0WseDy6wc1qNV6KeuBeEGo,8716
|
4
|
-
opengeodeweb_back/geode_objects.py,sha256
|
4
|
+
opengeodeweb_back/geode_objects.py,sha256=-dgpfzZ7Ep0usBAJUPxzWuUcVcMB_1F0R6IyxnTl0Os,22478
|
5
5
|
opengeodeweb_back/utils_functions.py,sha256=18kp8M3bnrlu692qj-ymJJPA1hTpPjx_xl9oVi5qGyg,4120
|
6
6
|
opengeodeweb_back/routes/blueprint_routes.py,sha256=X_VF8pfxxci8Ek37uLjIDJTh9ItNiufd52hoBfbi9q8,8596
|
7
7
|
opengeodeweb_back/routes/schemas/allowed_files.json,sha256=pRsGf39LiJpl3zEGLg4IqvRtm7iUx3Wq4Tb4tSFXGV0,234
|
@@ -13,8 +13,8 @@ opengeodeweb_back/routes/schemas/missing_files.json,sha256=tJVdSM3CqYFZRC6eNW6Q3
|
|
13
13
|
opengeodeweb_back/routes/schemas/ping.json,sha256=MhI5jtrjMsAsfIKEzdY8p1HyV9xv4O3hYfESWw6tkyE,162
|
14
14
|
opengeodeweb_back/routes/schemas/save_viewable_file.json,sha256=7BXO8vsQrmqyEQ2uycm2Ift_EY7a0KocvnGEjYrQFcQ,368
|
15
15
|
opengeodeweb_back/routes/schemas/upload_file.json,sha256=sE6bxz3mJbSZlGmrnR_hZmcx0dvZGn3Wpnn6szRPxXQ,186
|
16
|
-
OpenGeodeWeb_Back-5.
|
17
|
-
OpenGeodeWeb_Back-5.
|
18
|
-
OpenGeodeWeb_Back-5.
|
19
|
-
OpenGeodeWeb_Back-5.
|
20
|
-
OpenGeodeWeb_Back-5.
|
16
|
+
OpenGeodeWeb_Back-5.3.0.dist-info/LICENSE,sha256=LoTB-aqQvzTGxoTRXNnhNV0LKiqdk2bQv6MB34l8zkI,1079
|
17
|
+
OpenGeodeWeb_Back-5.3.0.dist-info/METADATA,sha256=Qd5kdIte8aHQKLJX62ns3mbJTupxG_0bxaR39kBU3uk,3082
|
18
|
+
OpenGeodeWeb_Back-5.3.0.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
19
|
+
OpenGeodeWeb_Back-5.3.0.dist-info/top_level.txt,sha256=tN1FZeLIVBrdja2-pbmhg5-tK-JILmmT9OeIBnhlUrQ,18
|
20
|
+
OpenGeodeWeb_Back-5.3.0.dist-info/RECORD,,
|
@@ -122,6 +122,48 @@ def geode_objects_dict():
|
|
122
122
|
"save_viewable": g_v.save_viewable_hybrid_solid3D,
|
123
123
|
"inspector": og_inspector.inspect_solid3D,
|
124
124
|
},
|
125
|
+
"ImplicitCrossSection": {
|
126
|
+
"parent": "CrossSection",
|
127
|
+
"input_factory": og_gs.ImplicitCrossSectionInputFactory,
|
128
|
+
"output_factory": og_gs.ImplicitCrossSectionOutputFactory,
|
129
|
+
"missing_files": og_gs.check_implicit_cross_section_missing_files,
|
130
|
+
"is_loadable": og_gs.is_implicit_cross_section_loadable,
|
131
|
+
"load": og_gs.load_implicit_cross_section,
|
132
|
+
"is_saveable": og_gs.is_implicit_cross_section_saveable,
|
133
|
+
"save": og_gs.save_implicit_cross_section,
|
134
|
+
"builder": og_gs.ImplicitCrossSectionBuilder,
|
135
|
+
"crs": {
|
136
|
+
"assign": og_gs.assign_section_geographic_coordinate_system_info,
|
137
|
+
"convert": og_gs.convert_section_coordinate_reference_system,
|
138
|
+
"create": og.create_section_coordinate_system,
|
139
|
+
},
|
140
|
+
"is_model": True,
|
141
|
+
"is_3D": False,
|
142
|
+
"is_viewable": True,
|
143
|
+
"save_viewable": g_v.save_viewable_implicit_cross_section,
|
144
|
+
"inspector": og_inspector.inspect_section,
|
145
|
+
},
|
146
|
+
"ImplicitStructuralModel": {
|
147
|
+
"parent": "StructuralModel",
|
148
|
+
"input_factory": og_gs.ImplicitStructuralModelInputFactory,
|
149
|
+
"output_factory": og_gs.ImplicitStructuralModelOutputFactory,
|
150
|
+
"missing_files": og_gs.check_implicit_structural_model_missing_files,
|
151
|
+
"is_loadable": og_gs.is_implicit_structural_model_loadable,
|
152
|
+
"load": og_gs.load_implicit_structural_model,
|
153
|
+
"is_saveable": og_gs.is_implicit_structural_model_saveable,
|
154
|
+
"save": og_gs.save_implicit_structural_model,
|
155
|
+
"builder": og_gs.ImplicitStructuralModelBuilder,
|
156
|
+
"crs": {
|
157
|
+
"assign": og_gs.assign_brep_geographic_coordinate_system_info,
|
158
|
+
"convert": og_gs.convert_brep_coordinate_reference_system,
|
159
|
+
"create": og.create_brep_coordinate_system,
|
160
|
+
},
|
161
|
+
"is_model": True,
|
162
|
+
"is_3D": True,
|
163
|
+
"is_viewable": True,
|
164
|
+
"save_viewable": g_v.save_viewable_implicit_structural_model,
|
165
|
+
"inspector": og_inspector.inspect_brep,
|
166
|
+
},
|
125
167
|
"LightRegularGrid2D": {
|
126
168
|
"input_factory": og.LightRegularGridInputFactory2D,
|
127
169
|
"output_factory": og.LightRegularGridOutputFactory2D,
|
File without changes
|
File without changes
|
File without changes
|