well-log-toolkit 0.1.136__tar.gz → 0.1.137__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.
Files changed (20) hide show
  1. {well_log_toolkit-0.1.136 → well_log_toolkit-0.1.137}/PKG-INFO +40 -1
  2. {well_log_toolkit-0.1.136 → well_log_toolkit-0.1.137}/README.md +39 -0
  3. {well_log_toolkit-0.1.136 → well_log_toolkit-0.1.137}/pyproject.toml +1 -1
  4. {well_log_toolkit-0.1.136 → well_log_toolkit-0.1.137}/well_log_toolkit.egg-info/PKG-INFO +40 -1
  5. {well_log_toolkit-0.1.136 → well_log_toolkit-0.1.137}/setup.cfg +0 -0
  6. {well_log_toolkit-0.1.136 → well_log_toolkit-0.1.137}/well_log_toolkit/__init__.py +0 -0
  7. {well_log_toolkit-0.1.136 → well_log_toolkit-0.1.137}/well_log_toolkit/exceptions.py +0 -0
  8. {well_log_toolkit-0.1.136 → well_log_toolkit-0.1.137}/well_log_toolkit/las_file.py +0 -0
  9. {well_log_toolkit-0.1.136 → well_log_toolkit-0.1.137}/well_log_toolkit/manager.py +0 -0
  10. {well_log_toolkit-0.1.136 → well_log_toolkit-0.1.137}/well_log_toolkit/operations.py +0 -0
  11. {well_log_toolkit-0.1.136 → well_log_toolkit-0.1.137}/well_log_toolkit/property.py +0 -0
  12. {well_log_toolkit-0.1.136 → well_log_toolkit-0.1.137}/well_log_toolkit/regression.py +0 -0
  13. {well_log_toolkit-0.1.136 → well_log_toolkit-0.1.137}/well_log_toolkit/statistics.py +0 -0
  14. {well_log_toolkit-0.1.136 → well_log_toolkit-0.1.137}/well_log_toolkit/utils.py +0 -0
  15. {well_log_toolkit-0.1.136 → well_log_toolkit-0.1.137}/well_log_toolkit/visualization.py +0 -0
  16. {well_log_toolkit-0.1.136 → well_log_toolkit-0.1.137}/well_log_toolkit/well.py +0 -0
  17. {well_log_toolkit-0.1.136 → well_log_toolkit-0.1.137}/well_log_toolkit.egg-info/SOURCES.txt +0 -0
  18. {well_log_toolkit-0.1.136 → well_log_toolkit-0.1.137}/well_log_toolkit.egg-info/dependency_links.txt +0 -0
  19. {well_log_toolkit-0.1.136 → well_log_toolkit-0.1.137}/well_log_toolkit.egg-info/requires.txt +0 -0
  20. {well_log_toolkit-0.1.136 → well_log_toolkit-0.1.137}/well_log_toolkit.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: well-log-toolkit
3
- Version: 0.1.136
3
+ Version: 0.1.137
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
@@ -1171,6 +1171,45 @@ plot = manager.Crossplot(
1171
1171
  plot.show()
1172
1172
  ```
1173
1173
 
1174
+ #### Multi-Layer Crossplots
1175
+
1176
+ Combine different data types (Core vs Sidewall, different property pairs) in a single plot with automatic shape/color encoding:
1177
+
1178
+ ```python
1179
+ # Compare Core and Sidewall data with regression by well
1180
+ plot = manager.Crossplot(
1181
+ layers={
1182
+ "Core": ['CorePor', 'CorePerm'],
1183
+ "Sidewall": ["SidewallPor", "SidewallPerm"]
1184
+ },
1185
+ color="Formation", # Color by formation
1186
+ shape="NetSand", # Shape by net sand flag
1187
+ regression_by_color="exponential-polynomial", # Separate trend per formation
1188
+ y_log=True, # Log scale for permeability
1189
+ title="Core vs Sidewall Analysis"
1190
+ )
1191
+ plot.show()
1192
+
1193
+ # Simpler version - automatic defaults
1194
+ manager.Crossplot(
1195
+ layers={
1196
+ "Core": ['CorePor', 'CorePerm'],
1197
+ "Sidewall": ["SidewallPor", "SidewallPerm"]
1198
+ },
1199
+ y_log=True
1200
+ ).show()
1201
+ # Automatically uses shape="label" (different markers per layer)
1202
+ # and color="well" (different colors per well)
1203
+ ```
1204
+
1205
+ **How it works:**
1206
+
1207
+ - `layers` dict maps labels to [x, y] property pairs
1208
+ - Each layer gets combined in one plot with unified axes
1209
+ - Shape defaults to `"label"` (Core gets circles, Sidewall gets squares)
1210
+ - Color defaults to `"well"` for multi-well visualization
1211
+ - Perfect for comparing different measurement types (Core plugs vs Formation tests)
1212
+
1174
1213
  ### Logarithmic Scales
1175
1214
 
1176
1215
  Perfect for permeability and resistivity data:
@@ -1133,6 +1133,45 @@ plot = manager.Crossplot(
1133
1133
  plot.show()
1134
1134
  ```
1135
1135
 
1136
+ #### Multi-Layer Crossplots
1137
+
1138
+ Combine different data types (Core vs Sidewall, different property pairs) in a single plot with automatic shape/color encoding:
1139
+
1140
+ ```python
1141
+ # Compare Core and Sidewall data with regression by well
1142
+ plot = manager.Crossplot(
1143
+ layers={
1144
+ "Core": ['CorePor', 'CorePerm'],
1145
+ "Sidewall": ["SidewallPor", "SidewallPerm"]
1146
+ },
1147
+ color="Formation", # Color by formation
1148
+ shape="NetSand", # Shape by net sand flag
1149
+ regression_by_color="exponential-polynomial", # Separate trend per formation
1150
+ y_log=True, # Log scale for permeability
1151
+ title="Core vs Sidewall Analysis"
1152
+ )
1153
+ plot.show()
1154
+
1155
+ # Simpler version - automatic defaults
1156
+ manager.Crossplot(
1157
+ layers={
1158
+ "Core": ['CorePor', 'CorePerm'],
1159
+ "Sidewall": ["SidewallPor", "SidewallPerm"]
1160
+ },
1161
+ y_log=True
1162
+ ).show()
1163
+ # Automatically uses shape="label" (different markers per layer)
1164
+ # and color="well" (different colors per well)
1165
+ ```
1166
+
1167
+ **How it works:**
1168
+
1169
+ - `layers` dict maps labels to [x, y] property pairs
1170
+ - Each layer gets combined in one plot with unified axes
1171
+ - Shape defaults to `"label"` (Core gets circles, Sidewall gets squares)
1172
+ - Color defaults to `"well"` for multi-well visualization
1173
+ - Perfect for comparing different measurement types (Core plugs vs Formation tests)
1174
+
1136
1175
  ### Logarithmic Scales
1137
1176
 
1138
1177
  Perfect for permeability and resistivity data:
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "well-log-toolkit"
7
- version = "0.1.136"
7
+ version = "0.1.137"
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"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: well-log-toolkit
3
- Version: 0.1.136
3
+ Version: 0.1.137
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
@@ -1171,6 +1171,45 @@ plot = manager.Crossplot(
1171
1171
  plot.show()
1172
1172
  ```
1173
1173
 
1174
+ #### Multi-Layer Crossplots
1175
+
1176
+ Combine different data types (Core vs Sidewall, different property pairs) in a single plot with automatic shape/color encoding:
1177
+
1178
+ ```python
1179
+ # Compare Core and Sidewall data with regression by well
1180
+ plot = manager.Crossplot(
1181
+ layers={
1182
+ "Core": ['CorePor', 'CorePerm'],
1183
+ "Sidewall": ["SidewallPor", "SidewallPerm"]
1184
+ },
1185
+ color="Formation", # Color by formation
1186
+ shape="NetSand", # Shape by net sand flag
1187
+ regression_by_color="exponential-polynomial", # Separate trend per formation
1188
+ y_log=True, # Log scale for permeability
1189
+ title="Core vs Sidewall Analysis"
1190
+ )
1191
+ plot.show()
1192
+
1193
+ # Simpler version - automatic defaults
1194
+ manager.Crossplot(
1195
+ layers={
1196
+ "Core": ['CorePor', 'CorePerm'],
1197
+ "Sidewall": ["SidewallPor", "SidewallPerm"]
1198
+ },
1199
+ y_log=True
1200
+ ).show()
1201
+ # Automatically uses shape="label" (different markers per layer)
1202
+ # and color="well" (different colors per well)
1203
+ ```
1204
+
1205
+ **How it works:**
1206
+
1207
+ - `layers` dict maps labels to [x, y] property pairs
1208
+ - Each layer gets combined in one plot with unified axes
1209
+ - Shape defaults to `"label"` (Core gets circles, Sidewall gets squares)
1210
+ - Color defaults to `"well"` for multi-well visualization
1211
+ - Perfect for comparing different measurement types (Core plugs vs Formation tests)
1212
+
1174
1213
  ### Logarithmic Scales
1175
1214
 
1176
1215
  Perfect for permeability and resistivity data: