GEE下载气象数据(降雨、气温、风向等)

news/2024/11/16 20:39:47/

1.数据描述

ERA5 Monthly Aggregates - Latest Climate Reanalysis Produced by ECMWF / Copernicus Climate Change ServiceERA5 is the fifth generation ECMWF atmospheric reanalysis of the global climate. Reanalysis combines model data with observations from across the world into a globally complete and consistent dataset. ERA5 replaces its predecessor, the ERA-Interim reanalysis.

数据月度汇总

ERA5 MONTHLY provides aggregated values for each month for seven ERA5 climate reanalysis parameters: 2m air temperature, 2m dewpoint temperature, total precipitation, mean sea level pressure, surface pressure, 10m u-component of wind and 10m v-component of wind. Additionally, monthly minimum and maximum air temperature at 2m has been calculated based on the hourly 2m air temperature data. Monthly total precipitation values are given as monthly sums. All other parameters are provided as monthly averages.

ERA5 data is available from 1979 to three months from real-time. More information and more ERA5 atmospheric parameters can be found at the Copernicus Climate Data Store.

Provider’s Note: Monthly aggregates have been calculated based on the ERA5 hourly values of each parameter.

2. 确定下载的范围

本文通过经纬度坐标确定下载范围。
([97.51366, 32.63200],
[97.51366, 11.48811],
[124.3549, 11.48811],
[124.3549, 32.63200])

//研究范围
var geometry = ee.Geometry.Polygon([[[97.51366, 32.63200],[97.51366, 11.48811],[124.3549, 11.48811],[124.3549, 32.63200]]], null, false);
var outsideLine = ee.Image().toByte() .paint({featureCollection:geometry,color:0,width:1  });
Map.centerObject(geometry, 5);
Map.addLayer(outsideLine,{color:'000000'},"outsideLine");

3.选择下载的气象波段

数据包含以下的波段:
请添加图片描述
以2020年5月平均气温为例

var dataset = ee.ImageCollection("ECMWF/ERA5/MONTHLY").select('mean_2m_air_temperature')// .filterDate('2020-05-01', '2020-06-01');.filter(ee.Filter.date( '2020-05')).median().clip(geometry);var visualization = {min: 250.0,max: 320.0,palette: ['000096','0064ff', '00b4ff', '33db80', '9beb4a','ffeb00', 'ffb300', 'ff6400', 'eb1e00', 'af0000']
};

4. 导出数据

crs:指定导出数据的坐标系。4326是WGS 84 - WGS84 - World Geodetic System 1984, used in GPS。可通过http://epsg.io/?q=4326查询。

Export.image.toDrive({image: dataset,description: 'total_precipitation',folder:'fire',crs: "EPSG:4326",region:geometry,maxPixels:10e10,
});

5. 下载到本地

打开Google云盘下载即可
请添加图片描述


http://www.ppmy.cn/news/201743.html

相关文章

天气预报接口(weather.com.cn)

http://weather.com.cn/data/city3jdata/china.html(省份列表) http://weather.com.cn/data/city3jdata/provshi/10121.html(地区列表) http://weather.com.cn/data/city3jdata/station/1012101.html(县城列表&#x…

html天气预报

天气预报 天气预报 <body> <div class"top"> <div class"title_logo"></div> <p class"title">天气预报</p> <p class"current_city">当前城市&#xff1a;重庆</p> <p class&quo…

[发布]看天气WeatherCan V1.0 ---气象数据分析系统web版

疫情封闭在家&#xff0c;把这两年的技术整理了一下&#xff0c;做了一套比较完整的气象数据分析处理系统&#xff1a;WeatherCan。发布出来大家试用。程序还在开发中&#xff0c;功能很不完善&#xff0c;纯业余兴趣开发&#xff0c;有建议或想参与开发的可跟我联系&#xff1…

C++天气预报小软件

前言&#xff1a;这个东西是八月份自己捣鼓着玩的 现记录下 需要解决的问题&#xff1a;1.选择对应的接口&#xff08;稳定&#xff0c;最好使用官方提供的&#xff09;2.获取数据2.对返回数据的处理 问题1&#xff1a;天气接口的获取 >通过城市名 来获取当前城市的温度以…

科普系列--天气气象的监测和设备

天气预报的各种数据监测&#xff0c; 监测设备的种类和说明等信息。 深圳市气象局&#xff08;台&#xff09;深圳市气象局门户网站为您提供权威、及时、准确的深圳天气预警、天气预报、天气实况、台风路径、深圳气候等信息服务&#xff0c;为深圳及其周边城市的生产生活提供全…

【QT开发专题-天气预报】14. 请求天气数据

本专栏将会在未来4个月内,完成以下几个 Qt 项目: 《天气预报》《文本编辑器》《俄罗斯方块》《绘图板》《网络聊天室》《串口助手》完成时间预计在 2022-12-31,文章数目在50篇左右,更新完毕之后,价格恢复到 ¥299 专栏优势: 每个项目都是从零新建工程开始良好的代码风格…

数值天气预报

The Quiet Revolution of Numerical Weather Prediction Peter Bauer, Alan Thorpe & Gilbert Brunet http://www.nature.com/nature/journal/v525/n7567/full/nature14956.html 摘要 数值天气预报的发展如同一次寂静革命&#xff08;译注1&#xff09;&#xff0c;来自…

Qt 天气预报 天气查询 (代码附上)

参考链接&#xff1a;https://blog.csdn.net/fangye945a/article/details/84933234 QT获取天气信息一般都是通过调用天气服务器的接口来获取的&#xff0c;而获取天气的接口有很多&#xff0c;大家可以自行在网上查找。 源码找到了&#xff0c;写的随意了点&#xff0c;别建议…