well-log-toolkit 0.1.130__py3-none-any.whl → 0.1.131__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.
@@ -3010,7 +3010,11 @@ class Crossplot:
3010
3010
  self.shape = "label"
3011
3011
  else:
3012
3012
  self.shape = shape
3013
- self.color = color
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)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: well-log-toolkit
3
- Version: 0.1.130
3
+ Version: 0.1.131
4
4
  Summary: Fast LAS file processing with lazy loading and filtering for well log analysis
5
5
  Author-email: Kristian dF Kollsgård <kkollsg@gmail.com>
6
6
  License: MIT
@@ -7,9 +7,9 @@ well_log_toolkit/property.py,sha256=WOzoNQcmHCQ8moIKsnSyLgVC8s4LBu2x5IBXtFzmMe8,
7
7
  well_log_toolkit/regression.py,sha256=7D3oI-1XVlFb-mOoHTxTTtUHERFyvQSBAzJzAGVoZnk,25192
8
8
  well_log_toolkit/statistics.py,sha256=_huPMbv2H3o9ezunjEM94mJknX5wPK8V4nDv2lIZZRw,16814
9
9
  well_log_toolkit/utils.py,sha256=O2KPq4htIoUlL74V2zKftdqqTjRfezU9M-568zPLme0,6866
10
- well_log_toolkit/visualization.py,sha256=2Wmydurnll31chjhFlx6xr1UpySvi0OBu4ClLUte1BA,169609
10
+ well_log_toolkit/visualization.py,sha256=MqMK5J3LGCXc2YDT1tlmLC6oMWA-F-YBuLBh5rbrPpI,169985
11
11
  well_log_toolkit/well.py,sha256=Aav5Y-rui8YsJdvk7BFndNPUu1O9mcjwDApAGyqV9kw,104535
12
- well_log_toolkit-0.1.130.dist-info/METADATA,sha256=GT1zxMtQKy_wI9XVrgNGerOGzmzLS-K7XiAeVS4uUH8,59810
13
- well_log_toolkit-0.1.130.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
14
- well_log_toolkit-0.1.130.dist-info/top_level.txt,sha256=BMOo7OKLcZEnjo0wOLMclwzwTbYKYh31I8RGDOGSBdE,17
15
- well_log_toolkit-0.1.130.dist-info/RECORD,,
12
+ well_log_toolkit-0.1.131.dist-info/METADATA,sha256=XC_qlZ-SFO5rFspWuxMXfvl1viLa-GpKZXKxWvA-RBc,59810
13
+ well_log_toolkit-0.1.131.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
14
+ well_log_toolkit-0.1.131.dist-info/top_level.txt,sha256=BMOo7OKLcZEnjo0wOLMclwzwTbYKYh31I8RGDOGSBdE,17
15
+ well_log_toolkit-0.1.131.dist-info/RECORD,,