resqpy 4.18.8__py3-none-any.whl → 4.18.9__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.
- resqpy/__init__.py +1 -1
- resqpy/surface/_surface.py +27 -0
- {resqpy-4.18.8.dist-info → resqpy-4.18.9.dist-info}/METADATA +1 -1
- {resqpy-4.18.8.dist-info → resqpy-4.18.9.dist-info}/RECORD +6 -6
- {resqpy-4.18.8.dist-info → resqpy-4.18.9.dist-info}/LICENSE +0 -0
- {resqpy-4.18.8.dist-info → resqpy-4.18.9.dist-info}/WHEEL +0 -0
resqpy/__init__.py
CHANGED
resqpy/surface/_surface.py
CHANGED
@@ -1169,6 +1169,33 @@ class Surface(rqsb.BaseSurface):
|
|
1169
1169
|
|
1170
1170
|
return resampled
|
1171
1171
|
|
1172
|
+
def resample_surface_unique_edges(self):
|
1173
|
+
"""Returns a new surface, with the same model, title and crs as the original surface, but with additional refined points along original surface tears and edges.
|
1174
|
+
|
1175
|
+
Each edge forming a tear or outer edge in the surface will have 3 additional points added, with 2 additional points on each edge of the original triangle. The output surface is re-triangulated using these new points (tears will be filled)
|
1176
|
+
|
1177
|
+
returns:
|
1178
|
+
resqpy.surface.Surface object with extra_metadata ('unique edges resampled from surface': uuid), where uuid is for the original surface uuid
|
1179
|
+
"""
|
1180
|
+
_, op = self.triangles_and_points()
|
1181
|
+
ref = self.resampled_surface() # resample the original surface
|
1182
|
+
rt, rp = ref.triangles_and_points()
|
1183
|
+
de, dc = ref.distinct_edges_and_counts() # find the distinct edges and counts for the resampled surface
|
1184
|
+
de_edge = de[dc == 1] # find edges that only appear once - tears or surface edges
|
1185
|
+
edge_tri_index = np.sum(np.isin(rt, de_edge), axis = 1) == 2
|
1186
|
+
edge_tris = rp[rt[edge_tri_index]]
|
1187
|
+
mid = np.mean(rp[de_edge], axis = 1) # get the midpoint of each surface edge
|
1188
|
+
edge_ref_points = np.unique(np.concatenate([op, edge_tris.reshape(-1, 3), mid]), axis = 0) # combine all points
|
1189
|
+
|
1190
|
+
points = rqs.PointSet(self.model, points_array = edge_ref_points, title = self.title,
|
1191
|
+
crs_uuid = self.crs_uuid) # generate a pointset from these points
|
1192
|
+
|
1193
|
+
output = Surface(self.model, point_set = points,
|
1194
|
+
extra_metadata = {'resampled from surface': str(self.uuid)
|
1195
|
+
}) # return a surface with generated from these points
|
1196
|
+
|
1197
|
+
return output
|
1198
|
+
|
1172
1199
|
def write_hdf5(self, file_name = None, mode = 'a'):
|
1173
1200
|
"""Create or append to an hdf5 file, writing datasets for the triangulated patches after caching arrays.
|
1174
1201
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
resqpy/__init__.py,sha256=
|
1
|
+
resqpy/__init__.py,sha256=lB-7ZcQp9dDxWaqMRVMU8EvWJuaaUZH9Pp6m7NuwNiQ,556
|
2
2
|
resqpy/crs.py,sha256=R7DfcTP5xGv5pu9Y8RHA2WVM9DjBCSVMoHcz4RmQ7Yw,27646
|
3
3
|
resqpy/derived_model/__init__.py,sha256=NFvMSOKI3cxmH7lAbddV43JjoUj-r2G7ExEfOqinD1I,1982
|
4
4
|
resqpy/derived_model/_add_edges_per_column_property_array.py,sha256=cpW3gwp6MSYIrtvFmCjoJXcyUsgGuCDbgmwlJCJebUs,6410
|
@@ -163,7 +163,7 @@ resqpy/surface/_base_surface.py,sha256=LsWrDrbuuaEVRgf2Dlbc-6ZvGQpjtrKuxF7Jjebvl
|
|
163
163
|
resqpy/surface/_combined_surface.py,sha256=8TnNbSywjej6tW_vRr5zoVgBbvnadCaqWk6WyHWHTYQ,3082
|
164
164
|
resqpy/surface/_mesh.py,sha256=yEFldNWT2g8MCGcU4mTeWzDrLHHGLLGLIle1gAjJ_lg,42352
|
165
165
|
resqpy/surface/_pointset.py,sha256=niTkBik9hAvqrY8340K1TRG7mg4FMQbbp12WZiiXPMs,27416
|
166
|
-
resqpy/surface/_surface.py,sha256=
|
166
|
+
resqpy/surface/_surface.py,sha256=pGVpZiIoaZm7UA26VnEEthMdKr3XtNIIhWFV8mOVDXY,73491
|
167
167
|
resqpy/surface/_tri_mesh.py,sha256=EmV4FhyjuusQFruW1SseufbnHF5YFoJ6Uvb07UJbH6s,26609
|
168
168
|
resqpy/surface/_tri_mesh_stencil.py,sha256=eXt_HIKvsXGsjQ7nm_NbozR6ProQxPbeO52r79j80ig,16087
|
169
169
|
resqpy/surface/_triangulated_patch.py,sha256=FKn_Irzp4aLFkkN_-tx1MLMKjEAiOLE8636sOA481TQ,26802
|
@@ -194,7 +194,7 @@ resqpy/well/_wellbore_marker_frame.py,sha256=xvYH2_2Ie3a18LReFymbUrZboOx7Rhv5DOD
|
|
194
194
|
resqpy/well/blocked_well_frame.py,sha256=Rx8jwkCjchseDZaTttPkA1-f6l7W6vRGrxWtDHlEPx8,22560
|
195
195
|
resqpy/well/well_object_funcs.py,sha256=tWufc8wahihzMEO-Ou1dncIttrf4bNo1qmLgh3I2pOM,24717
|
196
196
|
resqpy/well/well_utils.py,sha256=zwpYjT85nXAwWBhYB1Pygu2SgouZ-44k6hEOnpoMfBI,5969
|
197
|
-
resqpy-4.18.
|
198
|
-
resqpy-4.18.
|
199
|
-
resqpy-4.18.
|
200
|
-
resqpy-4.18.
|
197
|
+
resqpy-4.18.9.dist-info/LICENSE,sha256=2duHPIkKQyESMdQ4hKjL8CYEsYRHXaYxt0YQkzsUYE4,1059
|
198
|
+
resqpy-4.18.9.dist-info/METADATA,sha256=cgQ2tIjpkdQz_Eu2ccGfKDuF_zcmf6K2QIZmL4R8oIs,4028
|
199
|
+
resqpy-4.18.9.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
200
|
+
resqpy-4.18.9.dist-info/RECORD,,
|
File without changes
|
File without changes
|