Skip to content

Commit

Permalink
Merge pull request #98 from Geode-solutions/next
Browse files Browse the repository at this point in the history
Next
  • Loading branch information
JulienChampagnol authored Oct 15, 2024
2 parents f0214f4 + 99e6f66 commit ffe0191
Show file tree
Hide file tree
Showing 5 changed files with 61 additions and 1 deletion.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
# CHANGELOG


## v5.3.0-rc.1 (2024-10-15)

### Features

* feat(io): add io & mappings for ImplicitStructuralModel & ImplicitCrossSection
closes #94 ([`1c0cfa5`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/1c0cfa5051c0931fdbace2ec0c58782d9b5f3c10))

### Unknown

* Merge pull request #97 from Geode-solutions/feat/implicit_cross_section_and_structural_model

feat(io): add io & mappings for ImplicitStructuralModel & ImplicitCro… ([`25723a4`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/25723a4f4c1fe04a7473dfc0b6e9132eab30a8e8))

* save_viewable_implicit_structural_model ([`0cceb4a`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/0cceb4afd051b8c3a756571bc0578d1a27431c6c))

* ([`000b1f1`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/000b1f1d1c57b4ca77458addfa5919d55101cdc9))


## v5.2.0 (2024-10-14)

### Unknown
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "OpenGeodeWeb-Back"
version = "5.2.0"
version = "5.3.0-rc.1"
dynamic = ["dependencies"]
authors = [
{ name="Geode-solutions", email="[email protected]" },
Expand Down
42 changes: 42 additions & 0 deletions src/opengeodeweb_back/geode_objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,48 @@ def geode_objects_dict():
"save_viewable": g_v.save_viewable_hybrid_solid3D,
"inspector": og_inspector.inspect_solid3D,
},
"ImplicitCrossSection": {
"parent": "CrossSection",
"input_factory": og_gs.ImplicitCrossSectionInputFactory,
"output_factory": og_gs.ImplicitCrossSectionOutputFactory,
"missing_files": og_gs.check_implicit_cross_section_missing_files,
"is_loadable": og_gs.is_implicit_cross_section_loadable,
"load": og_gs.load_implicit_cross_section,
"is_saveable": og_gs.is_implicit_cross_section_saveable,
"save": og_gs.save_implicit_cross_section,
"builder": og_gs.ImplicitCrossSectionBuilder,
"crs": {
"assign": og_gs.assign_section_geographic_coordinate_system_info,
"convert": og_gs.convert_section_coordinate_reference_system,
"create": og.create_section_coordinate_system,
},
"is_model": True,
"is_3D": False,
"is_viewable": True,
"save_viewable": g_v.save_viewable_implicit_cross_section,
"inspector": og_inspector.inspect_section,
},
"ImplicitStructuralModel": {
"parent": "StructuralModel",
"input_factory": og_gs.ImplicitStructuralModelInputFactory,
"output_factory": og_gs.ImplicitStructuralModelOutputFactory,
"missing_files": og_gs.check_implicit_structural_model_missing_files,
"is_loadable": og_gs.is_implicit_structural_model_loadable,
"load": og_gs.load_implicit_structural_model,
"is_saveable": og_gs.is_implicit_structural_model_saveable,
"save": og_gs.save_implicit_structural_model,
"builder": og_gs.ImplicitStructuralModelBuilder,
"crs": {
"assign": og_gs.assign_brep_geographic_coordinate_system_info,
"convert": og_gs.convert_brep_coordinate_reference_system,
"create": og.create_brep_coordinate_system,
},
"is_model": True,
"is_3D": True,
"is_viewable": True,
"save_viewable": g_v.save_viewable_implicit_structural_model,
"inspector": og_inspector.inspect_brep,
},
"LightRegularGrid2D": {
"input_factory": og.LightRegularGridInputFactory2D,
"output_factory": og.LightRegularGridOutputFactory2D,
Expand Down
Binary file added tests/data/test.og_istrm
Binary file not shown.
Binary file added tests/data/test.og_ixsctn
Binary file not shown.

0 comments on commit ffe0191

Please sign in to comment.