Datasets:
File size: 4,639 Bytes
10df2bc 31c1968 10df2bc 31c1968 10df2bc 31c1968 10df2bc 7ff24c2 8028ced 0dddcf3 7ff24c2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 |
---
language:
- en
license: mit
pretty_name: Ocean Floor Bathymetry Enhancement Dataset
size_categories:
- 10K<n<100K
tags:
- bathymetry
- ocean-mapping
- climate-change
- uncertainty-quantification
- earth-observation
task_categories:
- image-segmentation
- other
task_ids:
- super-resolution
- semantic-segmentation
---
--
# Ocean Floor Bathymetry Enhancement Dataset
This dataset contains bathymetric data supporting the research presented in "Learning Enhanced Structural Representations with Block-Based Uncertainties for Ocean Floor Mapping" (ICLR 2025). It provides paired low-resolution and high-resolution bathymetric samples from various ocean regions worldwide.
## Overview
Accurate ocean modeling and coastal hazard prediction depend on high-resolution bathymetric data; yet, current worldwide datasets are too coarse for exact numerical simulations. This dataset addresses this gap by providing paired samples that can be used to train deep learning models for bathymetric enhancement with uncertainty quantification.
## Dataset Structure
The dataset is organized as follows:
- `source.tar.gz`: Contains low-resolution (32×32) bathymetry samples
- NumPy (.npy) files containing single-channel depth measurements
- `target.tar.gz`: Contains high-resolution bathymetry samples
- NumPy (.npy) files containing corresponding higher resolution measurements
- `data.csv`: Contains metadata for each sample including location, coordinates, etc.
## Data Coverage
The dataset includes samples from six major oceanic regions:
1. Western Pacific Region - Contains complex underwater ridge systems and notable bathymetric variation
2. Indian Ocean Basin - Notable for tsunami risk and tectonic activity
3. Eastern Atlantic Coast - Characterized by tsunami-prone areas and coastal flooding
4. South Pacific Region - Features cyclones and wave-driven inundation patterns
5. Eastern Pacific Basin - Contains frequent tsunamis and submarine volcanism
6. North Atlantic Basin - Known for hurricanes and storm surges
## Usage
The dataset includes a custom PyTorch dataset loader class that handles loading, normalization, and preprocessing:
```python
from dataset import BathyGEBCOSuperResolutionDataset
# Initialize the dataset
dataset = BathyGEBCOSuperResolutionDataset(
base_dir="path/to/extracted/data",
split_type="train" # or "test"
)
# Access a sample
[low_res_16x16, low_res_32x32, high_res_64x64], metadata = dataset[0]
# Metadata contains information about the sample
print(metadata['location_name']) # e.g., "Western Pacific Region"
print(metadata['latitude'], metadata['longitude']) # Geographical coordinates
```
The dataset loader automatically handles normalization and can be configured with specific statistics:
```python
# Initialize with custom normalization parameters
cfg = {
'mean': -3911.3894,
'std': 1172.8374,
'max': 0,
'min': -10994
}
dataset = BathyGEBCOSuperResolutionDataset(
base_dir="path/to/extracted/data",
split_type="train",
cfg=cfg
)
```
## Related Research
This dataset was developed to support research on uncertainty-aware deep learning for bathymetric enhancement. The associated paper introduces a block-based uncertainty mechanism for capturing local bathymetric complexity with spatially adaptive confidence estimates.
## Citation
If you use this dataset in your research, please cite:
```
@misc{minoza_bathydataset2025,
author = { Jose Marie Antonio Minoza },
title = { Global Ocean Floor Bathymetry Enhancement Dataset (Revision 31c1968) },
year = 2025,
url = { https://huggingface.co/datasets/jomaminoza/global-ocean-floor-bathymetry-enhancement-dataset },
doi = { 10.57967/hf/5397 },
publisher = { Hugging Face }
}
@inproceedings{minoza2025learning,
title={Learning Enhanced Structural Representations with Block-Based Uncertainties for Ocean Floor Mapping},
author={Jose Marie Antonio Minoza},
booktitle={Tackling Climate Change with Machine Learning Workshop at ICLR},
year={2025}
}
@misc{ocean-floor-mapping2025_modelzoo,
doi = {10.5281/ZENODO.15272540},
author = {Minoza, Jose Marie Antonio},
title = {Model Zoo: Learning Enhanced Structural Representations with Block-Based Uncertainties for Ocean Floor Mapping},
publisher = {Zenodo},
year = {2025},
copyright = {Creative Commons Attribution 4.0 International}
}
```
## License
This dataset is licensed under the MIT License.
## Acknowledgments
- GEBCO for providing the original bathymetric data
- The research was presented at the ICLR 2025 Workshop on Tackling Climate Change with Machine Learning |