高程数据下载——DLR_SRTM_说明

本文详细介绍了如何免费获取德国航空航天中心(DLR)提供的SRTM X-SAR数字高程模型(DEMs),涵盖了数据的获取途径、覆盖范围、数据格式和使用条件。SRTM数据源自2000年的航天飞机雷达地形任务,数据可通过EOWEB-NG、FTP下载或EOC Geoservice进行访问。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

翻译DLR文档

DLR SRTM X-SAR Digital Elevation Models

 

 

The German Aerospace Center DLR is making the SRTM X-SAR digital elevation models (DEMs) available at no cost. The data can be accessed in three ways

 

  • Traditional search and ordering via the DLR Earth Observation data portal EOWEB-NG,
  • FTP bulk download via EOWEB-NG
  • Viewing (WMS) and download (WCS/WFS) via the EOC Geoservice

 

This document contains background information on the mission and the DEM products, on data access and data use. More detailed information can be obtained by following the links provided.

 

 

The Shuttle Radar Topography Mission - SRTM

 

The SRTM X-SAR DEMs were generated from X-band synthetic aperture radar (SAR) data acquired during the Shuttle Radar Topography Mission (SRTM) in 2000. The SRTM mission was conducted jointly between the German Aerospace Center DLR, the Italian Space Agency ASI, and NASA/JPL (USA). From February 11 to 22, 2000, two interferometric radar systems onboard the Space Shuttle Endeavor acquired data with the objective to generate a global high resolution digital elevation model. The American radar system, operating in C-band, was complemented by the German-Italian X-SAR, a higher resolution X- band synthetic aperture radar (SAR) system.

 

The SRTM DEMs were generated using 'radar interferometry' or 'InSAR'. Two SAR antennas, one inside the Space Shuttle cargo bay, the other at the end of a 60 m extension pole, simultaneously acquired radar data. During the processing, the phase differences of the two corresponding datasets are compared and converted into elevation values. An introduction to SAR interferometry can be found at this site.

 

The DLR SRTM website provides additional information on the SRTM X-SAR mission. Further details on the SRTM mission, on technology, accuracies, and applications are available on the NASA SRTM website and in this document.

 

While the DEMs generated from the American C-band data are available through the United States Geological Survey USGS and other sites, the X-SAR DEMs can be obtained via DLR.

 

### 欧洲地区数字高程模型(DEM)数据概述 对于欧洲地区的数字高程模型(DEM)数据需求,可以从多个权威来源获取。以下是几种适合的选择: #### TanDEM-X DEM 数据 TanDEM-X 提供了全球范围内的高分辨率数字高程模型数据,在地理信息系统(GIS)中有广泛应用。其主要特点包括高分辨率地形信息支持地形分析、建模以及地理研究等任务[^1]。TanDEM-X 的分辨率为 12 米,适用于需要较高精度的研究项目。 #### Copernicus DEM (COP-DEM) Copernicus DEM 是由欧洲航天局发布的另一款重要产品,基于与 TanDEM-X 类似的数据源生成。此 DEM 主要分为三种分辨率版本: - **EEA-10**: 针对欧洲经济区的 10 米分辨率 DSM 数据,仅限部分地区开放访问。 - **GLO-30 和 GLO-90**: 全球范围内分别提供 30 米和 90 米分辨率的数据集,其中 GLO-30 特别适合作为欧洲区域的基础 DEM 使用[^2]。 这些数据均为数字表面模型(DSM),能够反映地球表面上包括建筑、植被在内的实际高度情况。此外,它们还具备较高的平面及垂直方向上的准确性,在开源 DEM 中表现优异。 #### ASF DAAC 的 DEM 资料库 阿拉斯加卫星设施分发中心 (Alaska Satellite Facility Distributed Active Archive Center, 简称 ASF DAAC) 近期也推出了新的 DEM 数据资源——其中包括令人瞩目的 12.5 米分辨率选项。尽管具体覆盖范围可能有所限制,但对于特定应用场景来说是非常有价值的补充材料之一[^3]。 --- ### 如何下载? 针对上述提到的不同类型的 DEM 数据,可通过以下途径实现在线检索并完成下载操作: - 对于 **TanDEM-X** ,建议联系德国宇航中心 DLR 或者查阅相关官方文档来了解最新的可用性和许可条款; - 获取 **Copernicus DEM** 可直接前往 ESA 官网或者专门设立的服务平台如 WEkEO 平台进行注册后申请; - 如果考虑采用来自 **ASF DAAC** 所提供的特殊分辨率成果,则需浏览他们的门户网站探索更多细节说明文件及其对应的链接地址。 下面展示一段 Python 示例脚本帮助自动化批量查询指定区域内感兴趣位置附近的 SRTM V4 型号公共存档资料作为备选方案参考用途: ```python import requests from shapely.geometry import box def search_srtm_data(lon_min, lat_min, lon_max, lat_max): area_of_interest = box(lon_min, lat_min, lon_max, lat_max).wkt url = f"https://search.usgs.gov/search/api/v1.0/results?q={area_of_interest}&collection=srtm" response = requests.get(url) data = response.json() results = [] for item in data['items']: title = item['title'] link = item['link'] results.append((title, link)) return results if __name__ == "__main__": bbox = (-7.8, 49.6, 2.5, 58.7) # Example bounding box over UK & Ireland srtm_results = search_srtm_data(*bbox) for result in srtm_results[:5]: print(f"{result[0]} -> {result[1]}") ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值