srtm30m-ozt2-v2
收藏资源简介:
该数据集包含 SRTM 30米分辨率的高程数据,采用 OZT2 瓦片格式存储。每个瓦片大小为 256×256 像素,使用 Web Mercator 投影(EPSG:3857)。OZT2 格式具有约93%的压缩率(相比 Terrarium PNG),采用基于梯度的预测(左邻像素+垂直梯度)、自适应比特深度(每通道8/10/12/16位)以及 Zstd q3 编解码器(编码速度比 Brotli 快30倍,解码速度相同)。数据集适用于图像生成任务,特别是地形高程图像生成或相关的地理空间模型训练。
This dataset contains SRTM 30-meter resolution elevation data stored in OZT2 tile format. Each tile is 256x256 pixels, using Web Mercator projection (EPSG:3857). OZT2 format has about 93% compression ratio (compared to Terrarium PNG), using gradient-based prediction (left neighbor + vertical gradient), adaptive bit depth (8/10/12/16 bits per channel), and Zstd q3 codec (30x faster encoding than Brotli, same decoding speed). The dataset is suitable for image generation tasks, especially terrain elevation image generation or related geospatial model training.
数据集概述
数据集名称:SRTM 30m OZT2 Elevation Tiles
数据集地址:https://huggingface.co/datasets/aliasfox/srtm30m-ozt2-v2
数据集内容
该数据集包含SRTM 30米分辨率的数字高程数据,以OZT2瓦片格式进行编码存储。数据覆盖全球范围,每个瓦片为256×256像素,采用Web Mercator投影(EPSG:3857)。
数据格式特性
OZT2是一种高性能的高程瓦片格式,具有以下技术特点:
- 压缩率:相比Terrarium PNG格式,体积缩小约93%
- 预测算法:基于梯度的预测(左邻像素 + 垂直梯度)
- 量化方式:自适应位深(每通道8/10/12/16位)
- 编码器:Zstd q3(编码速度比Brotli快30倍,解码速度相当)
数据来源
数据源自SRTM 30m高程数据(由CGIAR-CSI提供),经由aliasfox/srtm30m-merged数据集处理而来。
使用方法
数据集通过Hugging Face Hub提供文件访问,使用HfFileSystem和openzenith库进行读取与解码,示例代码如下:
python from huggingface_hub import HfFileSystem from openzenith import decode_v2
fs = HfFileSystem(repo_id="aliasfox/srtm30m-ozt2-v2") with fs.open("tiles/z10/163/395.ozt2", "rb") as f: data = f.read() elevation, meta = decode_v2(data)
数据规模与标注
- 数据规模:样本数量少于1,000(n<1K)
- 标注情况:无需人工标注(no-annotation)
- 语言:英语
- 任务类型:图像生成




