Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc
|
| 3 |
+
tags:
|
| 4 |
+
- biology
|
| 5 |
+
- earth
|
| 6 |
+
- polar
|
| 7 |
+
- geospatial
|
| 8 |
+
- tiff
|
| 9 |
+
- image
|
| 10 |
+
- climate
|
| 11 |
+
pretty_name: arcticDEM
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# ArcticDEM 32 m Mosaic
|
| 15 |
+
|
| 16 |
+
## Dataset Summary
|
| 17 |
+
A publicly-accessible digital elevation mosaic covering the Arctic region, derived from the Polar Geospatial Center’s ArcticDEM project, at 32 m horizontal resolution.
|
| 18 |
+
|
| 19 |
+
---
|
| 20 |
+
|
| 21 |
+
## 📘 Dataset Description
|
| 22 |
+
|
| 23 |
+
- **Source**
|
| 24 |
+
Provided by the University of Minnesota’s Polar Geospatial Center (PGC), part of the ArcticDEM initiative funded by NSF & NGA ([website](https://www.pgc.umn.edu/data/arcticdem/)).
|
| 25 |
+
|
| 26 |
+
- **Spatial Coverage**
|
| 27 |
+
Pan-Arctic: regions north of ~60° N (Greenland, Canada, Russia, Alaska, etc.).
|
| 28 |
+
|
| 29 |
+
- **Resolution**
|
| 30 |
+
Mosaic tiles at 32 m pixel spacing derived from 2 m strip data.
|
| 31 |
+
|
| 32 |
+
- **Temporal Context**
|
| 33 |
+
Mosaics built from multi-date strip DEMs, assembled via median-stacking; the 32 m product is a static mosaic without temporal layers.
|
| 34 |
+
|
| 35 |
+
- **File Format & Projection**
|
| 36 |
+
- Format: 32-bit GeoTIFFs
|
| 37 |
+
- Projection: NSIDC Polar Stereographic North (EPSG:3413)
|
| 38 |
+
- Vertical datum: WGS84 ellipsoid
|
| 39 |
+
|
| 40 |
+
- **Data and Quality Bands**
|
| 41 |
+
- Elevation band
|
| 42 |
+
- Optional quality masks (source count, med-abs-dev)
|
| 43 |
+
- Voids flagged with NoData (–9999)
|
| 44 |
+
---
|
| 45 |
+
|
| 46 |
+
## 🔧 Supported Tasks
|
| 47 |
+
|
| 48 |
+
- Regional elevation modeling
|
| 49 |
+
- Terrain analysis (gradient, aspect, watershed)
|
| 50 |
+
- Large-scale environmental and geospatial modeling
|
| 51 |
+
- Baseline surface for Arctic research & visualization
|
| 52 |
+
|
| 53 |
+
---
|
| 54 |
+
|
| 55 |
+
## Get Started
|
| 56 |
+
|
| 57 |
+
```python
|
| 58 |
+
from datasets import load_dataset
|
| 59 |
+
|
| 60 |
+
dataset = load_dataset('cgeorgiaw/arcticDEM')
|
| 61 |
+
```
|