Skip to content

Commit 2e3ff77

Browse files
committed
[ENH] Update parameters in geology vector model
The borehole radius and units limit for thresholding were adjusted in the structural modeling scripts for improved accuracy. The element dictionary was also updated by commenting out two elements. The initialization API now retrieves bottom coordinates for each lithification instead of top coordinates, and the methods get_top_coords_for_each_lith() and get_bottom_coords_for_each_lith() were added to the Borehole class for more flexibility when analysing geological data.
1 parent 7949a24 commit 2e3ff77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gempy/API/initialization_API.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def structural_elements_from_borehole_set(
9898
borehole_set: ss.core.geological_formats.BoreholeSet
9999

100100
elements = []
101-
component_lith: dict[Hashable, np.ndarray] = borehole_set.get_top_coords_for_each_lith()
101+
component_lith: dict[Hashable, np.ndarray] = borehole_set.get_bottom_coords_for_each_lith()
102102

103103
for name, properties in elements_dict.items():
104104
top_coordinates = component_lith.get(properties['id'])

0 commit comments

Comments
 (0)