WorldClim version 1 has average monthly global climate data for minimum, mean, and maximum temperature and for precipitation.
WorldClim version 1 was developed by Robert J. Hijmans, Susan Cameron, and Juan Parra, at the Museum of Vertebrate Zoology, University of California, Berkeley, in collaboration with Peter Jones and Andrew Jarvis (CIAT), and with Karen Richardson (Rainforest CRC).
WorldClim第1版有最低、平均和最高温度以及降水的每月平均全球气候数据。
WorldClim第一版是由加州大学伯克利分校脊椎动物学博物馆的Robert J. Hijmans、Susan Cameron和Juan Parra与Peter Jones和Andrew Jarvis(CIAT)以及Karen Richardson(Rainforest CRC)合作开发。
Dataset Availability
1960-01-01T00:00:00 - 1991-01-01T00:00:00
Dataset Provider
University of California, Berkeley
Collection Snippet
ee.ImageCollection("WORLDCLIM/V1/MONTHLY")
Resolution
927.67 meters
Bands Table
Name | Description | Min* | Max* | Units | Scale |
---|---|---|---|---|---|
tavg | Mean temperature | -536 | 394 | °C | 0.1 |
tmin | Minimum temperature | -573 | 325 | °C | 0.1 |
tmax | Maximum temperature | -500 | 490 | °C | 0.1 |
prec | Precipitation | 0 | 2949 | mm | 0 |
* = Values are estimated
Name | Type | Description |
---|---|---|
month | Double | Month |
引用:
Hijmans, R.J., S.E. Cameron, J.L. Parra, P.G. Jones and A. Jarvis, 2005. Very High Resolution Interpolated Climate Surfaces for Global Land Areas. International Journal of Climatology 25: 1965-1978. doi:10.1002/joc.1276.
版本:
var dataset = ee.ImageCollection('WORLDCLIM/V1/MONTHLY');
var meanTemperature = dataset.select('tavg');
var meanTemperatureVis = {
min: -400.0,
max: 300.0,
palette: ['blue', 'purple', 'cyan', 'green', 'yellow', 'red'],
};
Map.setCenter(71.72, 52.48, 3.0);
Map.addLayer(meanTemperature, meanTemperatureVis, 'Mean Temperature');