well-log-toolkit 0.1.130__tar.gz → 0.1.131__tar.gz
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-0.1.130 → well_log_toolkit-0.1.131}/PKG-INFO +1 -1
- {well_log_toolkit-0.1.130 → well_log_toolkit-0.1.131}/pyproject.toml +1 -1
- {well_log_toolkit-0.1.130 → well_log_toolkit-0.1.131}/well_log_toolkit/visualization.py +8 -1
- {well_log_toolkit-0.1.130 → well_log_toolkit-0.1.131}/well_log_toolkit.egg-info/PKG-INFO +1 -1
- {well_log_toolkit-0.1.130 → well_log_toolkit-0.1.131}/README.md +0 -0
- {well_log_toolkit-0.1.130 → well_log_toolkit-0.1.131}/setup.cfg +0 -0
- {well_log_toolkit-0.1.130 → well_log_toolkit-0.1.131}/well_log_toolkit/__init__.py +0 -0
- {well_log_toolkit-0.1.130 → well_log_toolkit-0.1.131}/well_log_toolkit/exceptions.py +0 -0
- {well_log_toolkit-0.1.130 → well_log_toolkit-0.1.131}/well_log_toolkit/las_file.py +0 -0
- {well_log_toolkit-0.1.130 → well_log_toolkit-0.1.131}/well_log_toolkit/manager.py +0 -0
- {well_log_toolkit-0.1.130 → well_log_toolkit-0.1.131}/well_log_toolkit/operations.py +0 -0
- {well_log_toolkit-0.1.130 → well_log_toolkit-0.1.131}/well_log_toolkit/property.py +0 -0
- {well_log_toolkit-0.1.130 → well_log_toolkit-0.1.131}/well_log_toolkit/regression.py +0 -0
- {well_log_toolkit-0.1.130 → well_log_toolkit-0.1.131}/well_log_toolkit/statistics.py +0 -0
- {well_log_toolkit-0.1.130 → well_log_toolkit-0.1.131}/well_log_toolkit/utils.py +0 -0
- {well_log_toolkit-0.1.130 → well_log_toolkit-0.1.131}/well_log_toolkit/well.py +0 -0
- {well_log_toolkit-0.1.130 → well_log_toolkit-0.1.131}/well_log_toolkit.egg-info/SOURCES.txt +0 -0
- {well_log_toolkit-0.1.130 → well_log_toolkit-0.1.131}/well_log_toolkit.egg-info/dependency_links.txt +0 -0
- {well_log_toolkit-0.1.130 → well_log_toolkit-0.1.131}/well_log_toolkit.egg-info/requires.txt +0 -0
- {well_log_toolkit-0.1.130 → well_log_toolkit-0.1.131}/well_log_toolkit.egg-info/top_level.txt +0 -0
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "well-log-toolkit"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.131"
|
|
8
8
|
description = "Fast LAS file processing with lazy loading and filtering for well log analysis"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.9"
|
|
@@ -3010,7 +3010,11 @@ class Crossplot:
|
|
|
3010
3010
|
self.shape = "label"
|
|
3011
3011
|
else:
|
|
3012
3012
|
self.shape = shape
|
|
3013
|
-
|
|
3013
|
+
# Default color to "well" when layers are provided (for multi-well visualization)
|
|
3014
|
+
if color is None and layers is not None and len(self.wells) > 1:
|
|
3015
|
+
self.color = "well"
|
|
3016
|
+
else:
|
|
3017
|
+
self.color = color
|
|
3014
3018
|
self.size = size
|
|
3015
3019
|
self.colortemplate = colortemplate
|
|
3016
3020
|
self.color_range = color_range
|
|
@@ -3166,6 +3170,9 @@ class Crossplot:
|
|
|
3166
3170
|
if self.color == "label":
|
|
3167
3171
|
# Use layer label for color
|
|
3168
3172
|
df['color_val'] = layer_label
|
|
3173
|
+
elif self.color == "well":
|
|
3174
|
+
# Use well name for color (categorical)
|
|
3175
|
+
df['color_val'] = well.name
|
|
3169
3176
|
elif self.color and self.color != "depth":
|
|
3170
3177
|
try:
|
|
3171
3178
|
color_prop = well.get_property(self.color)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{well_log_toolkit-0.1.130 → well_log_toolkit-0.1.131}/well_log_toolkit.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{well_log_toolkit-0.1.130 → well_log_toolkit-0.1.131}/well_log_toolkit.egg-info/requires.txt
RENAMED
|
File without changes
|
{well_log_toolkit-0.1.130 → well_log_toolkit-0.1.131}/well_log_toolkit.egg-info/top_level.txt
RENAMED
|
File without changes
|