akirarafhael commited on
Commit
a6ec614
·
verified ·
1 Parent(s): a00bfaf

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +70 -3
README.md CHANGED
@@ -1,3 +1,70 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ ---
4
+ # 🪨 Dataset Description: `segments_with_geochem.csv`
5
+
6
+ ## 🧾 Overview
7
+ This dataset is a **merged collection** linking **image segments of drill core trays** with their corresponding **lithological and geochemical information**.
8
+ Each row represents one image segment (a small interval of core depth) combined with a specific geochemical measurement.
9
+
10
+ It contains **17,992 rows** and **31 columns**, integrating three main data sources:
11
+ 1. **Segmented core images** generated from hyperspectral core tray processing.
12
+ 2. **Lithology intervals** from SARIG drillhole logging data.
13
+ 3. **Geochemical assay data** matched by drillhole and depth range.
14
+
15
+ ---
16
+
17
+ ## 🧱 Structure and Key Columns
18
+
19
+ | Category | Example Columns | Description |
20
+ |-----------|------------------|--------------|
21
+ | **Image Segment Metadata** | `filename`, `drillhole_number`, `core`, `segment`, `depth_m` | Derived from processed images (e.g. `9955_5_9_9.15.jpg`). Each represents a core segment at a specific depth within a drillhole. |
22
+ | **Lithology Data (SARIG)** | `LOG_NUMBER`, `LOGGING_ORGANISATION`, `QUALIFICATION`, `LOGGING_DATE`, `major_lithology`, `DESCRIPTION` | Imported from SARIG drillhole lithology logs. These describe rock type, logging geologist, and confidence of lithological interpretation. |
23
+ | **Spatial Coordinates** | `EASTING_GDA2020`, `NORTHING_GDA2020`, `LONGITUDE_GDA2020`, `LATITUDE_GDA2020`, `ZONE_GDA2020` | Georeferencing information for each drillhole site. |
24
+ | **Geochemistry Data** | `chem_code`, `value`, `unit`, `chem_method_code`, `chem_method_desc` | Chemical element concentrations and assay method details. For example, `chem_code = 'Cu'`, `value = 85`, `unit = 'ppm'`, `chem_method_code = 'IC4M'`. |
25
+ | **Depth Range (Lithology/Assay)** | `depth_from_m`, `depth_to_m` | Defines the downhole interval associated with the lithology or geochemical measurement. |
26
+
27
+ ---
28
+
29
+ ## 🧬 How It Was Made
30
+
31
+ ### 1. Core Segmentation
32
+ Core tray images were processed into **individual core segments** using depth data.
33
+ Each segment was saved as an image file named using this pattern:
34
+ [drillhole_number]\_[core_number]\_[segment_number]\_[depth_m].jpg
35
+
36
+ Example: `9955_5_9_9.15.jpg` → Drillhole 9955, Core 5, Segment 9, Depth 9.15 m.
37
+
38
+ ---
39
+
40
+ ### 2. Lithology Mapping
41
+ Each image segment was matched to **SARIG lithology logs** (`sarig_dh_litho_exp.csv`), using:
42
+ drillhole_number matches AND
43
+ depth_from_m <= segment_depth <= depth_to_m
44
+
45
+ This allowed each segment to inherit lithological attributes such as `major_lithology` and `DESCRIPTION`.
46
+
47
+ ---
48
+
49
+ ### 3. Geochemical Integration
50
+ The merged segment–lithology dataset was further joined with **SARIG assay data**.
51
+ Matching was again done by `drillhole_number` and depth overlap.
52
+ Each segment now includes one or more geochemical assay results (e.g., Cu, Fe, Au) with their `chem_method_code` and measurement units (commonly `ppm`).
53
+
54
+ ---
55
+
56
+ ## 📊 Purpose and Use
57
+ This dataset is designed for **data integration and machine learning** applications that connect visual and chemical rock properties.
58
+ It can be used for:
59
+ - Linking **visual mineralogical features** in core images to **geochemical compositions**.
60
+ - Building **ML models** to predict chemistry or lithology from imagery.
61
+ - Performing **cross-domain correlation** between **NVCL hyperspectral data** and **laboratory assays**.
62
+
63
+ Each record connects what’s *seen* in the rock (image/lithology) to what’s *measured* in the lab (chemistry).
64
+
65
+ ---
66
+
67
+ ## 🧪 Notes
68
+ - The **`value`** column represents assay readings, often in **ppm (parts per million)**.
69
+ - The **`unit`** column confirms the measurement type (e.g., `ppm`, `%`, etc.).
70
+ - The dataset integrates spatial, spectral, and chemical data — making it suitable for **multi-modal mineral systems analysis**.