zl程序教程

您现在的位置是:首页 >  其他

当前栏目

Google Earth Engine——1980-2021Daymet V4提供北美大陆、夏威夷和波多黎各的每日天气参数的网格化估计(波多黎各的数据从1950年开始提供)数据集

Google数据 参数 开始 每日 提供 Engine Earth
2023-09-11 14:15:12 时间

Daymet V4 provides gridded estimates of daily weather parameters for Continental North America, Hawaii, and Puerto Rico (Data for Puerto Rico is available starting in 1950). It is derived from selected meteorological station data and various supporting data sources.

Compared to the previous version, Daymet V4 provides effective solutions to known issues and further considers improvements to what were believed to be input weather station biases. Improvements include:

  • Reductions in the timing bias of input reporting weather station measurements.

  • Improvement to the three-dimensional regression model techniques in the core algorithm.

  • A novel approach to handling high elevation temperature measurement biases.

Documentation:

  • ORNL DAAC Dataset Documentation

  • Dataset Documentation

  • The THREDDS location for this Collection

    Daymet V4提供北美大陆、夏威夷和波多黎各的每日天气参数的网格化估计(波多黎各的数据从1950年开始提供)。它是由选定的气象站数据和各种辅助数据来源得出的。

    与以前的版本相比,Daymet V4对已知的问题提供了有效的解决方案,并进一步考虑改进被认为是输入气象站的偏差。改进措施包括

    减少了输入报告气象站测量的时间偏差。

    对核心算法中的三维回归模型技术的改进。

    处理高海拔地区温度测量偏差的新方法。

    文件。

    ORNL DAAC数据集文档

    数据集文档

    该数据集的THREDDS位置

Dataset Availability

1980-01-01T00:00:00 - 2020-12-30T00:00:00

Dataset Provider

NASA ORNL DAAC at Oak Ridge National Laboratory

Collection Snippet

ee.ImageCollection("NASA/ORNL/DAYMET_V4")

Resolution

1000 meters

Bands Table

NameDescriptionMin*Max*Units
daylDuration of the daylight period. Based on the period of the day during which the sun is above a hypothetical flat horizon.086400seconds
prcpDaily total precipitation, sum of all forms converted to water-equivalent.0544mm
sradIncident shortwave radiation flux density, taken as an average over the daylight period of the day.01051W/m^2
sweSnow water equivalent, the amount of water contained within the snowpack.013931kg/m^2
tmaxDaily maximum 2-meter air temperature.-6060°C
tminDaily minimum 2-meter air temperature.-6042°C
vpDaily average partial pressure of water vapor.08230Pa

 数据引用:

Thornton, M.M., R. Shrestha, Y. Wei, P.E. Thornton, S. Kao, and B.E. Wilson. {YEAR}. Daymet: Daily Surface Weather Data on a 1-km Grid for North America, Version 4. ORNL DAAC, Oak Ridge, Tennessee, USA

Other Citation Details - Thornton, M.M., R. Shrestha, Y. Wei, P.E. Thornton, S. Kao, and B.E. Wilson. 2020. Daymet: Daily Surface Weather Data on a 1-km Grid for North America, Version 4. ORNL DAAC, Oak Ridge, Tennessee, USA. doi:10.3334/ORNLDAAC/1840

 Daymet: Daily Surface Weather Data on a 1-km Grid for North America, Version 4, https://doi.org/10.3334/ORNLDAAC/1840

 代码:

var dataset = ee.ImageCollection('NASA/ORNL/DAYMET_V4')
                  .filter(ee.Filter.date('2017-04-01', '2017-04-30'));
var maximumTemperature = dataset.select('tmax');
var maximumTemperatureVis = {
  min: -40.0,
  max: 30.0,
  palette: ['1621A2', 'white', 'cyan', 'green', 'yellow', 'orange', 'red'],
};
Map.setCenter(-110.21, 35.1, 4);
Map.addLayer(maximumTemperature, maximumTemperatureVis, 'Maximum Temperature');