AI-generated Key Takeaways
-
The BESS Radiation dataset provides daily estimates of shortwave radiation and photosynthetically active radiation (PAR) at a 5km resolution.
-
It covers the period from 2001 to 2021 and is derived from MODIS atmospheric products using a simplified process-based model.
-
The dataset is available through Google Earth Engine and is provided by Seoul National University.
-
It's licensed under CC-BY-4.0 and is useful for studies on evapotranspiration, GPP, and radiation.

- Dataset Availability
- 2001-01-01T00:00:00Z–2021-12-31T00:00:00Z
- Dataset Provider
- Seoul National University (SNU)
- Cadence
- 1 Day
- Tags
Description
Breathing Earth System Simulator (BESS) is a simplified process-based model that couples atmosphere and canopy radiative transfers, canopy photosynthesis, transpiration, and energy balance. It couples an atmospheric radiative transfer model and artificial neural network with forcings from MODIS atmospheric products to generate 5-km daily products.
Publications:
- Ryu Youngryel, Chongya Jiang, Hideki Kobayashi, Matteo Detto, MODIS-derived global land products of shortwave radiation and diffuse and total photosynthetically active radiation at 5km resolution from 2000. Remote Sensing of Environment, Volume 204, 2018. doi:10.1016/j.rse.2017.09.021
Bands
Pixel Size
5500 meters
Bands
Name | Units | Pixel Size | Description |
---|---|---|---|
PAR_Daily |
W/m^2 | meters | Surface downwelling photosynthetic radiative flux in air |
PARdiff_Daily |
W/m^2 | meters | Surface diffuse downwelling photosynthetic radiative flux in air |
RSDN_Daily |
W/m^2 | meters | Surface downwelling shortwave flux in air |
Terms of Use
Terms of Use
Explore with Earth Engine
Code Editor (JavaScript)
var dataset = ee.ImageCollection('SNU/ESL/BESS/Rad/v1'); var visParams = { bands: ['PAR_Daily'], min: 0, max: 70, palette: ['black', 'purple', 'blue', 'yellow', 'orange', 'red'] }; Map.setCenter(2.1, 24.9, 3); Map.addLayer( dataset, visParams, 'Surface downwelling photosynthetic radiative flux (W/m^2)');