resqpy 4.17.8__py3-none-any.whl → 4.17.10__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 CHANGED
@@ -28,6 +28,6 @@
28
28
 
29
29
  import logging
30
30
 
31
- __version__ = "4.17.8" # Set at build time
31
+ __version__ = "4.17.10" # Set at build time
32
32
  log = logging.getLogger(__name__)
33
33
  log.info(f"Imported resqpy version {__version__}")
@@ -1145,7 +1145,8 @@ def find_faces_to_represent_surface_regular_optimised(grid,
1145
1145
  if progress_fn is not None:
1146
1146
  progress_fn(0.9)
1147
1147
 
1148
- if k_faces_kji0 is None and j_faces_kji0 is None and i_faces_kji0 is None:
1148
+ if ((k_faces_kji0 is None or len(k_faces_kji0) == 0) and (j_faces_kji0 is None or len(j_faces_kji0) == 0) and
1149
+ (i_faces_kji0 is None or len(i_faces_kji0) == 0)):
1149
1150
  log.error(f'did not find any faces to represent {name}: surface does not intersect grid?')
1150
1151
  if return_properties:
1151
1152
  return (None, {})
@@ -1226,7 +1227,8 @@ def find_faces_to_represent_surface_regular_optimised(grid,
1226
1227
  # log.debug('finished preparing columns bisector')
1227
1228
  else:
1228
1229
  log.debug("preparing cells bisector")
1229
- if k_faces_kji0 is None and j_faces_kji0 is None and i_faces_kji0 is None:
1230
+ if ((k_faces_kji0 is None or len(k_faces_kji0) == 0) and
1231
+ (j_faces_kji0 is None or len(j_faces_kji0) == 0) and (i_faces_kji0 is None or len(i_faces_kji0) == 0)):
1230
1232
  bisector = np.ones((grid.nj, grid.ni), dtype = bool)
1231
1233
  is_curtain = True
1232
1234
  else:
@@ -2010,8 +2012,8 @@ def get_boundary_from_indices( # type: ignore
2010
2012
  box[1, 1] = max(box[1, 1], j_max_kji0[1]) # type: ignore
2011
2013
  box[1, 2] = max(box[1, 2], j_max_kji0[2]) # type: ignore
2012
2014
  if i_min_kji0 is not None:
2013
- box[0, 1] = min(box[0, 1], i_min_kji0[0])
2014
- box[0, 2] = min(box[0, 2], i_min_kji0[1])
2015
+ box[0, 0] = min(box[0, 0], i_min_kji0[0])
2016
+ box[0, 1] = min(box[0, 1], i_min_kji0[1])
2015
2017
  box[0, 2] = min(box[0, 2], i_min_kji0[2])
2016
2018
  box[1, 0] = max(box[1, 0], i_max_kji0[0]) # type: ignore
2017
2019
  box[1, 1] = max(box[1, 1], i_max_kji0[1]) # type: ignore
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: resqpy
3
- Version: 4.17.8
3
+ Version: 4.17.10
4
4
  Summary: Python API for working with RESQML models
5
5
  Home-page: https://github.com/bp/resqpy
6
6
  License: MIT
@@ -1,4 +1,4 @@
1
- resqpy/__init__.py,sha256=abnGHVyMOlZut3zbCpN_mPCzniBim5FnqwHzdo2wR38,556
1
+ resqpy/__init__.py,sha256=aTwCJeIjGzaZqObVT5I0P6wYP60BEBWztBZxI-AMahc,557
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
@@ -48,7 +48,7 @@ resqpy/grid/_write_nexus_corp.py,sha256=yEVfiObsedEAXX6UG6ZTf56kZnQVkd3lLqE2NpL-
48
48
  resqpy/grid/_xyz.py,sha256=RLQWOdM_DRoCj4JypwB5gUJ78HTdk5JnZHSeAzuU634,13087
49
49
  resqpy/grid_surface/__init__.py,sha256=rPr5zFFRmUDbMEhnCYsweSC3xugtQ8LnhZOf8JLIqIc,2765
50
50
  resqpy/grid_surface/_blocked_well_populate.py,sha256=Lme1AR-nLWOUlNnmHMVThk6jEg_lAZxWWtL82Yksppw,35867
51
- resqpy/grid_surface/_find_faces.py,sha256=TQDwKB56R5HZTB4iVyBCQRn0QcHwJ5Msc928vCExDss,93703
51
+ resqpy/grid_surface/_find_faces.py,sha256=eMiT7wWIJJtldAY0-Imb2f3d_cjsADj-UCeMDaGAYaM,93899
52
52
  resqpy/grid_surface/_grid_skin.py,sha256=D0cjHkcuT5KCKb-8EZfXgh0GgJj3kzOBS2wVNXg4bfY,26056
53
53
  resqpy/grid_surface/_grid_surface.py,sha256=l2NJo7Kiucolbb_TlLPC7NGdksg_JahkihfsrJVq99w,14379
54
54
  resqpy/grid_surface/_trajectory_intersects.py,sha256=Och9cZYU9Y7ofovhPzsLyIblRUl2xj9_5nHH3fMZp-A,22498
@@ -194,7 +194,7 @@ resqpy/well/_wellbore_marker_frame.py,sha256=xvYH2_2Ie3a18LReFymbUrZboOx7Rhv5DOD
194
194
  resqpy/well/blocked_well_frame.py,sha256=eK7Ca6PcqI3pK-XurZIcXAV5Z4B9PFe6H8a7DqVkmBo,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.17.8.dist-info/LICENSE,sha256=2duHPIkKQyESMdQ4hKjL8CYEsYRHXaYxt0YQkzsUYE4,1059
198
- resqpy-4.17.8.dist-info/METADATA,sha256=pK2eYC3DsUrCOkUqZqJJ9PQMCZplPnC47gP1X4rLc2o,4028
199
- resqpy-4.17.8.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
200
- resqpy-4.17.8.dist-info/RECORD,,
197
+ resqpy-4.17.10.dist-info/LICENSE,sha256=2duHPIkKQyESMdQ4hKjL8CYEsYRHXaYxt0YQkzsUYE4,1059
198
+ resqpy-4.17.10.dist-info/METADATA,sha256=AnujGEZLIW5OeC7MNnoyy06OOqUfNsdTGaSVL98G0us,4029
199
+ resqpy-4.17.10.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
200
+ resqpy-4.17.10.dist-info/RECORD,,