well-log-toolkit 0.1.151__py3-none-any.whl → 0.1.152__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.
- well_log_toolkit/manager.py +11 -1
- {well_log_toolkit-0.1.151.dist-info → well_log_toolkit-0.1.152.dist-info}/METADATA +1 -1
- {well_log_toolkit-0.1.151.dist-info → well_log_toolkit-0.1.152.dist-info}/RECORD +5 -5
- {well_log_toolkit-0.1.151.dist-info → well_log_toolkit-0.1.152.dist-info}/WHEEL +0 -0
- {well_log_toolkit-0.1.151.dist-info → well_log_toolkit-0.1.152.dist-info}/top_level.txt +0 -0
well_log_toolkit/manager.py
CHANGED
|
@@ -676,11 +676,15 @@ class _ManagerPropertyProxy:
|
|
|
676
676
|
well_intervals = intervals
|
|
677
677
|
elif isinstance(intervals, dict):
|
|
678
678
|
# Well-specific intervals
|
|
679
|
+
# Check original name, sanitized name, and well_-prefixed sanitized name
|
|
679
680
|
well_intervals = None
|
|
681
|
+
prefixed_name = f"well_{well.sanitized_name}"
|
|
680
682
|
if well.name in intervals:
|
|
681
683
|
well_intervals = intervals[well.name]
|
|
682
684
|
elif well.sanitized_name in intervals:
|
|
683
685
|
well_intervals = intervals[well.sanitized_name]
|
|
686
|
+
elif prefixed_name in intervals:
|
|
687
|
+
well_intervals = intervals[prefixed_name]
|
|
684
688
|
if well_intervals is None:
|
|
685
689
|
return None # Skip wells not in the dict
|
|
686
690
|
else:
|
|
@@ -2343,7 +2347,9 @@ class _ManagerMultiPropertyProxy:
|
|
|
2343
2347
|
return None # Skip wells that don't have this saved filter
|
|
2344
2348
|
elif isinstance(intervals, dict):
|
|
2345
2349
|
# Well-specific intervals - check if this well is in the dict
|
|
2346
|
-
|
|
2350
|
+
# Check original name, sanitized name, and well_-prefixed sanitized name
|
|
2351
|
+
prefixed_name = f"well_{well.sanitized_name}"
|
|
2352
|
+
if well.name not in intervals and well.sanitized_name not in intervals and prefixed_name not in intervals:
|
|
2347
2353
|
return None # Skip wells not in the dict
|
|
2348
2354
|
|
|
2349
2355
|
# Collect results for each property
|
|
@@ -2421,11 +2427,15 @@ class _ManagerMultiPropertyProxy:
|
|
|
2421
2427
|
well_intervals = intervals
|
|
2422
2428
|
elif isinstance(intervals, dict):
|
|
2423
2429
|
# Well-specific intervals
|
|
2430
|
+
# Check original name, sanitized name, and well_-prefixed sanitized name
|
|
2424
2431
|
well_intervals = None
|
|
2432
|
+
prefixed_name = f"well_{well.sanitized_name}"
|
|
2425
2433
|
if well.name in intervals:
|
|
2426
2434
|
well_intervals = intervals[well.name]
|
|
2427
2435
|
elif well.sanitized_name in intervals:
|
|
2428
2436
|
well_intervals = intervals[well.sanitized_name]
|
|
2437
|
+
elif prefixed_name in intervals:
|
|
2438
|
+
well_intervals = intervals[prefixed_name]
|
|
2429
2439
|
if well_intervals is None:
|
|
2430
2440
|
return None # Skip wells not in the dict
|
|
2431
2441
|
elif isinstance(intervals, list):
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
well_log_toolkit/__init__.py,sha256=ilJAIIhh68pYfD9I3V53juTEJpoMN8oHpcpEFNpuXAQ,3793
|
|
2
2
|
well_log_toolkit/exceptions.py,sha256=X_fzC7d4yaBFO9Vx74dEIB6xmI9Agi6_bTU3MPxn6ko,985
|
|
3
3
|
well_log_toolkit/las_file.py,sha256=Tj0mRfX1aX2s6uug7BBlY1m_mu3G50EGxHGzD0eEedE,53876
|
|
4
|
-
well_log_toolkit/manager.py,sha256=
|
|
4
|
+
well_log_toolkit/manager.py,sha256=vlOPAJmKNnuZNykZdLwLUPBNwH7BWrKY22hx7FOW0S0,163031
|
|
5
5
|
well_log_toolkit/operations.py,sha256=z8j8fGBOwoJGUQFy-Vawjq9nm3OD_dUt0oaNh8yuG7o,18515
|
|
6
6
|
well_log_toolkit/property.py,sha256=XY3BAN76CY6KY8na4iyoz6P-inhDyb821o3gN7ZC3q4,104184
|
|
7
7
|
well_log_toolkit/regression.py,sha256=JDcRxaODJnFikAdPJyTq8eUV7iY0vCDmvnGufqlojxs,31625
|
|
@@ -9,7 +9,7 @@ well_log_toolkit/statistics.py,sha256=cpUbaRGlqyqpGWKtETk9XpXWrMJIIjVacdqEqIBkvq
|
|
|
9
9
|
well_log_toolkit/utils.py,sha256=O2KPq4htIoUlL74V2zKftdqqTjRfezU9M-568zPLme0,6866
|
|
10
10
|
well_log_toolkit/visualization.py,sha256=nnpmFmbj44TbP0fsnLMR1GaKRkqKCEpI6Fd8Cp0oqBc,204716
|
|
11
11
|
well_log_toolkit/well.py,sha256=n6XfaGSjGtyXCIaAr0ytslIK0DMUY_fSPQ_VCqj8jaU,106173
|
|
12
|
-
well_log_toolkit-0.1.
|
|
13
|
-
well_log_toolkit-0.1.
|
|
14
|
-
well_log_toolkit-0.1.
|
|
15
|
-
well_log_toolkit-0.1.
|
|
12
|
+
well_log_toolkit-0.1.152.dist-info/METADATA,sha256=jITXa53PORO2xidQsVqm1hvIOPlINDnxlOKctH1YqK0,63473
|
|
13
|
+
well_log_toolkit-0.1.152.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
14
|
+
well_log_toolkit-0.1.152.dist-info/top_level.txt,sha256=BMOo7OKLcZEnjo0wOLMclwzwTbYKYh31I8RGDOGSBdE,17
|
|
15
|
+
well_log_toolkit-0.1.152.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|