resqpy 5.1.6__py3-none-any.whl → 5.1.7__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__ = "5.1.6" # Set at build time
31
+ __version__ = "5.1.7" # Set at build time
32
32
  log = logging.getLogger(__name__)
33
33
  log.info(f"Imported resqpy version {__version__}")
@@ -32,7 +32,7 @@ class FaultInterpretation(BaseResqpy):
32
32
  tectonic_boundary_feature = None,
33
33
  domain = 'depth',
34
34
  is_normal = None,
35
- is_listric = None,
35
+ is_listric = False,
36
36
  maximum_throw = None,
37
37
  mean_azimuth = None,
38
38
  mean_dip = None,
@@ -44,7 +44,7 @@ class FaultInterpretation(BaseResqpy):
44
44
  # if not extracting from xml,:
45
45
  # tectonic_boundary_feature is required and must be a TectonicBoundaryFeature object
46
46
  # domain is required and must be one of 'depth', 'time' or 'mixed'
47
- # is_listric is required if the fault is not normal (and must be None if normal)
47
+ # is_listric is required if the fault is normal (and is ignored if not normal)
48
48
  # max throw, azimuth & dip are all optional
49
49
  # the throw interpretation list is not supported for direct initialisation
50
50
 
@@ -53,10 +53,12 @@ class FaultInterpretation(BaseResqpy):
53
53
  if (not title) and self.tectonic_boundary_feature is not None:
54
54
  title = self.tectonic_boundary_feature.feature_name
55
55
  self.main_has_occurred_during = (None, None)
56
+ if is_normal is None:
57
+ is_normal = (is_listric is not None)
56
58
  self.is_normal = is_normal # extra field, not explicitly in RESQML
57
59
  self.domain = domain
58
60
  # RESQML xml business rule: IsListric must be present if the fault is normal; must not be present if the fault is not normal
59
- self.is_listric = is_listric
61
+ self.is_listric = is_listric if is_normal else None
60
62
  self.maximum_throw = maximum_throw
61
63
  self.mean_azimuth = mean_azimuth
62
64
  self.mean_dip = mean_dip
@@ -87,7 +89,7 @@ class FaultInterpretation(BaseResqpy):
87
89
  self.feature_root))
88
90
  self.main_has_occurred_during = ou.extract_has_occurred_during(root_node)
89
91
  self.is_listric = rqet.find_tag_bool(root_node, 'IsListric')
90
- self.is_normal = (self.is_listric is None)
92
+ self.is_normal = (self.is_listric is not None)
91
93
  self.maximum_throw = rqet.find_tag_float(root_node, 'MaximumThrow')
92
94
  # todo: check that type="eml:LengthMeasure" is simple float
93
95
  self.mean_azimuth = rqet.find_tag_float(root_node, 'MeanAzimuth')
@@ -164,7 +166,7 @@ class FaultInterpretation(BaseResqpy):
164
166
 
165
167
  # note: related tectonic boundary feature node should be created first and referenced here
166
168
 
167
- assert self.is_normal == (self.is_listric is None)
169
+ assert self.is_normal == (self.is_listric is not None)
168
170
  if not self.title:
169
171
  if tectonic_boundary_feature_root is not None:
170
172
  title = rqet.find_nested_tags_text(tectonic_boundary_feature_root, ['Citation', 'Title'])
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: resqpy
3
- Version: 5.1.6
3
+ Version: 5.1.7
4
4
  Summary: Python API for working with RESQML models
5
5
  License: MIT
6
6
  Keywords: RESQML
@@ -1,4 +1,4 @@
1
- resqpy/__init__.py,sha256=cnR7ZBD-Sv8zdt5JWWw7n0iqZIaIhsYS7akdPjFzG10,555
1
+ resqpy/__init__.py,sha256=DqQEyFwLwdB28We6q42Z7v0_zMBX6rLOTVmr9sauZUI,555
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
@@ -110,7 +110,7 @@ resqpy/organize/_utils.py,sha256=p1ec0ytUv8X4SFn0cCp5g-aWjucNR7xKQEwkcMOyHYM,293
110
110
  resqpy/organize/boundary_feature.py,sha256=AqSTtYpEKBXgkggzETbl61PhtdatIEFwXkzcrqRlj0A,1685
111
111
  resqpy/organize/boundary_feature_interpretation.py,sha256=u0vTBFAhIVOHOjF5YlSIeNDq17qW2fWKwT8H-PtTMNQ,5190
112
112
  resqpy/organize/earth_model_interpretation.py,sha256=-2aJ7NSbuOWjSSKABqDwyZL67gxQ_RlxerhsOQcaq0I,6186
113
- resqpy/organize/fault_interpretation.py,sha256=bXonQ9vrFK_-Taq2F6nPU05EWLLX88ZhUppjLZRLl2I,12457
113
+ resqpy/organize/fault_interpretation.py,sha256=srLl0HZ0B4-DOIyQC61q4-PrmKS0N0pR1bP_OGBxHYM,12566
114
114
  resqpy/organize/fluid_boundary_feature.py,sha256=OyBz_oHhrD_d1tlcXPOBvsvgns2JY1G9zMt9PM0U6nM,2757
115
115
  resqpy/organize/frontier_feature.py,sha256=DbGEtHKCUxXyYdjP7aV1PXU-jXtLz_M-e3gMg_CJqWs,1702
116
116
  resqpy/organize/generic_interpretation.py,sha256=ILh5bibemk5t-1Ozfz9e8KYo9ijQYWs8p23tlV4jJ04,4498
@@ -193,7 +193,7 @@ resqpy/well/_wellbore_marker_frame.py,sha256=xvYH2_2Ie3a18LReFymbUrZboOx7Rhv5DOD
193
193
  resqpy/well/blocked_well_frame.py,sha256=Rx8jwkCjchseDZaTttPkA1-f6l7W6vRGrxWtDHlEPx8,22560
194
194
  resqpy/well/well_object_funcs.py,sha256=1O4EVPuTn-kN3uT_V4TbSwehnMUMY0TX36XOUgasTcc,24689
195
195
  resqpy/well/well_utils.py,sha256=-g_pg2v5XD9g4SQz9sk7KK-x2xEQZHzWehCQqiEGo6M,7627
196
- resqpy-5.1.6.dist-info/LICENSE,sha256=2duHPIkKQyESMdQ4hKjL8CYEsYRHXaYxt0YQkzsUYE4,1059
197
- resqpy-5.1.6.dist-info/METADATA,sha256=ixIzugCD9ZynPEJP_6VZiiUrn042oJmOx8HoilUgePw,3986
198
- resqpy-5.1.6.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
199
- resqpy-5.1.6.dist-info/RECORD,,
196
+ resqpy-5.1.7.dist-info/LICENSE,sha256=2duHPIkKQyESMdQ4hKjL8CYEsYRHXaYxt0YQkzsUYE4,1059
197
+ resqpy-5.1.7.dist-info/METADATA,sha256=ZABy6lN-Y2MQGf8FNpyph3GDrnxFNAxGOkYtQxfB1EM,3986
198
+ resqpy-5.1.7.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
199
+ resqpy-5.1.7.dist-info/RECORD,,
File without changes