lasmnemonicsid 0.0.1b0__tar.gz → 0.0.1rc0__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.
- {lasmnemonicsid-0.0.1b0 → lasmnemonicsid-0.0.1rc0}/PKG-INFO +35 -9
- lasmnemonicsid-0.0.1rc0/README.md +45 -0
- {lasmnemonicsid-0.0.1b0 → lasmnemonicsid-0.0.1rc0}/pyproject.toml +1 -1
- {lasmnemonicsid-0.0.1b0 → lasmnemonicsid-0.0.1rc0}/src/lasmnemonicsid.egg-info/PKG-INFO +35 -9
- lasmnemonicsid-0.0.1b0/README.md +0 -19
- {lasmnemonicsid-0.0.1b0 → lasmnemonicsid-0.0.1rc0}/LICENSE +0 -0
- {lasmnemonicsid-0.0.1b0 → lasmnemonicsid-0.0.1rc0}/setup.cfg +0 -0
- {lasmnemonicsid-0.0.1b0 → lasmnemonicsid-0.0.1rc0}/src/LASMnemonicsID/DLIS/__init__.py +0 -0
- {lasmnemonicsid-0.0.1b0 → lasmnemonicsid-0.0.1rc0}/src/LASMnemonicsID/LAS/LAS.py +0 -0
- {lasmnemonicsid-0.0.1b0 → lasmnemonicsid-0.0.1rc0}/src/LASMnemonicsID/LAS/__init__.py +0 -0
- {lasmnemonicsid-0.0.1b0 → lasmnemonicsid-0.0.1rc0}/src/LASMnemonicsID/__init__.py +0 -0
- {lasmnemonicsid-0.0.1b0 → lasmnemonicsid-0.0.1rc0}/src/LASMnemonicsID/utils/__init__.py +0 -0
- {lasmnemonicsid-0.0.1b0 → lasmnemonicsid-0.0.1rc0}/src/LASMnemonicsID/utils/mnemonics.py +0 -0
- {lasmnemonicsid-0.0.1b0 → lasmnemonicsid-0.0.1rc0}/src/lasmnemonicsid.egg-info/SOURCES.txt +0 -0
- {lasmnemonicsid-0.0.1b0 → lasmnemonicsid-0.0.1rc0}/src/lasmnemonicsid.egg-info/dependency_links.txt +0 -0
- {lasmnemonicsid-0.0.1b0 → lasmnemonicsid-0.0.1rc0}/src/lasmnemonicsid.egg-info/requires.txt +0 -0
- {lasmnemonicsid-0.0.1b0 → lasmnemonicsid-0.0.1rc0}/src/lasmnemonicsid.egg-info/top_level.txt +0 -0
- {lasmnemonicsid-0.0.1b0 → lasmnemonicsid-0.0.1rc0}/tests/test_dlis.py +0 -0
- {lasmnemonicsid-0.0.1b0 → lasmnemonicsid-0.0.1rc0}/tests/test_las.py +0 -0
- {lasmnemonicsid-0.0.1b0 → lasmnemonicsid-0.0.1rc0}/tests/test_utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lasmnemonicsid
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.1rc0
|
|
4
4
|
Summary: Well log mnemonic identification using lasio and dlisio to load LAS/DLIS files into DataFrames
|
|
5
5
|
Author-email: Nobleza Energy <info@nobleza-energy.com>
|
|
6
6
|
License: MIT
|
|
@@ -37,21 +37,47 @@ Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
|
|
|
37
37
|
Dynamic: license-file
|
|
38
38
|
|
|
39
39
|
|
|
40
|
-
|
|
40
|
+
<p align="center">
|
|
41
|
+
<img src="https://raw.githubusercontent.com/Nobleza-Energy/LASMnemonicsID/main/logo.png" alt="LASMnemonicsID Logo" width="200"/>
|
|
42
|
+
</p>
|
|
41
43
|
|
|
42
|
-
LASMnemonicsID
|
|
44
|
+
<h1 align="center">LASMnemonicsID</h1>
|
|
43
45
|
|
|
44
|
-
|
|
46
|
+
<p align="center">
|
|
47
|
+
<b>Well log mnemonic identification using lasio and dlisio</b>
|
|
48
|
+
</p>
|
|
45
49
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
50
|
+
<p align="center">
|
|
51
|
+
<a href="https://pypi.org/project/lasmnemonicsid/"><img src="https://img.shields.io/pypi/v/lasmnemonicsid.svg" alt="PyPI"></a>
|
|
52
|
+
<a href="https://pypi.org/project/lasmnemonicsid/"><img src="https://img.shields.io/pypi/pyversions/lasmnemonicsid.svg" alt="Python Versions"></a>
|
|
53
|
+
<a href="https://github.com/Nobleza-Energy/LASMnemonicsID/blob/main/LICENSE"><img src="https://img.shields.io/github/license/Nobleza-Energy/LASMnemonicsID.svg" alt="License"></a>
|
|
54
|
+
</p>
|
|
49
55
|
|
|
50
|
-
|
|
56
|
+
---
|
|
57
|
+
|
|
58
|
+
## 📦 Installation
|
|
51
59
|
|
|
52
60
|
```bash
|
|
53
|
-
pip install
|
|
61
|
+
pip install lasmnemonicsid
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
## 🚀 QuickStart
|
|
54
67
|
```
|
|
68
|
+
from LASMnemonicsID.LAS import parseLAS
|
|
55
69
|
|
|
70
|
+
# Load LAS file
|
|
71
|
+
df = parseLAS("your_well.las")
|
|
72
|
+
print(df.head())
|
|
73
|
+
```
|
|
56
74
|
|
|
75
|
+
## 🧪 Test with your Data
|
|
76
|
+
```
|
|
77
|
+
from LASMnemonicsID.LAS import parseLAS
|
|
57
78
|
|
|
79
|
+
# Load and inspect
|
|
80
|
+
df = parseLAS("path/to/well.las")
|
|
81
|
+
print(f"✅ {len(df)} rows, {len(df.columns)} curves")
|
|
82
|
+
print(df.columns.tolist())
|
|
83
|
+
```
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
|
|
2
|
+
<p align="center">
|
|
3
|
+
<img src="https://raw.githubusercontent.com/Nobleza-Energy/LASMnemonicsID/main/logo.png" alt="LASMnemonicsID Logo" width="200"/>
|
|
4
|
+
</p>
|
|
5
|
+
|
|
6
|
+
<h1 align="center">LASMnemonicsID</h1>
|
|
7
|
+
|
|
8
|
+
<p align="center">
|
|
9
|
+
<b>Well log mnemonic identification using lasio and dlisio</b>
|
|
10
|
+
</p>
|
|
11
|
+
|
|
12
|
+
<p align="center">
|
|
13
|
+
<a href="https://pypi.org/project/lasmnemonicsid/"><img src="https://img.shields.io/pypi/v/lasmnemonicsid.svg" alt="PyPI"></a>
|
|
14
|
+
<a href="https://pypi.org/project/lasmnemonicsid/"><img src="https://img.shields.io/pypi/pyversions/lasmnemonicsid.svg" alt="Python Versions"></a>
|
|
15
|
+
<a href="https://github.com/Nobleza-Energy/LASMnemonicsID/blob/main/LICENSE"><img src="https://img.shields.io/github/license/Nobleza-Energy/LASMnemonicsID.svg" alt="License"></a>
|
|
16
|
+
</p>
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
## 📦 Installation
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
pip install lasmnemonicsid
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
## 🚀 QuickStart
|
|
29
|
+
```
|
|
30
|
+
from LASMnemonicsID.LAS import parseLAS
|
|
31
|
+
|
|
32
|
+
# Load LAS file
|
|
33
|
+
df = parseLAS("your_well.las")
|
|
34
|
+
print(df.head())
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## 🧪 Test with your Data
|
|
38
|
+
```
|
|
39
|
+
from LASMnemonicsID.LAS import parseLAS
|
|
40
|
+
|
|
41
|
+
# Load and inspect
|
|
42
|
+
df = parseLAS("path/to/well.las")
|
|
43
|
+
print(f"✅ {len(df)} rows, {len(df.columns)} curves")
|
|
44
|
+
print(df.columns.tolist())
|
|
45
|
+
```
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "lasmnemonicsid"
|
|
7
|
-
version = "0.0.
|
|
7
|
+
version = "0.0.1c" # ← NEW tag version
|
|
8
8
|
description = "Well log mnemonic identification using lasio and dlisio to load LAS/DLIS files into DataFrames"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
authors = [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lasmnemonicsid
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.1rc0
|
|
4
4
|
Summary: Well log mnemonic identification using lasio and dlisio to load LAS/DLIS files into DataFrames
|
|
5
5
|
Author-email: Nobleza Energy <info@nobleza-energy.com>
|
|
6
6
|
License: MIT
|
|
@@ -37,21 +37,47 @@ Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
|
|
|
37
37
|
Dynamic: license-file
|
|
38
38
|
|
|
39
39
|
|
|
40
|
-
|
|
40
|
+
<p align="center">
|
|
41
|
+
<img src="https://raw.githubusercontent.com/Nobleza-Energy/LASMnemonicsID/main/logo.png" alt="LASMnemonicsID Logo" width="200"/>
|
|
42
|
+
</p>
|
|
41
43
|
|
|
42
|
-
LASMnemonicsID
|
|
44
|
+
<h1 align="center">LASMnemonicsID</h1>
|
|
43
45
|
|
|
44
|
-
|
|
46
|
+
<p align="center">
|
|
47
|
+
<b>Well log mnemonic identification using lasio and dlisio</b>
|
|
48
|
+
</p>
|
|
45
49
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
50
|
+
<p align="center">
|
|
51
|
+
<a href="https://pypi.org/project/lasmnemonicsid/"><img src="https://img.shields.io/pypi/v/lasmnemonicsid.svg" alt="PyPI"></a>
|
|
52
|
+
<a href="https://pypi.org/project/lasmnemonicsid/"><img src="https://img.shields.io/pypi/pyversions/lasmnemonicsid.svg" alt="Python Versions"></a>
|
|
53
|
+
<a href="https://github.com/Nobleza-Energy/LASMnemonicsID/blob/main/LICENSE"><img src="https://img.shields.io/github/license/Nobleza-Energy/LASMnemonicsID.svg" alt="License"></a>
|
|
54
|
+
</p>
|
|
49
55
|
|
|
50
|
-
|
|
56
|
+
---
|
|
57
|
+
|
|
58
|
+
## 📦 Installation
|
|
51
59
|
|
|
52
60
|
```bash
|
|
53
|
-
pip install
|
|
61
|
+
pip install lasmnemonicsid
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
## 🚀 QuickStart
|
|
54
67
|
```
|
|
68
|
+
from LASMnemonicsID.LAS import parseLAS
|
|
55
69
|
|
|
70
|
+
# Load LAS file
|
|
71
|
+
df = parseLAS("your_well.las")
|
|
72
|
+
print(df.head())
|
|
73
|
+
```
|
|
56
74
|
|
|
75
|
+
## 🧪 Test with your Data
|
|
76
|
+
```
|
|
77
|
+
from LASMnemonicsID.LAS import parseLAS
|
|
57
78
|
|
|
79
|
+
# Load and inspect
|
|
80
|
+
df = parseLAS("path/to/well.las")
|
|
81
|
+
print(f"✅ {len(df)} rows, {len(df.columns)} curves")
|
|
82
|
+
print(df.columns.tolist())
|
|
83
|
+
```
|
lasmnemonicsid-0.0.1b0/README.md
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
# <img src="logo.png" height="50" valign="bottom"> LASMnemonicsID
|
|
3
|
-
|
|
4
|
-
LASMnemonicsID uses Python dictionaries with lasio and dlisio to read LAS and DLIS/LIS well log files into pandas DataFrames for mnemonic identification and analysis.
|
|
5
|
-
|
|
6
|
-
## Features
|
|
7
|
-
|
|
8
|
-
- LAS 1.2/2.0 → DataFrame (lasio)
|
|
9
|
-
- DLIS/LIS → DataFrame (dlisio)
|
|
10
|
-
- Standardized mnemonic identification via dictionaries
|
|
11
|
-
|
|
12
|
-
## Installation
|
|
13
|
-
|
|
14
|
-
```bash
|
|
15
|
-
pip install -r requirements.txt
|
|
16
|
-
```
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
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
|
{lasmnemonicsid-0.0.1b0 → lasmnemonicsid-0.0.1rc0}/src/lasmnemonicsid.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
{lasmnemonicsid-0.0.1b0 → lasmnemonicsid-0.0.1rc0}/src/lasmnemonicsid.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|