Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- other
|
| 5 |
+
- feature-extraction
|
| 6 |
+
tags:
|
| 7 |
+
- geoscience
|
| 8 |
+
- geology
|
| 9 |
+
- tectonics
|
| 10 |
+
- plate-tectonics
|
| 11 |
+
- geospatial
|
| 12 |
+
- earth-observation
|
| 13 |
+
- remote-sensing
|
| 14 |
+
language:
|
| 15 |
+
- en
|
| 16 |
+
pretty_name: GPlates Tectonic Intelligence Dataset
|
| 17 |
+
size_categories:
|
| 18 |
+
- 10K<n<100K
|
| 19 |
+
---
|
| 20 |
+
|
| 21 |
+

|
| 22 |
+
|
| 23 |
+
# GPlates Tectonic Intelligence Dataset
|
| 24 |
+
|
| 25 |
+
Global, AI-ready tectonic context for every point on Earth — built from GPlates/EarthByte plate reconstruction data.
|
| 26 |
+
|
| 27 |
+
## Dataset Summary
|
| 28 |
+
|
| 29 |
+
This dataset converts the Müller et al. (2019) global plate reconstruction model into a standardized, gridded feature set. Every cell in a 1.0° global grid (360 × 180 = 64,800 points, present day / 0 Ma) is tagged with its reconstruction plate ID, seafloor age, and distance to the nearest mid-ocean ridge, subduction trench, transform fault, and coastline — turning raw tectonic geometry into tabular features ready for geological, geophysical, exploration, and environmental ML applications.
|
| 30 |
+
|
| 31 |
+
## Dataset Structure
|
| 32 |
+
|
| 33 |
+
**Format:** GeoParquet (WGS84 / EPSG:4326), one row per grid cell.
|
| 34 |
+
|
| 35 |
+
| Field | Type | Description |
|
| 36 |
+
|---|---|---|
|
| 37 |
+
| `lon` | float | Cell center longitude (degrees) |
|
| 38 |
+
| `lat` | float | Cell center latitude (degrees) |
|
| 39 |
+
| `plate_id` | int | Reconstruction plate ID (Müller et al. 2019 model) |
|
| 40 |
+
| `age_ma` | float | Seafloor age in millions of years; null over continental crust |
|
| 41 |
+
| `dist_to_ridge_km` | float | Distance to nearest mid-ocean ridge segment |
|
| 42 |
+
| `dist_to_trench_km` | float | Distance to nearest subduction trench |
|
| 43 |
+
| `dist_to_transform_km` | float | Distance to nearest transform fault |
|
| 44 |
+
| `dist_to_coastline_km` | float | Distance to nearest coastline |
|
| 45 |
+
|
| 46 |
+
## Source Data
|
| 47 |
+
|
| 48 |
+
- **Plate model:** Müller, R.D. et al. (2019), global full-plate motion and plate boundary model.
|
| 49 |
+
- **Seafloor age grid:** Seton, M. et al. (2020), present-day oceanic crustal age and spreading parameters.
|
| 50 |
+
- **Access layer:** [`gplately`](https://github.com/GPlates/gplately) (Mather et al.), built on `pygplates`.
|
| 51 |
+
|
| 52 |
+
Original data distributed by EarthByte / GPlates under their respective open licenses; this derived grid is released under CC-BY-4.0 — verify against upstream terms before redistribution.
|
| 53 |
+
|
| 54 |
+
## Processing Pipeline
|
| 55 |
+
|
| 56 |
+
1. Downloaded core reconstruction files (rotation model, topologies, static polygons) and supporting layers (coastlines, continents, COBs, age grid) via `gplately.DataServer`.
|
| 57 |
+
2. Converted vector layers to standardized GeoJSON and GeoParquet.
|
| 58 |
+
3. Extracted labeled plate-boundary geometries (ridges, trenches, transforms) and coastlines as spatial features.
|
| 59 |
+
4. Built a global 1.0° grid, assigned plate IDs via point-in-polygon partitioning, sampled seafloor age, and computed nearest-boundary distances (reprojected to an equidistant CRS for real-world km).
|
| 60 |
+
5. Published the standardized dataset here.
|
| 61 |
+
|
| 62 |
+
## Usage
|
| 63 |
+
|
| 64 |
+
```python
|
| 65 |
+
import pandas as pd
|
| 66 |
+
|
| 67 |
+
df = pd.read_parquet("global_tectonic_context.parquet")
|
| 68 |
+
df.head()
|
| 69 |
+
```
|
| 70 |
+
|
| 71 |
+
## Known Limitations
|
| 72 |
+
|
| 73 |
+
- 1.0° resolution is coarse; finer grids (e.g. 0.25°) trade runtime for detail.
|
| 74 |
+
- Bilinear interpolation on the age grid can return null values near coastlines even over oceanic crust, slightly undercounting true oceanic coverage.
|
| 75 |
+
- Distances are computed on an equidistant cylindrical projection — accurate at global scale, with mild distortion near the poles.
|
| 76 |
+
- Present-day (0 Ma) snapshot only; no time-series reconstruction yet.
|
| 77 |
+
|
| 78 |
+
## Citation
|
| 79 |
+
|
| 80 |
+
If you use this dataset, please cite the underlying sources:
|
| 81 |
+
|
| 82 |
+
- Müller, R.D. et al. (2019), *Tectonics*, 38(6).
|
| 83 |
+
- Seton, M. et al. (2020), *Geochemistry, Geophysics, Geosystems*, 21(10).
|
| 84 |
+
- Mather, B. et al., *GPlately* (GitHub: GPlates/gplately).
|
| 85 |
+
|
| 86 |
+
## License
|
| 87 |
+
|
| 88 |
+
CC-BY-4.0
|