well-log-toolkit 0.1.136__py3-none-any.whl → 0.1.137__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-0.1.136.dist-info → well_log_toolkit-0.1.137.dist-info}/METADATA +40 -1
- {well_log_toolkit-0.1.136.dist-info → well_log_toolkit-0.1.137.dist-info}/RECORD +4 -4
- {well_log_toolkit-0.1.136.dist-info → well_log_toolkit-0.1.137.dist-info}/WHEEL +0 -0
- {well_log_toolkit-0.1.136.dist-info → well_log_toolkit-0.1.137.dist-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.
|
|
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:
|
|
@@ -9,7 +9,7 @@ well_log_toolkit/statistics.py,sha256=_huPMbv2H3o9ezunjEM94mJknX5wPK8V4nDv2lIZZR
|
|
|
9
9
|
well_log_toolkit/utils.py,sha256=O2KPq4htIoUlL74V2zKftdqqTjRfezU9M-568zPLme0,6866
|
|
10
10
|
well_log_toolkit/visualization.py,sha256=HsTpd4UQCbu6pluVJ3AD9WWRg5mue8XGnlNhJUVIhF8,202585
|
|
11
11
|
well_log_toolkit/well.py,sha256=Aav5Y-rui8YsJdvk7BFndNPUu1O9mcjwDApAGyqV9kw,104535
|
|
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.137.dist-info/METADATA,sha256=VQrTMamL0IJYed6JqsdRk_BVmC116Q9gGILt41jRmxc,61149
|
|
13
|
+
well_log_toolkit-0.1.137.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
14
|
+
well_log_toolkit-0.1.137.dist-info/top_level.txt,sha256=BMOo7OKLcZEnjo0wOLMclwzwTbYKYh31I8RGDOGSBdE,17
|
|
15
|
+
well_log_toolkit-0.1.137.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|