Datasets:
Dataset Viewer
The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.
Global Satellite Flood Detection - U-Net Ready Patches (sf-p-256)
This repository contains a highly optimized, machine-learning-ready dataset compiled from various globally collected satellite images and diverse flood events.
π οΈ Data Processing Pipeline
- Patching: Images cropped into
256x256patches. - NaN Filtering: Patches with more than
30%missing data removed. - Imputation: Remaining NaN/Inf values set to
0.0. - Split:
train(70%),val(15%),test(15%).
π Dataset Structure
images/: Sentinel-1 SAR (VV, VH). Shape(256, 256, 2).ndwi/: NDWI from Sentinel-2. Shape(256, 256, 1).masks/: Binary ground truth. Shape(256, 256, 1).
π Global Normalization Stats
stats.npz contains train-only mean/std for normalization.
πΌοΈ Visual Samples
π How to Load
import numpy as np
s1_patch = np.load('train/images/train_00001.npy')
ndwi_patch = np.load('train/ndwi/train_00001.npy')
mask_patch = np.load('train/masks/train_00001.npy')
stats = np.load('stats.npz')
s1_mean, s1_std = stats['s1_mean'], stats['s1_std']
s1_normalized = (s1_patch - s1_mean) / (s1_std + 1e-8)
- Downloads last month
- 793
