{"type": "FeatureCollection", "features": [{"id": "10.5281/zenodo.14833053", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:22:24Z", "type": "Dataset", "created": "2025-02-06", "title": "Surface soil moisture for Europe 2014-2024 at 1 km annual and quarterly aggregates", "description": "Copernicus Land Monitoring Services provides Surface Soil Moisture 2014-present (raster 1 km), Europe, daily \u2013 version 1. Each day covers only 5 to 10% of European land mask and shows lines of scenes (obvious artifacts). This is the long-term aggregates of daily images of soil moisture (0\u2013100%) based on two types of aggregation:    Long-term quarterly (qr.1 - winter, qr.2 - spring, qr.3 - summer and qr.4 - autumn),  Annual quantiles P.05, P.50 and P.95,   The soil moisture rasters are based on Sentinel 1 and described in detail in:\u00a0    Bauer-Marschallinger, B. ; Freeman, V. ; Cao, S. ; Paulik, C. ; Schaufler, S. ; Stachl, T. ; Modanesi, S. ; Massari, C. ; Ciabatta, L. ; Brocca, L. ; Wagner, W.\u00a0Toward Global Soil Moisture Monitoring With Sentinel-1: Harnessing Assets and Overcoming Obstacles.\u00a0IEEE Transactions on Geoscience and Remote Sensing\u00a02019, 1 - 20. DOI\u00a010.1109/TGRS.2018.2858004   You can access and download the original data as .nc files from: https://globalland.vito.be/download/manifest/ssm_1km_v1_daily_netcdf/.  The files with pattern 'soil.moisture_s1.clms.qr.*.p0.*.gf_m_1km_20140101_20241231_eu_epsg4326_v20250211.tif' are the gap-filled soil moisture quarterly estimates. For gap filling I build a model using cca 250k random training points and relationship with CHELSA climate bioclimatic variables, ESA CCI snow cover probability, ESA CCI forest and bare areas percent cover and Global Water Pack long-term surface water fraction. The gap-filling model had an R-square of 0.96 and RMSE of 6.5% of soil moisture.  Aggregation has been generated using the terra package in R in combination with the matrixStats::rowQuantiles function. Tiling system and land mask for pan-EU is also available.  library(terra) library(matrixStats) g1 = terra::vect('/mnt/inca/EU_landmask/tilling_filter/eu_ard2_final_status.gpkg') ## 1254 tiles tile = g1[534] nc.lst = list.files('/mnt/landmark/SM1km/ssm_1km_v1_daily_netcdf/', pattern = glob2rx('*.nc$'), full.names=TRUE) ## 3726 ## test it #r = terra::rast(nc.lst[100:210])  agg_tile = function(r, tile, pv=c(0.05,0.5,0.95), out.year='2015.annual'){   bb = paste(as.vector(ext(tile)), collapse = '.')   out.tif = paste0('./eu_tmp/', out.year, '/sm1km_', pv, '_', out.year, '_', bb, '.tif')   if(any(!file.exists(out.tif))){     r.t = terra::crop(r, ext(tile))     r.t = as.data.frame(r.t, xy=TRUE, na.rm=FALSE)     sel.c = grep(glob2rx('ssm$'), colnames(r.t))     t1s = cbind(data.frame(matrixStats::rowQuantiles(as.matrix(r.t[,sel.c]), probs = pv, na.rm=TRUE)),  data.frame(x=r.t$x,  y=r.t$y))     ## write to GeoTIFFs     r.o = terra::rast(t1s[,c('x','y','X5.','X50.','X95.')], type='xyz', crs='+proj=longlat +datum=WGS84 +no_defs')     for(k in 1:length(pv)){        terra::writeRaster(r.o[[k]], filename=out.tif[k], gdal=c('COMPRESS=DEFLATE'), datatype='INT2U', NAflag=32768, overwrite=FALSE)     }     rm(r.t); gc()     tmpFiles(remove=TRUE)   } }  ## quarterly values: lA = data.frame(filename=nc.lst) library(lubridate) lA$Date = ymd(sapply(lA$filename, function(i){substr(strsplit(basename(i), '_')[[1]][4], 1, 8)})) #summary(is.na(lA$Date)) #hist(lA$Date, breaks=60) lA$quarter = quarter(lA$Date, fiscal_start = 11) summary(as.factor(lA$quarter))  for(qr in 1:4){   #qr=1   pth = paste0('A.q', qr)   rs = terra::rast(lA$filename[lA$quarter==qr])   x = parallel::mclapply(sample(1:length(g1)), function(i){try( agg_tile(rs, tile=g1[i], out.year=pth) )}, mc.cores=20)   for(type in c(0.05,0.5,0.95)){     x <- list.files(path=paste0('./eu_tmp/', pth), pattern=glob2rx(paste0('sm1km_', type, '_*.tif$')), full.names=TRUE)     out.tmp <- paste0(pth, '.', type, '.sm1km_eu.txt')     vrt.tmp <- paste0(pth, '.', type, '.sm1km_eu.vrt')     cat(x, sep=' n', file=out.tmp)     system(paste0('gdalbuildvrt -input_file_list ', out.tmp, ' ', vrt.tmp))     system(paste0('gdal_translate ', vrt.tmp, ' ./cogs/soil.moisture_s1.clms.qr.', qr, '.p', type, '_m_1km_20140101_20241231_eu_epsg4326_v20250206.tif -ot 'Byte' -r 'near' --config GDAL_CACHEMAX 9216 -co BIGTIFF=YES -co NUM_THREADS=80 -co COMPRESS=DEFLATE -of COG -projwin -32 72 45 27'))   } }  ## per year ---- for(year in 2015:2023){   l.lst = nc.lst[grep(year, basename(nc.lst))]   r = terra::rast(l.lst)   pth = paste0(year, '.annual')   x = parallel::mclapply(sample(1:length(g1)), function(i){try( agg_tile(r, tile=g1[i], out.year=pth) )}, mc.cores=40)   ## Mosaics:   for(type in c(0.05,0.5,0.95)){     x <- list.files(path=paste0('./eu_tmp/', pth), pattern=glob2rx(paste0('sm1km_', type, '_*.tif$')), full.names=TRUE)     out.tmp <- paste0(pth, '.', type, '.sm1km_eu.txt')     vrt.tmp <- paste0(pth, '.', type, '.sm1km_eu.vrt')     cat(x, sep=' n', file=out.tmp)     system(paste0('gdalbuildvrt -input_file_list ', out.tmp, ' ', vrt.tmp))     system(paste0('gdal_translate ', vrt.tmp, ' ./cogs/soil.moisture_s1.clms.annual.', type, '_m_1km_', year, '0101_', year, '1231_eu_epsg4326_v20250206.tif -ot 'Byte' -r 'near' --config GDAL_CACHEMAX 9216 -co BIGTIFF=YES -co NUM_THREADS=80 -co COMPRESS=DEFLATE -of COG -projwin -32 72 45 27'))   } }", "keywords": ["Soil", "Soil moisture"], "contacts": [{"organization": "Hengl, Tomislav", "roles": ["creator"]}]}, "links": [{"href": "https://doi.org/10.5281/zenodo.14833053"}, {"rel": "self", "type": "application/geo+json", "title": "10.5281/zenodo.14833053", "name": "item", "description": "10.5281/zenodo.14833053", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.5281/zenodo.14833053"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2025-02-07T00:00:00Z"}}, {"id": "10.1016/j.agwat.2021.106827", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:15:31Z", "type": "Journal Article", "created": "2021-02-27", "title": "Implementing a new texture-based soil evaporation reduction coefficient in the FAO dual crop coefficient method", "description": "Abstract   Crop evapotranspiration (ET) is a fundamental component of the hydrological cycle, especially in arid/semi-arid regions. The FAO-56 offers an operational method for deriving ET from the reduction (dual crop coefficient Kc) of the atmospheric evaporative demand (ET0). The dual coefficient approach (FAO-2Kc) is intended to improve the daily estimation of ET by separating the contribution of bare soil evaporation (E) and crop transpiration components. The FAO-2Kc has been a well-known reference for the operational monitoring of crop water needs. However, its performance for estimating the water use efficiency is limited by uncertainties in the modeled evaporation/transpiration partitioning. This paper aims at improving the soil module of the FAO-2Kc by modifying the E reduction coefficient (Kr) according to soil texture information and state-of-the-art formulations, hence, to amend the mismatch between FAO-2Kc and field-measured data beyond standard conditions. In practice this work evaluates the performance of two evaporation models, using the classical Kr (Kr,FAO) and a new texture-based Kr (Kr,text) over 33 bare soil sites under different evaporative demand and soil conditions. An offline validation is investigated by forcing both models with observed soil moisture (     \u03b8    s     ) data as input. The Kr,text methodology provides more accurate E estimations compared to the Kr,FAO method and systematically reduces biases. Using Kr,text allows reaching the lowest root means square error (RMSE) of 0.16\u2009mm/day compared to the Kr,FAO where the lowest RMSE reached is 0.88\u2009mm/day. As a step further in the assessment of the proposed methodology, ET was estimated in three wheat fields across the entire agricultural season. Both approaches were thus inter-compared in terms of ET estimates forced by SM estimated as a residual of the water balance model (online validation). Compared to ET measurements, the new formulation provided more accurate results. The RMSE was 0.66\u2009mm/day (0.71\u2009mm/day) and the R2 was 0.83 (0.78) for the texture-based (classical) Kr.", "keywords": ["0106 biological sciences", "2. Zero hunger", "570", "Evapotranspiration", "Soil texture", "FAO-2Kc", "0207 environmental engineering", "Soil moisture", "02 engineering and technology", "15. Life on land", "Soil evaporation", "01 natural sciences", "6. Clean water"]}, "links": [{"href": "https://doi.org/10.1016/j.agwat.2021.106827"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Agricultural%20Water%20Management", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1016/j.agwat.2021.106827", "name": "item", "description": "10.1016/j.agwat.2021.106827", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1016/j.agwat.2021.106827"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2021-05-01T00:00:00Z"}}, {"id": "00682004-c6b9-4c1d-8b40-3afff8bbec69", "type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[11.16, 47.52], [11.16, 47.52], [11.16, 47.52], [11.16, 47.52], [11.16, 47.52]]]}, "properties": {"themes": [{"concepts": [{"id": "climatologyMeteorologyAtmosphere"}], "scheme": "https://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_TopicCategoryCode"}, {"concepts": [{"id": "environmental factors"}, {"id": "water"}, {"id": "Soil analysis"}, {"id": "Soil"}, {"id": "soil amendments"}, {"id": "Soil biology"}, {"id": "Temperature profile"}, {"id": "moisture content"}, {"id": "Temperature"}, {"id": "Soil temperature"}], "scheme": "AGROVOC Multilingual agricultural thesaurus"}, {"concepts": [{"id": "soil profile"}, {"id": "soil moisture"}, {"id": "temperature"}], "scheme": "GEMET - Concepts, version 2.4"}, {"concepts": [{"id": "farming systems"}, {"id": "Grassland management"}, {"id": "Grassland soils"}, {"id": "grasslands"}, {"id": "permanent grasslands"}, {"id": "agriculture"}, {"id": "agricultural practices"}, {"id": "Climatic change"}], "scheme": "AGROVOC Multilingual agricultural thesaurus"}, {"concepts": [{"id": "Boden"}], "scheme": "GEMET - INSPIRE themes, version 1.0"}, {"concepts": [{"id": "opendata"}], "scheme": "Individual"}], "rights": "Restrictions applied to assure the protection of privacy or intellectual property, and any special restrictions or limitations or warnings on using the resource or metadata. (e.g. Reports, articles, papers, scientific and non-scientific works of any form, including tables, maps, or any other kind of output, in printed or electronic form, based in whole or in part on the data supplied, must contain an acknowledgement of the form: \u201cData re-used from the BonaRes Data Centre www.bonares.de. This data were created as part of BonaRes Module A-Project - SUSALPS's research activities.\u201d Although every care has been taken in preparing and testing the data, BonaRes Module A-Project- SUSALPS and BonaRes Data Centre cannot guarantee that the data are correct; neither does BonaRes Module A-Project-SUSALPS and BonaRes Data Centre accept any liability whatsoever for any error, missing data or omission in the data, or for any loss or damage arising from its use. The BonaRes Module A-Project-SUSALPS and BonaRes Data Centre will not be responsible for any direct or indirect use which might be made of the data. The access to this data is restricted during embargo time. If prior access is requested, contact the data owner/author.)", "updated": "2020-02-14", "type": "Dataset", "created": "2018-12-05", "language": "eng", "title": "SUSALPS temperature and volumetric soil water content Esterberg Subplot 3 in Esterberg intensiv", "description": "Grassland is a precious good. Grassland contributes to food security by providing fodder for dairy and beef farming, storing nutrients and increasing biodiversity. These functions that secure the fertility and yields of soil are jeopardized by climate change, especially in monane and alpine areas.\nIn SUSALPS, scientists, authorities and farmers work together to investigate the influence of climate change on i) plant biodiversity, ii) C and N storage, iii) greenhouse gas exchange, iv) socio economic conditions that influence decision making of farmers.\nA central experimental aspect is the translocation of soil mesocosms from higher elevation to lower elevation (Esterberg site at 1200m, Graswang site at 860m, Fendt at 600m, Bayreuth at 300m). To reflect the spatial heterogeneity of soils, mesocosms from three different subplots approx. 100-300m apart from each other are translocated. Since temperatures are higher and precipitation is lower in lower elevation, the translocated mesocosms experience climate change.\nThis dataset contains daily average soil temperature and volumetric soil water content in 5 and 15 cm depth.\nTreatment: Esterberg Subplot 3 in Esterberg intensiv\nDevice: Decagon 5TM\nTimescale: Daily average\nDepths: 5 and 15 cm", "formats": [{"name": "CSV"}], "keywords": ["environmental factors", "water", "Soil analysis", "Soil", "soil amendments", "Soil biology", "Temperature profile", "moisture content", "Temperature", "Soil temperature", "soil profile", "soil moisture", "temperature", "farming systems", "Grassland management", "Grassland soils", "grasslands", "permanent grasslands", "agriculture", "agricultural practices", "Climatic change", "Boden", "opendata"], "contacts": [{"name": "Kiese, Ralf", "organization": "Karlsruhe Institute of Technology (KIT)", "position": null, "roles": ["author"], "phones": [{"value": null}], "emails": [{"value": "ralf.kiese@kit.edu"}], "addresses": [{"deliveryPoint": [null], "city": "Garmisch-Partenkirchen", "administrativeArea": null, "postalCode": "82467", "country": "Germany"}], "links": [{"href": null}]}, {"name": "Kiese, Ralf", "organization": "Karlsruhe Institute of Technology (KIT)", "position": null, "roles": ["projectLeader"], "phones": [{"value": null}], "emails": [{"value": "ralf.kiese@kit.edu"}], "addresses": [{"deliveryPoint": [null], "city": null, "administrativeArea": null, "postalCode": null, "country": null}], "links": [{"href": null}]}, {"name": "BonaRes Data Centre", "organization": "Leibniz Centre for Agricultural Landscape Research (ZALF)", "position": "Research Platform 'Data' - WG Geodata", "roles": ["publisher"], "phones": [{"value": "+49 33432 82 171"}], "emails": [{"value": "bonares-datenzentrum@zalf.de"}], "addresses": [{"deliveryPoint": ["Eberswalder Strasse 84"], "city": "M\u00fcncheberg", "administrativeArea": "Brandenburg", "postalCode": "15374", "country": "Germany"}], "links": [{"href": null}]}, {"organization": "Karlsruhe Institute of Technology (KIT)", "roles": ["contributor"]}]}, "links": [{"href": "https://maps.bonares.de/mapapps/resources/apps/bonares/index.html?lang=en&mid=00682004-c6b9-4c1d-8b40-3afff8bbec69", "rel": "download"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/217290dd-a23f-4734-96d5-71b878a2fca8", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "00682004-c6b9-4c1d-8b40-3afff8bbec69", "name": "item", "description": "00682004-c6b9-4c1d-8b40-3afff8bbec69", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/00682004-c6b9-4c1d-8b40-3afff8bbec69"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"interval": ["2016-08-11T00:00:00Z", "2018-10-09T00:00:00Z"]}}, {"id": "07388e86-f38b-469a-9910-6e24af66bbf5", "type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[11.07, 47.83], [11.07, 47.83], [11.07, 47.83], [11.07, 47.83], [11.07, 47.83]]]}, "properties": {"themes": [{"concepts": [{"id": "climatologyMeteorologyAtmosphere"}], "scheme": "https://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_TopicCategoryCode"}, {"concepts": [{"id": "environmental factors"}, {"id": "water"}, {"id": "Soil analysis"}, {"id": "Soil"}, {"id": "soil amendments"}, {"id": "Soil biology"}, {"id": "Temperature profile"}, {"id": "moisture content"}, {"id": "Temperature"}, {"id": "Soil temperature"}], "scheme": "AGROVOC Multilingual agricultural thesaurus"}, {"concepts": [{"id": "soil profile"}, {"id": "soil moisture"}, {"id": "temperature"}], "scheme": "GEMET - Concepts, version 2.4"}, {"concepts": [{"id": "farming systems"}, {"id": "Grassland management"}, {"id": "Grassland soils"}, {"id": "grasslands"}, {"id": "permanent grasslands"}, {"id": "agriculture"}, {"id": "agricultural practices"}, {"id": "Climatic change"}], "scheme": "AGROVOC Multilingual agricultural thesaurus"}, {"concepts": [{"id": "Boden"}], "scheme": "GEMET - INSPIRE themes, version 1.0"}, {"concepts": [{"id": "opendata"}], "scheme": "Individual"}], "rights": "Restrictions applied to assure the protection of privacy or intellectual property, and any special restrictions or limitations or warnings on using the resource or metadata. (e.g. Reports, articles, papers, scientific and non-scientific works of any form, including tables, maps, or any other kind of output, in printed or electronic form, based in whole or in part on the data supplied, must contain an acknowledgement of the form: \u201cData re-used from the BonaRes Data Centre www.bonares.de. This data were created as part of BonaRes Module A-Project - SUSALPS's research activities.\u201d Although every care has been taken in preparing and testing the data, BonaRes Module A-Project- SUSALPS and BonaRes Data Centre cannot guarantee that the data are correct; neither does BonaRes Module A-Project-SUSALPS and BonaRes Data Centre accept any liability whatsoever for any error, missing data or omission in the data, or for any loss or damage arising from its use. The BonaRes Module A-Project-SUSALPS and BonaRes Data Centre will not be responsible for any direct or indirect use which might be made of the data. The access to this data is restricted during embargo time. If prior access is requested, contact the data owner/author.)", "updated": "2020-02-14", "type": "Dataset", "created": "2018-12-05", "language": "eng", "title": "SUSALPS temperature and volumetric soil water content Graswang Subplot 1 in Fendt intensiv", "description": "Grassland is a precious good. Grassland contributes to food security by providing fodder for dairy and beef farming, storing nutrients and increasing biodiversity. These functions that secure the fertility and yields of soil are jeopardized by climate change, especially in monane and alpine areas. In SUSALPS, scientists, authorities and farmers work together to investigate the influence of climate change on i) plant biodiversity, ii) C and N storage, iii) greenhouse gas exchange, iv) socio economic conditions that influence decision making of farmers. A central experimental aspect is the translocation of soil mesocosms from higher elevation to lower elevation (Esterberg site at 1200m, Graswang site at 860m, Fendt at 600m, Bayreuth at 300m). To reflect the spatial heterogeneity of soils, mesocosms from three different subplots approx. 100-300m apart from each other are translocated. Since temperatures are higher and precipitation is lower in lower elevation, the translocated mesocosms experience climate change. This dataset contains daily average soil temperature and volumetric soil water content in 5 and 15 cm depth. Treatment: Graswang Subplot 1 in Fendt intensiv Device: Decagon 5TM Timescale: Daily average Depths: 5 and 15 cm", "formats": [{"name": "CSV"}], "keywords": ["environmental factors", "water", "Soil analysis", "Soil", "soil amendments", "Soil biology", "Temperature profile", "moisture content", "Temperature", "Soil temperature", "soil profile", "soil moisture", "temperature", "farming systems", "Grassland management", "Grassland soils", "grasslands", "permanent grasslands", "agriculture", "agricultural practices", "Climatic change", "Boden", "opendata"], "contacts": [{"name": "Kiese, Ralf", "organization": "Karlsruhe Institute of Technology (KIT)", "position": null, "roles": ["author"], "phones": [{"value": null}], "emails": [{"value": "ralf.kiese@kit.edu"}], "addresses": [{"deliveryPoint": [null], "city": "Garmisch-Partenkirchen", "administrativeArea": null, "postalCode": "82467", "country": "Germany"}], "links": [{"href": null}]}, {"name": "Kiese, Ralf", "organization": "Karlsruhe Institute of Technology (KIT)", "position": null, "roles": ["projectLeader"], "phones": [{"value": null}], "emails": [{"value": "ralf.kiese@kit.edu"}], "addresses": [{"deliveryPoint": [null], "city": null, "administrativeArea": null, "postalCode": null, "country": null}], "links": [{"href": null}]}, {"name": "BonaRes Data Centre", "organization": "Leibniz Centre for Agricultural Landscape Research (ZALF)", "position": "Research Platform 'Data' - WG Geodata", "roles": ["publisher"], "phones": [{"value": "+49 33432 82 171"}], "emails": [{"value": "bonares-datenzentrum@zalf.de"}], "addresses": [{"deliveryPoint": ["Eberswalder Strasse 84"], "city": "M\u00fcncheberg", "administrativeArea": "Brandenburg", "postalCode": "15374", "country": "Germany"}], "links": [{"href": null}]}, {"organization": "Karlsruhe Institute of Technology (KIT)", "roles": ["contributor"]}]}, "links": [{"href": "https://maps.bonares.de/mapapps/resources/apps/bonares/index.html?lang=en&mid=07388e86-f38b-469a-9910-6e24af66bbf5", "rel": "download"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/217290dd-a23f-4734-96d5-71b878a2fca8", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "07388e86-f38b-469a-9910-6e24af66bbf5", "name": "item", "description": "07388e86-f38b-469a-9910-6e24af66bbf5", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/07388e86-f38b-469a-9910-6e24af66bbf5"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"interval": ["2016-08-11T00:00:00Z", "2018-10-09T00:00:00Z"]}}, {"id": "10.1002/2016JD026099", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:13:58Z", "type": "Journal Article", "created": "2017-04-07", "title": "Global soil moisture bimodality in satellite observations and climate models", "description": "Abstract<p>A new diagnostic metric based on soil moisture bimodality is developed in order to examine and compare soil moisture from satellite observations and Earth System Models. The methodology to derive this diagnostic is based on maximum likelihood estimator encoded into an iterative algorithm, which is applied to the soil moisture probability density function. This metric is applied to satellite data from the Advanced Microwave Scanning Radiometer for the Earth Observing System and global climate models data from the Coupled Model Intercomparison Project Phase 5 (CMIP5). Results show high soil moisture bimodality in transitional climate areas and high latitudes, potentially associated with land\uffe2\uff80\uff90atmosphere feedback processes. When comparing satellite versus climate models, a clear difference in their soil moisture bimodality is observed, with systematically higher values in the case of CMIP5 models. These differences appear related to areas where land\uffe2\uff80\uff90atmospheric feedback may be overestimated in current climate models.</p>", "keywords": ["PREFERENTIAL STATES", "IMPACT", "MIXTURE", "SCHEME", "0207 environmental engineering", "NORMAL-DISTRIBUTIONS", "02 engineering and technology", "15. Life on land", "01 natural sciences", "PART I", "satellite soil moisture", "climate models", "13. Climate action", "Earth and Environmental Sciences", "LAND-SURFACE MODEL", "PRECIPITATION", "SDG 13 - Climate Action", "CMIP5", "ATMOSPHERE COUPLING EXPERIMENT", "land-atmosphere interactions", "soil moisture", "bimodality", "SYSTEM", "0105 earth and related environmental sciences"]}, "links": [{"href": "https://agupubs.onlinelibrary.wiley.com/doi/pdf/10.1002/2016JD026099"}, {"href": "https://doi.org/10.1002/2016JD026099"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Journal%20of%20Geophysical%20Research%3A%20Atmospheres", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1002/2016JD026099", "name": "item", "description": "10.1002/2016JD026099", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1002/2016JD026099"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2017-04-27T00:00:00Z"}}, {"id": "10.1002/2016rg000543", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:13:58Z", "type": "Journal Article", "created": "2017-03-23", "title": "A review of spatial downscaling of satellite remotely sensed soil moisture", "description": "Abstract<p>Satellite remote sensing technology has been widely used to estimate surface soil moisture. Numerous efforts have been devoted to develop global soil moisture products. However, these global soil moisture products, normally retrieved from microwave remote sensing data, are typically not suitable for regional hydrological and agricultural applications such as irrigation management and flood predictions, due to their coarse spatial resolution. Therefore, various downscaling methods have been proposed to improve the coarse resolution soil moisture products. The purpose of this paper is to review existing methods for downscaling satellite remotely sensed soil moisture. These methods are assessed and compared in terms of their advantages and limitations. This review also provides the accuracy level of these methods based on published validation studies. In the final part, problems and future trends associated with these methods are analyzed.</p>", "keywords": ["TIME-DOMAIN REFLECTOMETRY", "550", "IN-SITU", "downscaling", "MODIS TOA RADIANCES", "AMSR-E", "15. Life on land", "551", "01 natural sciences", "LAND-SURFACE TEMPERATURE", "REMEDHUS NETWORK SPAIN", "6. Clean water", "3. Good health", "[SDU] Sciences of the Universe [physics]", "L-BAND RADIOMETER", "remote sensing", "EVAPORATIVE FRACTION", "[SDU]Sciences of the Universe [physics]", "13. Climate action", "Earth and Environmental Sciences", "soil moisture", "SOUTHERN GREAT-PLAINS", "spatial resolution", "HIGH-RESOLUTION", "0105 earth and related environmental sciences"]}, "links": [{"href": "https://agupubs.onlinelibrary.wiley.com/doi/pdf/10.1002/2016RG000543"}, {"href": "https://doi.org/10.1002/2016rg000543"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Reviews%20of%20Geophysics", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1002/2016rg000543", "name": "item", "description": "10.1002/2016rg000543", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1002/2016rg000543"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2017-04-18T00:00:00Z"}}, {"id": "10.1002/2017JD027346", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:13:58Z", "type": "Journal Article", "created": "2017-12-28", "title": "Soil Moisture-Temperature Coupling in a Set of Land Surface Models", "description": "Abstract<p>The land surface controls the partitioning of water and energy fluxes and therefore plays a crucial role in the climate system. The coupling between soil moisture and air temperature, in particular, has been shown to affect the severity and occurrence of temperature extremes and heat waves. Here we study soil moisture\uffe2\uff80\uff90temperature coupling in five land surface models, focusing on the terrestrial segment of the coupling in the warm season. All models are run off\uffe2\uff80\uff90line over a common period with identical atmospheric forcing data, in order to allow differences in the results to be attributed to the models' partitioning of energy and water fluxes. Coupling is calculated according to two semiempirical metrics, and results are compared to observational flux tower data. Results show that the locations of the global hot spots of soil moisture\uffe2\uff80\uff90temperature coupling are similar across all models and for both metrics. In agreement with previous studies, these areas are located in transitional climate regimes. The magnitude and local patterns of model coupling, however, can vary considerably. Model coupling fields are compared to tower data, bearing in mind the limitations in the geographical distribution of flux towers and the differences in representative area of models and in situ data. Nevertheless, model coupling correlates in space with the tower\uffe2\uff80\uff90based results (r = 0.5\uffe2\uff80\uff930.7), with the multimodel mean performing similarly to the best\uffe2\uff80\uff90performing model. Intermodel differences are also found in the evaporative fractions and may relate to errors in model parameterizations and ancillary data of soil and vegetation characteristics.</p>", "keywords": ["ENVIRONMENT SIMULATOR JULES", "FLUXES", "0207 environmental engineering", "02 engineering and technology", "01 natural sciences", "CO2 EXCHANGE", "models", "WATER", "SCALE", "Research Articles", "0105 earth and related environmental sciences", "land surface", "CARBON-DIOXIDE EXCHANGE", "eartH2Observe", "temperature", "15. Life on land", "DECIDUOUS FOREST", "CLIMATE", "EVAPORATION", "VARIABILITY", "13. Climate action", "Earth and Environmental Sciences", "BALANCE", "land surface models", "SENSIBLE HEAT", "land-atmosphere interactions", "soil moisture"]}, "links": [{"href": "https://agupubs.onlinelibrary.wiley.com/doi/pdf/10.1002/2017JD027346"}, {"href": "https://doi.org/10.1002/2017JD027346"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Journal%20of%20Geophysical%20Research%3A%20Atmospheres", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1002/2017JD027346", "name": "item", "description": "10.1002/2017JD027346", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1002/2017JD027346"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2018-02-01T00:00:00Z"}}, {"id": "10.1002/hyp.14451", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:14:03Z", "type": "Journal Article", "created": "2021-12-11", "title": "Hydrological responses to rainfall events including the extratropical cyclone Gloria in two contrasting Mediterranean headwaters in Spain; the perennial font del Reg\u00e0s and the intermittent Fuirosos", "description": "Abstract<p>Catchment hydrological responses to precipitation inputs, particularly during exceptionally large storms, are complex and variable, and our understanding of the associated runoff generation processes during those events is limited. Hydrological monitoring of climatically and hydrologically distinct catchments can help to improve this understanding by shedding light on the interplay between antecedent soil moisture conditions, hydrological connectivity, and rainfall event characteristics. This knowledge is urgently needed considering that both the frequency and magnitude of extreme precipitation events are increasing worldwide as a consequence of climate change. In autumn 2018, we installed water level sensors to monitor stream water and near\uffe2\uff80\uff90stream groundwater levels at two Mediterranean forest headwater catchments with contrasting hydrological regimes: Font del Reg\uffc3\uffa0s (sub\uffe2\uff80\uff90humid climate, perennial flow regime) and Fuirosos (semi\uffe2\uff80\uff90arid climate, intermittent flow regime). Both catchments are located in northeastern Spain, where the extratropical cyclone Gloria hit in January 2020 and left in ca. 65\uffe2\uff80\uff89h outstanding accumulated rainfalls of 424\uffe2\uff80\uff89mm in Font del Reg\uffc3\uffa0s and 230\uffe2\uff80\uff89mm in Fuirosos. During rainfall events of low mean intensity, hydrological responses to precipitation inputs at the semi\uffe2\uff80\uff90arid Fuirosos were more delayed and more variable than at the sub\uffe2\uff80\uff90humid Font del Reg\uffc3\uffa0s. We explain these divergences by differences in antecedent soil moisture conditions and associated differences in catchment hydrological connectivity between the two catchments, which in this case are likely driven by differences in local climate rather than by differences in local topography. In contrast, during events of moderate and high mean rainfall intensities, including the storm Gloria, precipitation inputs and hydrological responses correlated similarly in the two catchments. We explain this convergence by rapid development of hydrological connectivity independently of antecedent soil moisture conditions. The data set presented here is unique and contributes to our mechanistic understanding on how streams respond to rainfall events and exceptionally large storms in catchments with contrasting flow regimes.</p>", "keywords": ["info:eu-repo/classification/ddc/550", "550", "ddc:550", "rainfall intensity", "climate extreme", "15. Life on land", "551", "extreme hydrological event", "01 natural sciences", "6. Clean water", "antecedent soil moisture conditions", "Earth sciences", "13. Climate action", "heavy rainfall", "Mediterranean climate", "catchment hydrological connectivity", "environmental monitoring", "0105 earth and related environmental sciences"]}, "links": [{"href": "https://onlinelibrary.wiley.com/doi/pdf/10.1002/hyp.14451"}, {"href": "https://doi.org/10.1002/hyp.14451"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Hydrological%20Processes", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1002/hyp.14451", "name": "item", "description": "10.1002/hyp.14451", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1002/hyp.14451"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2021-12-01T00:00:00Z"}}, {"id": "10.1002/hyp.14667", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:14:03Z", "type": "Journal Article", "created": "2022-08-09", "title": "Non\u2010linearity in event runoff generation in a small agricultural catchment", "description": "Abstract<p>Understanding the role of soil moisture and other controls in runoff generation is important for predicting runoff across scales. This paper aims to identify the degree of non\uffe2\uff80\uff90linearity of the relationship between event peak runoff and potential controls for different runoff generation mechanisms in a small agricultural catchment. The study is set in the 66\uffe2\uff80\uff89ha Hydrological Open Air Laboratory, Austria, where discharge was measured at the catchment outlet and for 11 sub\uffe2\uff80\uff90catchments or hillslopes with different runoff generation mechanisms. Peak runoff of 73 events was related to three potential controls: event precipitation, soil moisture and groundwater levels. The results suggest that the hillslopes dominated by ephemeral overland flow exhibit the most non\uffe2\uff80\uff90linear runoff generation behaviour for its controls; runoff is only generated above a threshold of 95% of the maximum soil moisture. Runoff generation through tile drains and in wetlands is more linear. The largest winter and spring events at the catchment outlet are caused by runoff from hillslopes with shallow flow paths (ephemeral overland flow and tile drainage mechanisms), while the largest summer events are caused by other hillslopes, those with deeper flow paths or with saturation areas throughout the year. Therefore, the response of the entire catchment is a mix of the various mechanisms, and the groundwater contribution makes the response more linear. The implications for hydrological modelling are discussed.</p", "keywords": ["13. Climate action", "0208 environmental biotechnology", "0207 environmental engineering", "connectivity; flow paths; groundwater; non\u2010linearity; precipitation; runoff generation; scaling; seasonality; soil moisture", "02 engineering and technology", "15. Life on land", "Research Articles", "6. Clean water"]}, "links": [{"href": "https://cris.unibo.it/bitstream/11585/1012878/1/2022_Vreugdenhil_HydrologicalProcesses.pdf"}, {"href": "https://doi.org/10.1002/hyp.14667"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Hydrological%20Processes", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1002/hyp.14667", "name": "item", "description": "10.1002/hyp.14667", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1002/hyp.14667"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2022-08-01T00:00:00Z"}}, {"id": "10.1016/j.envexpbot.2020.104095", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:15:57Z", "type": "Journal Article", "created": "2020-04-25", "title": "Alternation of wet and dry sides during partial rootzone drying irrigation enhances leaf ethylene evolution", "description": "Soil drying increases endogenous ABA and ACC concentrations in planta, but how these compounds interact to regulate stomatal responses to soil drying and re-watering is still unclear. To determine the temporal dynamics and physiological significance of root, xylem and leaf ABA and ACC concentrations in response to deficit irrigation (DI) or partial rootzone drying (PRD-F) and re-watering, these variables were measured in plants exposed to similar whole pot soil water contents. Both DI and PRD-F plants received only a fraction of the irrigation supplied to well-watered (WW) plants, either to all (DI) or part (PRD-F) of the rootzone of plants grown in split-pots. Both DI and PRD-F induced partial stomatal closure, increased root ABA and ACC accumulation consistent with local soil water content, but did not affect xylem or leaf concentrations of these compounds compared to WW plants. Two hours after re-watering all (DI-RW) or part of the rootzone (PRD-A) to the same soil water content, stomatal conductance returned to WW values or further decreased respectively. Re-watering the whole rootzone had no effect on xylem and leaf ABA and ACC concentrations, while re-watering the dry side of the pot in PRD plants had no effect on xylem and leaf ABA concentrations but increased xylem and leaf ACC concentrations and leaf ethylene evolution. Leaf water potential was similar between all irrigation treatments, with stomatal conductance declining as xylem ABA concentrations and leaf ACC concentrations increased. Prior to re-watering PRD plants, accounting for the spatial differences in soil water uptake best explained variation in xylem ACC concentration suggesting root-to-shoot ACC signalling, but this model did not account for variation in xylem ACC concentration after re-watering the dry side of PRD plants. Thus local (foliar) and long-distance (root-to-shoot) variation in ACC status both seem important in regulating the temporal dynamics of foliar ethylene evolution in plants exposed to PRD.", "keywords": ["0106 biological sciences", "Irrigation", "Stomatal conductance", "Root-to-shoot signalling", "Ethylene", "Physiological significance", "Deficit irrigation", "Plant Science", "Leaf water", "F06 Irrigation", "01 natural sciences", "ACC", "Ecology", " Evolution", " Behavior and Systematics", "580", "2. Zero hunger", "Xylem", "15. Life on land", "F60 Plant physiology and biochemistry", "6. Clean water", "Horticulture", "13. Climate action", "Soil water", "Agronomy and Crop Science", "Soil moisture heterogeneity", "Partial rootzone drying"]}, "links": [{"href": "https://eprints.lancs.ac.uk/id/eprint/144510/1/Juan_EEB_Manuscript_final.pdf"}, {"href": "https://doi.org/10.1016/j.envexpbot.2020.104095"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Environmental%20and%20Experimental%20Botany", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1016/j.envexpbot.2020.104095", "name": "item", "description": "10.1016/j.envexpbot.2020.104095", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1016/j.envexpbot.2020.104095"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2020-08-01T00:00:00Z"}}, {"id": "10.1007/s00442-012-2484-8", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:14:32Z", "type": "Journal Article", "created": "2012-12-27", "title": "Herbivore Trampling As An Alternative Pathway For Explaining Differences In Nitrogen Mineralization In Moist Grasslands", "description": "Studies addressing the role of large herbivores on nitrogen cycling in grasslands have suggested that the direction of effects depends on soil fertility. Via selection for high quality plant species and input of dung and urine, large herbivores have been shown to speed up nitrogen cycling in fertile grassland soils while slowing down nitrogen cycling in unfertile soils. However, recent studies show that large herbivores can reduce nitrogen mineralization in some temperate fertile soils, but not in others. To explain this, we hypothesize that large herbivores can reduce nitrogen mineralization in loamy or clay soils through soil compaction, but not in sandy soils. Especially under wet conditions, strong compaction in clay soils can lead to periods of soil anoxia, which reduces decomposition of soil organic matter and, hence, N mineralization. In this study, we use a long-term (37-year) field experiment on a salt marsh to investigate the hypothesis that the effect of large herbivores on nitrogen mineralization depends on soil texture. Our results confirm that the presence of large herbivores decreased nitrogen mineralization rate in a clay soil, but not in a sandy soil. By comparing a hand-mown treatment with a herbivore-grazed treatment, we show that these differences can be attributed to herbivore-induced changes in soil physical properties rather than to above-ground biomass removal. On clay soil, we find that large herbivores increase the soil water-filled porosity, induce more negative soil redox potentials, reduce soil macrofauna abundance, and reduce decomposition activity. On sandy soil, we observe no changes in these variables in response to grazing. We conclude that effects of large herbivores on nitrogen mineralization cannot be understood without taking soil texture, soil moisture, and feedbacks through soil macrofauna into account.", "keywords": ["0106 biological sciences", "IMPACT", "Nitrogen", "01 natural sciences", "Soil fauna", "COMPACTION", "Soil", "SOIL PHYSICAL-PROPERTIES", "SALT-MARSH", "Large herbivores", "Soil texture", "Animals", "Biomass", "Herbivory", "Soil compaction", "Ecosystem", "2. Zero hunger", "UNGULATE", "national", "Water", "DENITRIFICATION", "Nitrogen Cycle", "15. Life on land", "N cycling", "YELLOWSTONE-NATIONAL-PARK", "PLANT-GROWTH", "13. Climate action", "ECOSYSTEM", "Clay", "Aluminum Silicates", "Soil moisture", "BAIT-LAMINA TEST"]}, "links": [{"href": "https://doi.org/10.1007/s00442-012-2484-8"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Oecologia", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1007/s00442-012-2484-8", "name": "item", "description": "10.1007/s00442-012-2484-8", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1007/s00442-012-2484-8"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2012-12-28T00:00:00Z"}}, {"id": "10.1016/j.agrformet.2018.02.033", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:15:28Z", "type": "Journal Article", "created": "2018-03-20", "title": "Calibrating an evapotranspiration model using radiometric surface temperature, vegetation cover fraction and near-surface soil moisture data", "description": "An accurate representation of the partitioning between soil evaporation and plant transpiration is an asset for modeling crop evapotranspiration (ET) along the agricultural season. The Two-Surface energy Balance (TSEB) model operates the ET partitioning by using the land surface temperature (LST), vegetation cover fraction (fc), and the Priestley Taylor (PT) assumption that relates transpiration to net radiation via a fixed PT coefficient (\u03b1PT). To help constrain the evaporation/transpiration partition of TSEB, a new model (named TSEB-SM) is developed by using, in addition to LST and fc data, the near-surface soil moisture (SM) as an extra constraint on soil evaporation. An innovative calibration procedure is proposed to retrieve three key parameters: \u03b1PT and the parameters (arss and brss) of a soil resistance formulation. Specifically, arss and brss are retrieved at the seasonal time scale from SM and LST data with fc\u202f \u202f0.5. The new ET model named TSEB-SM is tested over 1 flood- and 2 drip-irrigated wheat fields using in situ data collected during two field experiments in 2002\u20132003 and 2016\u20132017. The calibration algorithm is found to be remarkably stable as \u03b1PT, arss and brss parameters converge rapidly in few (2\u20133) iterations. Retrieved values of \u03b1PT, arss and brss are in the range 0.0\u20131.4, 5.7\u20139.5, and 1.4\u20136.9, respectively. Calibrated daily \u03b1PT mainly follows the phenology of winter wheat crop with a maximum value coincident with the full development of green biomass and a minimum value reached at harvest. The temporal variations of \u03b1PT before senescence are attributed to the dynamics of both root-zone soil moisture. Moreover, the overall (for the three sites) root mean square difference between the ET simulated by TSEB-SM and eddy-covariance measurements is 67\u202fW\u202fm\u22122 (24% relative error), compared to 108\u202fW\u202fm\u22122 (38% relative error) for the original version of TSEB using default parameterization (\u03b1PT\u202f=\u202f1.26). Such a calibration strategy has great potential for applications at multiple scales using remote sensing data including thermal-derived LST, solar reflectance-derived fc and microwave-derived SM.", "keywords": ["Priestley-taylor coefficient", "2. Zero hunger", "550", "TSEB modifid", "[SDE.IE]Environmental Sciences/Environmental Engineering", "0207 environmental engineering", "02 engineering and technology", "Vegetation cover fraction", "15. Life on land", "01 natural sciences", "630", "[SDU.STU.HY] Sciences of the Universe [physics]/Earth Sciences/Hydrology", "Turbulent heat fluxes", "Soil moisture", "[SDE.IE] Environmental Sciences/Environmental Engineering", "[SDU.STU.HY]Sciences of the Universe [physics]/Earth Sciences/Hydrology", "Land surface temperature", "0105 earth and related environmental sciences"]}, "links": [{"href": "https://doi.org/10.1016/j.agrformet.2018.02.033"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Agricultural%20and%20Forest%20Meteorology", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1016/j.agrformet.2018.02.033", "name": "item", "description": "10.1016/j.agrformet.2018.02.033", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1016/j.agrformet.2018.02.033"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2018-06-01T00:00:00Z"}}, {"id": "10.1007/s13595-016-0547-4", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:15:13Z", "type": "Journal Article", "created": "2016-03-24", "title": "Effects Of Experimental Warming On Soil Respiration And Biomass In Quercus Variabilis Blume And Pinus Densiflora Sieb. Et Zucc. Seedlings", "description": "AbstractKey messageIn the open-field warming experiment using infrared heaters, 3\u00a0\u00b0C warming affected soil respiration more in the deciduousQuercus variabilisBlume plot than in the evergreenPinus densifloraSieb. et Zucc. plot, but did not affect the plant biomass in either species.ContextUnderstanding the species-specific responses of belowground carbon processes to warming is essential for the accurate prediction of forest carbon cycles in ecosystems affected by future climate change.AimsThis study aimed to investigate the effect of experimental warming on soil CO2 efflux, soil-air CO2 concentration, and plant biomass for two taxonomically different temperate tree species.MethodsExperimental warming was conducted in an open-field planted with Q. variabilis and P. densiflora seedlings. Infrared heaters increased the air temperature by 3\u00a0\u00b0C in the warmed plots compared with the air temperature in the control plots over a 2-year period.ResultsThe increase in air and soil temperature stimulated soil CO2 efflux by 29 and 22\u00a0% for the Q. variabilis and P. densiflora plots, respectively. Seasonal variation in the warming effect on soil CO2 efflux was species-specific. Soil CO2 efflux was also positively related to both soil temperature and soil water content. The soil moisture deficit decreased the difference in soil CO2 efflux between the control and warmed plots. Warming did not affect soil CO2 concentration and plant biomass in either species; however, the mean soil CO2 concentration was positively correlated with root and total biomass.ConclusionWarming increased soil CO2 efflux in both Q. variabilis and P. densiflora plots, while the increase showed remarkable seasonal variations and different magnitudes for the two species.", "keywords": ["0106 biological sciences", "soil temperature", "evergreen tree", "soil water", "Red pine", "seedling", "soil respiration", "01 natural sciences", "experimental study", "Pinus resinosa", "Climate change", "Pinus densiflora", "seasonal variation", "concentration (composition)", "Quercus variabilis", "Oriental oak", "carbon dioxide", "Soil respiration", "04 agricultural and veterinary sciences", "15. Life on land", "air temperature", "carbon flux", "[SDV] Life Sciences [q-bio]", "climate change", "13. Climate action", "coniferous tree", "phytomass", "0401 agriculture", " forestry", " and fisheries", "Experimental warming", "soil moisture", "deciduous tree"]}, "links": [{"href": "https://doi.org/10.1007/s13595-016-0547-4"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Annals%20of%20Forest%20Science", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1007/s13595-016-0547-4", "name": "item", "description": "10.1007/s13595-016-0547-4", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1007/s13595-016-0547-4"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2016-03-24T00:00:00Z"}}, {"id": "10.1016/j.agrformet.2018.04.010", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:15:28Z", "type": "Journal Article", "created": "2018-04-19", "title": "A phenomenological model of soil evaporative efficiency using surface soil moisture and temperature data", "description": "Abstract   Modeling soil evaporation has been a notorious challenge due to the complexity of the phenomenon and the lack of data to constrain it. In this context, a parsimonious model is developed to estimate soil evaporative efficiency (SEE) defined as the ratio of actual to potential soil evaporation. It uses a soil resistance driven by surface (0\u20135\u202fcm) soil moisture, meteorological forcing and time (hour) of day, and has the capability to be calibrated using the radiometric surface temperature derived from remotely sensed thermal data. The new approach is tested over a rainfed semi-arid site, which had been under bare soil conditions during a 9-month period in 2016. Three calibration strategies are adopted based on SEE time series derived from (1) eddy-covariance measurements, (2) thermal measurements, and (3) eddy-covariance measurements used only over separate drying periods between significant rainfall events. The correlation coefficients (and slopes of the linear regression) between simulated and observed (eddy-covariance-derived) SEE are 0.85, 0.86 and 0.87 (and 0.91, 0.87 and 0.91) for calibration strategies 1, 2 and 3, respectively. Moreover, the correlation coefficient (and slope of the linear regression) between simulated and observed SEE is improved from 0.80 to 0.85 (from 0.86 to 0.91) when including hour of day in the soil resistance. The reason is that, under non-energy-limited conditions, the receding evaporation front during daytime makes SEE decrease at the hourly time scale. The soil resistance formulation can be integrated into state-of-the-art dual-source surface models and has calibration capabilities across a range of spatial scales from spaceborne microwave and thermal data.", "keywords": ["550", "0207 environmental engineering", "Soil resistance", "02 engineering and technology", "Remote sensing", "15. Life on land", "calibration", "surface temperature", "[SDU.ENVI] Sciences of the Universe [physics]/Continental interfaces", " environment", "Surface temperature", "remote sensing", "Calibration", "[SDU.STU.HY] Sciences of the Universe [physics]/Earth Sciences/Hydrology", "soil resistance", "Soil moisture", "[SDU.STU.HY]Sciences of the Universe [physics]/Earth Sciences/Hydrology", "[SDU.ENVI]Sciences of the Universe [physics]/Continental interfaces", "soil moisture", "environment", "Soil evaporation"]}, "links": [{"href": "https://doi.org/10.1016/j.agrformet.2018.04.010"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Agricultural%20and%20Forest%20Meteorology", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1016/j.agrformet.2018.04.010", "name": "item", "description": "10.1016/j.agrformet.2018.04.010", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1016/j.agrformet.2018.04.010"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2018-06-01T00:00:00Z"}}, {"id": "10.1016/j.soilbio.2007.04.019", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:16:45Z", "type": "Journal Article", "created": "2007-05-31", "title": "Interannual And Interseasonal Soil Co2 Efflux And Voc Exchange Rates In A Mediterranean Holm Oak Forest In Response To Experimental Drought", "description": "Open AccessPeer reviewed", "keywords": ["2. Zero hunger", "Drought", "Seasonality", "Soil VOCs", "15. Life on land", "01 natural sciences", "6. Clean water", "13. Climate action", "CO2 efflux", "Soil monoterpenes", "Soil temperature", "Soil moisture", "0105 earth and related environmental sciences"]}, "links": [{"href": "https://doi.org/10.1016/j.soilbio.2007.04.019"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Soil%20Biology%20and%20Biochemistry", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1016/j.soilbio.2007.04.019", "name": "item", "description": "10.1016/j.soilbio.2007.04.019", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1016/j.soilbio.2007.04.019"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2007-10-01T00:00:00Z"}}, {"id": "10.1016/j.agwat.2021.107290", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:15:31Z", "type": "Journal Article", "created": "2021-11-22", "title": "Assimilation of SMAP disaggregated soil moisture and Landsat land surface temperature to improve FAO-56 estimates of ET in semi-arid regions", "description": "Accurate estimation of evapotranspiration (ET) is of crucial importance in water science and hydrological process understanding especially in semi-arid/arid areas since ET represents more than 85% of the total water budget. FAO-56 is one of the widely used formulations to estimate the actual crop evapotranspiration (ET c act) due to its operational nature and since it represents a reasonable compromise between simplicity and accuracy. In this vein, the objective of this paper was to examine the possibility of improving ET c act estimates through remote sensing data assimilation. For this purpose, remotely sensed soil moisture (SM) and Land surface temperature (LST) data were simultaneously assimilated into FAO-dualK c. Surface SM observations were assimilated into the soil evaporation (E s) component through the soil evaporation coefficient, and LST data were assimilated into the actual crop transpiration (T c act) component through the crop stress coefficient. The LST data were used to estimate the water stress coefficient (K s) as a proxy of LST (LST proxy). The FAO-Ks was corrected by assimilating LST proxy derived from Landsat data based on the variances of predicted errors on K s estimates from FAO-56 model and thermal-derived K s. The proposed approach was tested over a semi-arid area in Morocco using first, in situ data collected during 2002-2003 and 2015-2016 wheat growth seasons over two different fields and then, remotely sensed data derived from disaggregated Soil Moisture Active Passive (SMAP) SM and Landsat-LST sensors were used. Assimilating SM data leads to an improvement of the ET c act model prediction: the root mean square error (RMSE) decreased from 0.98 to 0.65 mm/day compared to the classical FAO-dualK c using in situ SM. Moreover, assimilating both in situ SM and LST data provided more accurate results with a RMSE error of 0.55 mm/day. By using SMAP-based SM and Landsat-LST, results also improved in comparison with standard FAO and reached a RMSE of 0.73 mm/day against eddy-covariance ET c act measurements.", "keywords": ["2. Zero hunger", "0106 biological sciences", "Evapotranspiration", "550", "Evapotranspiration Data assimilation FAO-dualK c Soil moisture Land surface temperature", "0207 environmental engineering", "02 engineering and technology", "15. Life on land", "01 natural sciences", "[SDU.ENVI] Sciences of the Universe [physics]/Continental interfaces", " environment", "6. Clean water", "FAO-dualK(c)", "13. Climate action", "Data assimilation", "[SDU.STU.HY] Sciences of the Universe [physics]/Earth Sciences/Hydrology", "Soil moisture", "[SDU.STU.HY]Sciences of the Universe [physics]/Earth Sciences/Hydrology", "[SDU.ENVI]Sciences of the Universe [physics]/Continental interfaces", "environment", "Land surface temperature"]}, "links": [{"href": "https://doi.org/10.1016/j.agwat.2021.107290"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Agricultural%20Water%20Management", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1016/j.agwat.2021.107290", "name": "item", "description": "10.1016/j.agwat.2021.107290", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1016/j.agwat.2021.107290"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2022-02-01T00:00:00Z"}}, {"id": "10.1016/j.agwat.2004.09.030", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:15:29Z", "type": "Journal Article", "created": "2005-03-11", "title": "Effects Of Different Management Practices On Soil Conservation And Soil Water In A Rainfed Olive Orchard", "description": "Open Access16 pages, figures, and tables statistics.", "keywords": ["0106 biological sciences", "2. Zero hunger", "Sustainable agriculture", "04 agricultural and veterinary sciences", "15. Life on land", "Legumes", "Soil fertility", "01 natural sciences", "6. Clean water", "0401 agriculture", " forestry", " and fisheries", "Plant covers", "Weeds", "Soil moisture"]}, "links": [{"href": "https://doi.org/10.1016/j.agwat.2004.09.030"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Agricultural%20Water%20Management", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1016/j.agwat.2004.09.030", "name": "item", "description": "10.1016/j.agwat.2004.09.030", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1016/j.agwat.2004.09.030"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2005-08-01T00:00:00Z"}}, {"id": "10.1016/j.agwat.2018.06.014", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:15:30Z", "type": "Journal Article", "created": "2018-06-18", "title": "Estimating the water budget components of irrigated crops: Combining the FAO-56 dual crop coefficient with surface temperature and vegetation index data", "description": "Abstract   The FAO-56 dual crop coefficient (FAO-2Kc) model has been extensively used at the field scale to estimate the crop water requirements by means of the simulated evapotranspiration (ET) and its two components evaporation (E) and transpiration (T). Given that the main limitation of FAO-2Kc for operational irrigation management over large areas is the unavailability (over most irrigated areas) of irrigation data, this study investigates the feasibility 1) to constrain the FAO-2Kc ET from LST and VI data, 2) to retrieve irrigation amounts and dates from LST and VI data and 3) to estimate the root-zone soil moisture (RZSM) at the daily scale. In practice, the vegetation and soil temperatures retrieved from LST/VI data are used to estimate the FAO-2Kc vegetation stress coefficient (Ks) and soil evaporation reduction coefficient (Kr), respectively. The modeling and remote sensing combined approach is tested over a wheat crop field in central Morocco, and results are evaluated in terms of ET, irrigation and RZSM estimates. ET is estimated with a RMSE of 0.68\u202fmm day-1 compared to 0.84\u202fmm day-1 for the standard (without using LST data) FAO-2Kc based on tabulated values for the parameters. The total irrigation depth (67\u202fmm) is correctly estimated and is very close to the actual effective irrigation (69.8\u202fmm) applied by the farmer. Daily RZSM is estimated with an R2 value of 0.68 (0.42) and a RMSE value of 0.034 (0.061) m3 m-3 by forcing FAO-2Kc using the retrieved irrigation (from LST-derived estimates and precipitation only). Since spaceborne LST data are currently not available at both high-spatial and high-temporal resolution, a sensitivity analysis is finally undertaken to assess the potential and applicability of the proposed methodology to temporally-sparse thermal data.", "keywords": ["FAO-56", "0106 biological sciences", "2. Zero hunger", "550", "Evapotranspiration", "[SDE.IE]Environmental Sciences/Environmental Engineering", "Root-zone soil moisture", "[SDV.SA.STA] Life Sciences [q-bio]/Agricultural sciences/Sciences and technics of agriculture", "Root-Zone Soil Moisture", "Surface Temperature", "[INFO.INFO-MO]Computer Science [cs]/Modeling and Simulation", "01 natural sciences", "6. Clean water", "Surface temperature", "[SDV.SA.STA]Life Sciences [q-bio]/Agricultural sciences/Sciences and technics of agriculture", "[INFO.INFO-MO] Computer Science [cs]/Modeling and Simulation", "[SDE.IE] Environmental Sciences/Environmental Engineering", "Irrigation", "0105 earth and related environmental sciences"]}, "links": [{"href": "https://doi.org/10.1016/j.agwat.2018.06.014"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Agricultural%20Water%20Management", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1016/j.agwat.2018.06.014", "name": "item", "description": "10.1016/j.agwat.2018.06.014", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1016/j.agwat.2018.06.014"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2018-09-01T00:00:00Z"}}, {"id": "10.1016/j.agwat.2020.106207", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:15:30Z", "type": "Journal Article", "created": "2020-05-08", "title": "Dynamic Management Zones for Irrigation Scheduling", "description": "Open AccessIrrigation scheduling decision-support tools can improve water use efficiency by matching irrigation recommendations to prevailing soil and crop conditions within a season. Yet, little research is available on how to support real-time precision irrigation that varies within-season in both time and space. We investigate the integration of remotely sensed NDVI time-series, soil moisture sensor measurements, and root zone simulation forecasts for in-season delineation of dynamic management zones (MZ) and for a variable rate irrigation scheduling in order to improve irrigation scheduling and crop performance. Delineation of MZ was conducted in a 5.8-ha maize field during 2018 using Sentinel-2 NDVI time-series and an unsupervised classification. The number and spatial extent of MZs changed through the growing season. A network of soil moisture sensors was used to interpret spatiotemporal changes of the NDVI. Soil water content was a significant contributor to changes in crop vigor across MZs through the growing season. Real-time cluster validity function analysis provided in-season evaluation of the MZ design. For example, the total within-MZ daily soil moisture relative variance decreased from 85% (early vegetative stages) to below 25% (late reproductive stages). Finally, using the Hydrus-1D model, a workflow for in-season optimization of irrigation scheduling and water delivery management was tested. Data simulations indicated that crop transpiration could be optimized while reducing water applications between 11 and 28.5% across the dynamic MZs. The proposed integration of spatiotemporal crop and soil moisture data can be used to support management decisions to effectively control outputs of crop \u00d7 environment \u00d7 management interactions.", "keywords": ["0106 biological sciences", "2. Zero hunger", "Irrigation -- Management -- Mathematical models", "Precision agriculture", "\u00c0rees tem\u00e0tiques de la UPC::Enginyeria civil::Enginyeria hidr\u00e0ulica", "Hydrus-1D", "Temporal variability", "04 agricultural and veterinary sciences", "Remote sensing", "15. Life on land", "Spatial variability", "01 natural sciences", "6. Clean water", "631", "\u00c0rees tem\u00e0tiques de la UPC::Enginyeria civil::Enginyeria hidr\u00e0ulica", " mar\u00edtima i sanit\u00e0ria::Canals i regadius", "0401 agriculture", " forestry", " and fisheries", "Soil moisture", "Regatge -- Optimitzaci\u00f3 matem\u00e0tica", "mar\u00edtima i sanit\u00e0ria::Canals i regadius"]}, "links": [{"href": "https://doi.org/10.1016/j.agwat.2020.106207"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Agricultural%20Water%20Management", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1016/j.agwat.2020.106207", "name": "item", "description": "10.1016/j.agwat.2020.106207", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1016/j.agwat.2020.106207"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2020-08-01T00:00:00Z"}}, {"id": "10.1016/j.atmosenv.2022.119530", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:15:39Z", "type": "Journal Article", "created": "2022-12-12", "title": "Disentangling temperature and water stress contributions to trends in isoprene emissions using satellite observations of formaldehyde, 2005\u20132016", "description": "Isoprene, produced by plants in response to multiple drivers, affects climate and air quality when released into the atmosphere. In turn, climate change may influence isoprene emissions through variations in occurrence and intensity of types of stress that affect plant functions. We test the effects of multiple drivers (temperature, precipitation, soil moisture, drought index, biomass, aerosols, burned fraction) on space retrievals of formaldehyde (HCHO) column concentrations, as a proxy for isoprene emissions, at global and regional scales over the period 2005-2016. We find declines in HCHO column concentrations over the study period across Europe, the Amazon Basin, southern Africa, and southern Australia, and increases across India, China, and mainland Southeast Asia. Temporal effects and the interactions among drivers are analyzed using generalized linear mixed-effects models to explain trends in HCHO column concentrations. Results show that HCHO column concentrations increase with temperature at the global scale and across the Amazon Basin and India-China regions, even under low levels of precipitation, provided that sufficient soil moisture can maintain vegetation functions and the associated isoprene emissions. Water availability sustains isoprene emissions in dry regions such as Australia, where HCHO column concentrations are positively associated with mean precipitation, with this relation intensifying at low levels of soil moisture. In contrast, isoprene emissions increase under water stress across the Amazon Basin and Europe, where HCHO column concentrations are negatively associated with levels of soil moisture and drought as calculated by the Standardized Precipitation-Evapotranspiration Index (SPEI). This study confirms the key role of temperature in modulating global and regional isoprene emissions and highlights contrasting regional effects of water stress on these emissions.", "keywords": ["Isoprene", "Drought", "Water availability", "Physics", "Temperature", "Generalized linear mixed-effects models", "15. Life on land", "01 natural sciences", "7. Clean energy", "6. Clean water", "Chemistry", "13. Climate action", "Formaldehyde", "OMI satellite observations", "11. Sustainability", "Soil moisture", "Biology", "0105 earth and related environmental sciences"]}, "links": [{"href": "https://doi.org/10.1016/j.atmosenv.2022.119530"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Atmospheric%20Environment", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1016/j.atmosenv.2022.119530", "name": "item", "description": "10.1016/j.atmosenv.2022.119530", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1016/j.atmosenv.2022.119530"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2023-02-01T00:00:00Z"}}, {"id": "10.1016/j.rse.2016.02.046", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:16:35Z", "type": "Journal Article", "created": "2016-03-05", "title": "Comparison of remote sensing and simulated soil moisture datasets in Mediterranean landscapes", "description": "AbstractThis paper presents the comparison of three global soil moisture products (ASCAT, AMSR and SMOS) versus a land surface model over a region representative of several Mediterranean landscapes located in the Northeast of the Iberian Peninsula. Our approach has been for agricultural and water management applications at the regional and local scale. Despite being a rather small area, we were able to observe different signal behaviours corresponding to major land cover classes in Mediterranean areas i.e.: dryland and irrigated crops, forests and natural vegetation (grass-shrubs). The area also allowed assessing the impact of topography. The first result of the study is that the results are very dependent on the normalizations used to make the data comparable, thus their impact must be carefully analysed. In this study, we applied two different normalisation methods (called ZV35 and ZV) and different moving average windows (1, 10 and 30days) in order to enhance seasonal effects. Using no smoothing window, ASCAT is the soil moisture product that correlates best with the LSM over all cover classes, whatever the method. Using smoothing window, AMSR-E tends to outperform other soil moisture products with the ZV method. The ZV35 method is not able to identify a small heavily irrigated area. The reason for these different results is that ZV35, tends to eliminate the monthly scale soil moisture memory and therefore becomes more sensitive to precipitation and less sensitive to the monthly evolution of superficial soil moisture. The comparison shows in general good agreement for all soil moisture products with the LSM on the temporal series simulated over flat, non irrigated areas which are not close to the sea. SMOS has difficulties in areas close to the sea and in areas with steep relief and the current version of the L2 Operational Algorithm (V5.51) depicts few values in forested areas. ASCAT, in its turn, shows some limitations over agricultural and natural vegetation where it shows an increase of soil moisture from June to October probably due to increase of penetration depth in dry soil moisture conditions. AMSR-E LPRM shows a clear vegetation cycle over all the land cover classes. From all the remote sensing products, SMOS is the only one able to see irrigation and the only that does not show clear vegetation or roughness effects. In this study, we were able to assess the impact of higher resolution soil moisture products to map irrigated areas.", "keywords": ["2. Zero hunger", "0207 environmental engineering", "Soil Science", "Agriculture", "Geology", "AMSR-E", "02 engineering and technology", "15. Life on land", "16. Peace & justice", "01 natural sciences", "6. Clean water", "Water management", "ASCAT", "13. Climate action", "Regional scale", "LSM", "Soil moisture", "Computers in Earth Sciences", "Irrigation", "SMOS", "0105 earth and related environmental sciences"]}, "links": [{"href": "https://doi.org/10.1016/j.rse.2016.02.046"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Remote%20Sensing%20of%20Environment", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1016/j.rse.2016.02.046", "name": "item", "description": "10.1016/j.rse.2016.02.046", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1016/j.rse.2016.02.046"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2016-07-01T00:00:00Z"}}, {"id": "10.1016/j.catena.2016.12.013", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:15:45Z", "type": "Journal Article", "created": "2016-12-29", "title": "Manure Fertilization Increases Soil Respiration And Creates A Negative Carbon Budget In A Mediterranean Maize (Zea Mays L.)-Based Cropping System", "description": "Abstract   Agronomic research is important to identify suitable options for improving soil carbon (C) sequestration and reducing soil CO2 emissions. Therefore, the objectives of this study were i) to analyse the on-farm effects of different nitrogen fertilization sources on soil respiration, ii) to explore the effect of fertilization on soil respiration sensitivity to soil temperature (T) and iii) to assess the effect of the different fertilization regimes on the soil C balance. We hypothesized that i) the soil CO2 emission dynamics in Mediterranean irrigated cropping systems were mainly affected by fertilization management and T and ii) fertilization affected the soil C budget via different C inputs and CO2 efflux. Four fertilization systems (farmyard manure, cattle slurry, cattle slurry\u00a0+\u00a0mineral, and mineral) were compared in a double-crop rotation based on silage maize (Zea mays L.) and a mixture of Italian ryegrass (Lolium multiflorum Lam.) and oats (Avena sativa L.). The research was performed in the dairy district of Arborea, in the coastal zone of Sardinia (Italy), from May 2011 to May 2012. The soil was a Psammentic Palexeralfs with a sandy texture (940\u00a0g\u00a0sand\u00a0kg\u2212\u00a01). The soil total respiration (SR), heterotrophic respiration (Rh), T and soil water content (SWC) were simultaneously measured in situ. The soil C balance was computed considering the Rh C losses and the soil C inputs from fertilizer and crop residues. The results showed that the maximum soil CO2 emission rates soon after the application of organic fertilizer reached values up to 12\u00a0\u03bcmol\u00a0m\u2212\u00a02\u00a0s\u2212\u00a01. On average, the manure fertilizer showed significantly higher CO2 emissions, which resulted in a negative annual C balance (\u2212\u00a02.9\u00a0t\u00a0ha\u2212\u00a01). T also affected the soil respiration temporal dynamics during the summer, consistently with results obtained in other temperate climatic regions that are characterized by wet summers and contrary to results from rainfed Mediterranean systems where the summer SR and Rh are constrained by the low SWC. The sensitivity of soil respiration to temperature significantly increased with C input from fertilizer. In conclusion, this research supported the hypotheses tested. Furthermore, the results indicated that i) soil CO2 efflux was significantly affected by fertilization management and T, and ii) fertilization with manure increased the soil respiration and resulted in a significantly negative soil C budget. This latter finding could be primarily explained by a reduction in productivity and, consequently, in crop residue with organic fertilization alone as compared to mineral, by the favourable SWC and T for mineralization, and by the sandy soil texture, which hindered the formation of macroaggregates and hence soil C stabilization, making fertilizer organic inputs highly susceptible to mineralization.", "keywords": ["2. Zero hunger", "13. Climate action", "Biomass C turnover GHG emission Microbial activity Soil moisture", "0401 agriculture", " forestry", " and fisheries", "04 agricultural and veterinary sciences", "15. Life on land", "12. Responsible consumption"]}, "links": [{"href": "https://doi.org/10.1016/j.catena.2016.12.013"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/CATENA", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1016/j.catena.2016.12.013", "name": "item", "description": "10.1016/j.catena.2016.12.013", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1016/j.catena.2016.12.013"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2017-04-01T00:00:00Z"}}, {"id": "10.1016/j.isprsjprs.2019.02.004", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:16:22Z", "type": "Journal Article", "created": "2019-02-15", "title": "Including Sentinel-1 radar data to improve the disaggregation of MODIS land surface temperature data", "description": "Abstract   The use of land surface temperature (LST) for monitoring the consumption and water status of crops requires data at fine spatial and temporal resolutions. Unfortunately, the current spaceborne thermal sensors provide data at either high temporal (e.g. MODIS: Moderate Resolution Imaging Spectro-radiometer) or high spatial (e.g. Landsat) resolution separately. Disaggregating low spatial resolution (LR) LST data using ancillary data available at high spatio-temporal resolution could compensate for the lack of high spatial resolution (HR) LST observations. Existing LST downscaling approaches generally rely on the fractional green vegetation cover (fgv) derived from HR reflectances but they do not take into account the soil water availability to explain the spatial variability in LST at HR. In this context, a new method is developed to disaggregate kilometric MODIS LST at 100\u202fm resolution by including the Sentinel-1 (S-1) backscatter, which is indirectly linked to surface soil moisture, in addition to the Landsat-7 and Landsat-8 (L-7 & L-8) reflectances. The approach is tested over two different sites \u2013 an 8\u202fkm by 8\u202fkm irrigated crop area named \u201cR3\u201d and a 12\u202fkm by 12\u202fkm rainfed area named \u201cSidi Rahal\u201d in central Morocco (Marrakech) \u2013 on the seven dates when S-1, and L-7 or L-8 acquisitions coincide with a one-day precision during the 2015\u20132016 growing season. The downscaling methods are applied to the 1\u202fkm resolution MODIS-Terra LST data, and their performance is assessed by comparing the 100\u202fm disaggregated LST to Landsat LST in three cases: no disaggregation, disaggregation using Landsat fgv only, disaggregation using both Landsat fgv and S-1 backscatter. When including fgv only in the disaggregation procedure, the mean root mean square error in LST decreases from 4.20 to 3.60\u202f\u00b0C and the mean correlation coefficient (R) increases from 0.45 to 0.69 compared to the non-disaggregated case within R3. The new methodology including the S-1 backscatter as input to the disaggregation is found to be systematically more accurate on the available dates with a disaggregation mean error decreasing to 3.35\u202f\u00b0C and a mean R increasing to 0.75.", "keywords": ["LST", "2. Zero hunger", "550", "0211 other engineering and technologies", "02 engineering and technology", "15. Life on land", "01 natural sciences", "333", "6. Clean water", "MODIS/Terra", "Disaggregation", "disaggregation", "[SDE.ES] Environmental Sciences/Environment and Society", "MODIS/Terra Landsat", "MODISTerra Landsat", "Sentinel-1", "Soil moisture", "soil moisture", "[SDE.ES]Environmental Sciences/Environment and Society", "Landsat", "0105 earth and related environmental sciences"]}, "links": [{"href": "https://doi.org/10.1016/j.isprsjprs.2019.02.004"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/ISPRS%20Journal%20of%20Photogrammetry%20and%20Remote%20Sensing", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1016/j.isprsjprs.2019.02.004", "name": "item", "description": "10.1016/j.isprsjprs.2019.02.004", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1016/j.isprsjprs.2019.02.004"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2019-04-01T00:00:00Z"}}, {"id": "10.1016/j.scitotenv.2016.02.086", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:16:38Z", "type": "Journal Article", "created": "2016-02-28", "title": "Soil Respiration Dynamics In Fire Affected Semi-Arid Ecosystems: Effects Of Vegetation Type And Environmental Factors", "description": "Soil respiration (Rs) is the second largest carbon flux in terrestrial ecosystems and therefore plays a crucial role in global carbon (C) cycling. This biogeochemical process is closely related to ecosystem productivity and soil fertility and is considered as a key indicator of soil health and quality reflecting the level of microbial activity. Wildfires can have a significant effect on Rs rates and the magnitude of the impacts will depend on environmental factors such as climate and vegetation, fire severity and meteorological conditions post-fire. In this research, we aimed to assess the impacts of a wildfire on the soil CO2 fluxes and soil respiration in a semi-arid ecosystem of Western Australia, and to understand the main edaphic and environmental drivers controlling these fluxes for different vegetation types. Our results demonstrated increased rates of Rs in the burnt areas compared to the unburnt control sites, although these differences were highly dependent on the type of vegetation cover and time since fire. The sensitivity of Rs to temperature (Q10) was also larger in the burnt site compared to the control. Both Rs and soil organic C were consistently higher under Eucalyptus trees, followed by Acacia shrubs. Triodia grasses had the lowest Rs rates and C contents, which were similar to those found under bare soil patches. Regardless of the site condition (unburnt or burnt), Rs was triggered during periods of higher temperatures and water availability and environmental factors (temperature and moisture) could explain a large fraction of Rs variability, improving the relationship of moisture or temperature as single factors with Rs. This study demonstrates the importance of assessing CO2 fluxes considering both abiotic factors and vegetation types after disturbances such as fire which is particularly important in heterogeneous semi-arid areas with patchy vegetation distribution where CO2 fluxes can be largely underestimated.", "keywords": ["580", "Take urgent action to combat climate change and its impacts", "550", "Q10", "04 agricultural and veterinary sciences", "15. Life on land", "Soil C", "01 natural sciences", "Heterotrophic and autotrophic respiration", "13. Climate action", "Pilbara region", "Soil temperature", "0401 agriculture", " forestry", " and fisheries", "Soil moisture", "Global change", "Soil CO2 efflux", "0105 earth and related environmental sciences"]}, "links": [{"href": "https://doi.org/10.1016/j.scitotenv.2016.02.086"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Science%20of%20The%20Total%20Environment", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1016/j.scitotenv.2016.02.086", "name": "item", "description": "10.1016/j.scitotenv.2016.02.086", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1016/j.scitotenv.2016.02.086"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2016-12-01T00:00:00Z"}}, {"id": "10.1016/j.ejsobi.2008.09.011", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:15:54Z", "type": "Journal Article", "created": "2008-10-15", "title": "Experimental Drought Reduced Acid And Alkaline Phosphatase Activity And Increased Organic Extractable P In Soil In A Quercus Ilex Mediterranean Forest", "description": "Open AccessPeer reviewed", "keywords": ["NUTRIENT CONTENT", "Quercusilex", "POSTFIRE REGENERATION", "Total soil-P", "Soil", "OAK FOREST", "Litter", "PINUS-HALEPENSIS", "ENZYME-ACTIVITIES", "2. Zero hunger", "Soil organic matter", "Drought", "NE SPAIN", "MICROBIAL BIOMASS", "Leaf P concentration", "04 agricultural and veterinary sciences", "15. Life on land", "6. Clean water", "Quercus ilex", "PHOSPHORUS LIMITATION", "PLANT-GROWTH", "13. Climate action", "SHORT-TERM", "Alkaline phosphatase activity", "0401 agriculture", " forestry", " and fisheries", "Acid phosphatase activity", "Soil moisture", "Short-term available-P", "Soilorganic matter"]}, "links": [{"href": "https://doi.org/10.1016/j.ejsobi.2008.09.011"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/European%20Journal%20of%20Soil%20Biology", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1016/j.ejsobi.2008.09.011", "name": "item", "description": "10.1016/j.ejsobi.2008.09.011", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1016/j.ejsobi.2008.09.011"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2008-09-01T00:00:00Z"}}, {"id": "10.1016/j.rse.2018.04.013", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:16:35Z", "type": "Journal Article", "created": "2018-04-24", "title": "Retrieving surface soil moisture at high spatio-temporal resolution from a synergy between Sentinel-1 radar and Landsat thermal data: A study case over bare soil", "description": "Radar data have been used to retrieve and monitor the surface soil moisture (SM) changes in various conditions. However, the calibration of radar models whether empirically or physically-based, is still subject to large uncertainties especially at high-spatial resolution. To help calibrate radar-based retrieval approaches to supervising SM at high resolution, this paper presents an innovative synergistic method combining Sentinel-1 (S1) microwave and Landsat-7/8 (L7/8) thermal data. First, the S1 backscatter coefficient was normalized by its maximum and minimum values obtained during 2015\u20132016 agriculture season. Second, the normalized S1 backscatter coefficient was calibrated from reference points provided by a thermal-derived SM proxy named soil evaporative efficiency (SEE, defined as the ratio of actual to potential soil evaporation). SEE was estimated as the radiometric soil temperature normalized by its minimum and maximum values reached in a water-saturated and dry soil, respectively. We estimated both soil temperature endmembers by using a soil energy balance model forced by available meteorological forcing. The proposed approach was evaluated against in situ SM measurements collected over three bare soil fields in a semi-arid region in Morocco and we compared it against a classical approach based on radar data only. The two polarizations VV (vertical transmit and receive) and VH (vertical transmit and horizontal receive) of the S1 data available over the area are tested to analyse the sensitivity of radar signal to SM at high incidence angles (39\u00b0\u201343\u00b0). We found that the VV polarization was better correlated to SM than the VH polarization with a determination coefficient of 0.47 and 0.28, respectively. By combining S1 (VV) and L7/8 data, we reduced the root mean square difference between satellite and in situ SM to 0.03\u202fm3\u202fm\u22123, which is far smaller than 0.16\u202fm3\u202fm\u22123 when using S1 (VV) only.", "keywords": ["550", "[SDE.IE]Environmental Sciences/Environmental Engineering", "Sentinel-1 (A/B)", "near surface soil moisture", "Bare soil", "0211 other engineering and technologies", "Sentinel-1 (AB)", "02 engineering and technology", "15. Life on land", "Landsat-78", "01 natural sciences", "Energy balance modelling", "Near surface soil moisture", "Landsat-7/8", "bare soil", "13. Climate action", "energy balance modelling", "soil evaporation", "[SDE.IE] Environmental Sciences/Environmental Engineering", "Soil evaporation", "0105 earth and related environmental sciences"]}, "links": [{"href": "https://hal.archives-ouvertes.fr/hal-01912888/file/Amazirh%20et%20al_2018%20%281%29.pdf"}, {"href": "https://doi.org/10.1016/j.rse.2018.04.013"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Remote%20Sensing%20of%20Environment", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1016/j.rse.2018.04.013", "name": "item", "description": "10.1016/j.rse.2018.04.013", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1016/j.rse.2018.04.013"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2018-06-01T00:00:00Z"}}, {"id": "10.1016/j.rse.2019.111627", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:16:35Z", "type": "Journal Article", "created": "2020-01-10", "title": "Irrigation retrieval from Landsat optical/thermal data integrated into a crop water balance model: A case study over winter wheat fields in a semi-arid region", "description": "Abstract   Monitoring irrigation is essential for an efficient management of water resources in arid and semi-arid regions. We propose to estimate the timing and the amount of irrigation throughout the agricultural season using optical and thermal Landsat-7/8 data. The approach is implemented in four steps: i) partitioning the Landsat land surface temperature (LST) to derive the crop water stress coefficient (Ks), ii) estimating the daily root zone soil moisture (RZSM) from the integration of Landsat-derived Ks into a crop water balance model, iii) retrieving irrigation at the Landsat pixel scale and iv) aggregating pixel-scale irrigation estimates at the crop field scale. The new irrigation retrieval method is tested over three agricultural areas during four seasons and is evaluated over five winter wheat fields under different irrigation techniques (drip, flood and no-irrigation). The model is very accurate for the seasonal accumulated amounts (R ~ 0.95 and RMSE ~ 44\u00a0mm). However, lower agreements with observed irrigations are obtained at the daily scale. To assess the performance of the irrigation retrieval method over a range of time periods, the daily predicted and observed irrigations are cumulated from 1 to 90\u00a0days. Generally, acceptable errors (R\u00a0=\u00a00.52 and RMSE\u00a0=\u00a027\u00a0mm) are obtained for irrigations cumulated over 15\u00a0days and the performance gradually improves by increasing the accumulation period, depicting a strong link to the frequency of Landsat overpasses (16\u00a0days or 8\u00a0days by combining Landsat-7 and -8). Despite the uncertainties in retrieved irrigations at daily to weekly scales, the daily RZSM and evapotranspiration simulated from the retrieved daily irrigations are estimated accurately and are very close to those estimated from actual irrigations. This research demonstrates the utility of high spatial resolution optical and thermal data for estimating irrigation and consequently for better closing the water budget over agricultural areas. We also show that significant improvements can be expected at daily to weekly time scales by reducing the revisit time of high-spatial resolution thermal data, as included in the TRISHNA future mission requirements.", "keywords": ["[SDE] Environmental Sciences", "2. Zero hunger", "550", "Evapotranspiration", "0208 environmental biotechnology", "Root-zone soil moisture", "0207 environmental engineering", "FAO-56 model", "02 engineering and technology", "15. Life on land", "630", "[SDU.ENVI] Sciences of the Universe [physics]/Continental interfaces", " environment", "6. Clean water", "[SDE]Environmental Sciences", "[SDU.STU.HY] Sciences of the Universe [physics]/Earth Sciences/Hydrology", "[SDU.STU.HY]Sciences of the Universe [physics]/Earth Sciences/Hydrology", "[SDU.ENVI]Sciences of the Universe [physics]/Continental interfaces", "environment", "Irrigation", "Landsat", "Land surface temperature"], "contacts": [{"organization": "Olivera-Guerra, Luis Enrique, Merlin, Olivier, Er-Raki, Salah,", "roles": ["creator"]}]}, "links": [{"href": "https://doi.org/10.1016/j.rse.2019.111627"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Remote%20Sensing%20of%20Environment", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1016/j.rse.2019.111627", "name": "item", "description": "10.1016/j.rse.2019.111627", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1016/j.rse.2019.111627"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2020-03-01T00:00:00Z"}}, {"id": "10.1016/j.foreco.2016.05.025", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:16:12Z", "type": "Journal Article", "created": "2016-05-29", "title": "The Effect Of Robinia Pseudoacacia Afforestation On Soil And Vegetation Properties In The Loess Plateau (China): A Chronosequence Approach", "description": "Revegetation is one of the primary management approaches for solving the problems caused by severe soil erosion worldwide. Robinia pseudoacacia was considered a promising tree for afforestation in the highly eroded region of the Loess Plateau due to its fast growth and ability to fix atmospheric nitrogen. However, its beneficial role protecting soils from erosion has been now questioned and several negative effects on soil and vegetation have been described. In this study we aimed to analyze the effects of R. pseudoacacia plantation on plant community composition and dynamics through the effects that R. pseudoacacia has on light, soil fertility and soil water availability. We used a chronosequence from 10-40-year-old plantations and compared the environmental and vegetation characteristics of that areas with that of natural control areas with similar age. The results showed that R. pseudoacacia plantations reached maturity around 30 years and then declined in density and canopy cover. We also found that soil nutrients and moisture at the superficial soil layer improved with age until maturity of plantations, but photosynthetically active radiation at the ground level and soil moisture at deeper soil layers decreased with maturity in relation to control conditions. Plots with R. pseudoacacia of all ages had higher cover values, lower number of species but higher \u03b2-diversity values than control conditions and they also differed in species composition. These differences in structure and species composition were related to the fertilizer effect of R. pseudoacacia that favored colonization by weeds and ruderal species, and to the light interception by the canopy of trees that exclude light-demanding species, most of them perennial herbaceous species which were the dominant species in control conditions. This study was supported by the project of National Natural Science Foundation of China (41371280) and the public welfare special project of Ministry of Water Resources of China (201501045). Peer Reviewed", "keywords": ["Soil nutrients", "2. Zero hunger", "0106 biological sciences", "Species composition", "\u03b2-diversity", "Photosynthetically active radiation", "Soil moisture dynamics", "0401 agriculture", " forestry", " and fisheries", "04 agricultural and veterinary sciences", "15. Life on land", "01 natural sciences", "Desertification"], "contacts": [{"organization": "Patricio Garc\u00eda-Fayos, Shu Hu, Meng Kou, Juying Jiao,", "roles": ["creator"]}]}, "links": [{"href": "https://doi.org/10.1016/j.foreco.2016.05.025"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Forest%20Ecology%20and%20Management", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1016/j.foreco.2016.05.025", "name": "item", "description": "10.1016/j.foreco.2016.05.025", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1016/j.foreco.2016.05.025"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2016-09-01T00:00:00Z"}}, {"id": "10.1016/j.rse.2020.112050", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:16:35Z", "type": "Journal Article", "created": "2020-08-24", "title": "Monitoring of wheat crops using the backscattering coefficient and the interferometric coherence derived from Sentinel-1 in semi-arid areas. Remote Sensing of Environment, 251, 112050.", "description": "Abstract   Radar data at C-band has shown great potential for the monitoring of soil and canopy hydric conditions of wheat crops. In this study, the C-band Sentinel-1 time series including the backscattering coefficients \u03c30 at VV and VH polarization, the polarization ratio (PR) and the interferometric coherence \u03c1 are first analyzed with the support of experimental data gathered on three plots of irrigated winter wheat located in the Haouz plain in the center of Morocco covering five growing seasons. The results showed that \u03c1 and PR are tightly related to the canopy development. \u03c1 is also sensitive to soil preparation. By contrast, \u03c30 was found to be widely linked to changes in surface soil moisture (SSM) during the first growth stages when Leaf Area Index remains moderate (", "keywords": ["[SDE] Environmental Sciences", "2. Zero hunger", "Interferometric coherence", "0211 other engineering and technologies", "04 agricultural and veterinary sciences", "02 engineering and technology", "15. Life on land", "Surface soil moisture", "630", "Backscattering coefficient", "Winter wheat", "[SDE]Environmental Sciences", "Sentinel-1", "0401 agriculture", " forestry", " and fisheries", "Semi-arid region", "C-band"]}, "links": [{"href": "https://doi.org/10.1016/j.rse.2020.112050"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Remote%20Sensing%20of%20Environment", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1016/j.rse.2020.112050", "name": "item", "description": "10.1016/j.rse.2020.112050", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1016/j.rse.2020.112050"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2020-12-01T00:00:00Z"}}, {"id": "10.1016/j.rse.2023.113621", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:16:35Z", "type": "Journal Article", "created": "2023-05-13", "title": "Optimisation of AquaCrop backscatter simulations using Sentinel-1 observations", "description": "In preparation for active microwave-based data assimilation into a crop modeling system, the mapping of daily 1-km AquaCrop model (v6.1) biomass and surface soil moisture to backscatter was optimised, using two forward operators, i.e. the Water Cloud Model (WCM) and the Support Vector Regression (SVR). Both forward operators were calibrated (2014\u20132018) with 1-km Sentinel-1 backscatter ( ) observations in VV and VH polarisation, for three different study domains in Europe. For the validation period (2019\u20132021), the simulations showed reasonable performances around Czech Republic and the Iberian Peninsula, to good performances over Belgium, but with strong variations within each domain. The domain-averaged root mean square difference between the model and Sentinel-1 remained below 2 dB for both forward operators and all three study domains, and the mean bias for VV remained close to 0 dB, and close 0.5 dB for the VH polarisation. The WCM and SVR performed better in VV than VH and overall the SVR performed slightly better in mapping the AquaCrop soil moisture and vegetation to backscatter than the WCM. Additionally, the assumed linear relationship in the WCM between soil moisture and soil holds better for VV than for VH. The remaining differences between WCM or SVR simulations and Sentinel-1 observations are mainly caused by AquaCrop model errors.", "keywords": ["Agriculture and Food Sciences", "Crop biomass", "YIELD RESPONSE", "ASSIMILATION", "Backscatter modeling", "LEAF-AREA INDEX", "RADAR BACKSCATTER", "BIOMASS", "SAR BACKSCATTER", "AquaCrop optimisation", "13. Climate action", "SURFACE SOIL-MOISTURE", "Earth and Environmental Sciences", "SUPPORT", "Sentinel-1", "WATER", "Soil moisture", "FAO CROP MODEL"]}, "links": [{"href": "https://doi.org/10.1016/j.rse.2023.113621"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Remote%20Sensing%20of%20Environment", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1016/j.rse.2023.113621", "name": "item", "description": "10.1016/j.rse.2023.113621", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1016/j.rse.2023.113621"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2023-08-01T00:00:00Z"}}, {"id": "10.1016/j.scitotenv.2022.155783", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:16:41Z", "type": "Journal Article", "created": "2022-05-09", "title": "Impacts of elevation on plant traits and volatile organic compound emissions in deciduous tundra shrubs", "description": "The northernmost regions of our planet experience twice the rate of climate warming compared to the global average. Despite the currently low air temperatures, tundra shrubs are known to exhibit high leaf temperatures and are increasing in height due to warming, but it is unclear how the increase in height will affect the leaf temperature. To study how temperature, soil moisture, and changes in light availability influence the physiology and emissions of climate-relevant volatile organic compounds (VOCs), we conducted a study on two common deciduous tundra shrubs, Salix glauca (separating males and females for potential effects of plant sex) and Betula glandulosa, at two elevations in South Greenland. Low-elevation Salix shrubs were 45% taller, but had 37% lower rates of net CO2 assimilation and 63% lower rates of isoprene emission compared to high-elevation shrubs. Betula shrubs showed 40% higher stomatal conductance and 24% higher glandular trichome density, in the low-elevation valley, compared to those from the high-elevation mountain slope. Betula green leaf volatile emissions were 235% higher at high elevation compared to low elevation. Male Salix showed a distinct VOC blend and emitted 55% more oxygenated VOCs, compared to females, possibly due to plant defense mechanisms. In our light response curves, isoprene emissions increased linearly with light intensity, potentially indicating adaptation to strong light. Leaf temperature decreased with increasing Salix height, at 4 \u00b0C m-1, which can have implications for plant physiology. However, no similar relationship was observed for B. glandulosa. Our results highlight that tundra shrub traits and VOC emissions are sensitive to temperature and light, but that local variations in soil moisture strongly interact with temperature and light responses. Our results suggest that effects of climate warming, alone, poorly predict the actual plant responses in tundra vegetation.", "keywords": ["0301 basic medicine", "Volatile Organic Compounds", "0303 health sciences", "Betula glandulosa", "Light", "Height", "Salix glauca", "Arctic Regions", "VOC", "Climate Change", "CO assimilation", "Salix", "15. Life on land", "Leaf temperature", "Soil", "03 medical and health sciences", "13. Climate action", "11. Sustainability", "Sex", "Soil moisture", "Tundra", "Betula"]}, "links": [{"href": "https://doi.org/10.1016/j.scitotenv.2022.155783"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Science%20of%20The%20Total%20Environment", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1016/j.scitotenv.2022.155783", "name": "item", "description": "10.1016/j.scitotenv.2022.155783", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1016/j.scitotenv.2022.155783"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2022-09-01T00:00:00Z"}}, {"id": "10.1016/j.soilbio.2007.07.016", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:16:46Z", "type": "Journal Article", "created": "2007-08-22", "title": "The Influence Of Soluble Carbon And Fertilizer Nitrogen On Nitric Oxide And Nitrous Oxide Emissions From Two Contrasting Agricultural Soils", "description": "Contradictory effects of simultaneous available organic C and N sources on nitrous oxide (N2O), carbon dioxide (CO2) and nitric oxide (NO) fluxes are reported in the literature. In order to clarify this controversy, laboratory experiments were conduced on two different soils, a semiarid arable soil from Spain (soil I, pH=7.5, 0.8%C) and a grassland soil from Scotland (soil II, pH=5.5, 4.1%C). Soils were incubated at two different moisture contents, at a water filled pore space (WFPS) of 90% and 40%. Ammonium sulphate, added at rates equivalent to 200 and 50 kg N ha\u22121, stimulated N2O and NO emissions in both soils. Under wet conditions (90% WFPS), at high and low rates of N additions, cumulative N2O emissions increased by 250.7 and 8.1 ng N2O\u2013N g\u22121 in comparison to the control, respectively, in soil I and by 472.2 and 2.1 ng N2O\u2013N g\u22121, respectively, in soil II. NO emissions only significantly increased in soil I at the high N application rate with and without glucose addition and at both 40% and 90% WFPS. In both soils additions of glucose together with the high N application rate (200 kg N ha\u22121) reduced cumulative N2O and NO emissions by 94% and 55% in soil I, and by 46% and 66% in soil II, respectively. These differences can be explained by differences in soil properties, including pH, soil mineral N and total and dissolved organic carbon content. It is speculated that nitrifier denitrification was the main source of NO and N2O in the C-poor Spanish soil, and coupled nitrification\u2013denitrification in the C-rich Scottish soil.", "keywords": ["2. Zero hunger", "mitigation", "mineral N", "nitrous oxide", "nitric oxide", "13. Climate action", "0401 agriculture", " forestry", " and fisheries", "04 agricultural and veterinary sciences", "glucose", "soil moisture", "15. Life on land", "soil respiration", "6. Clean water"]}, "links": [{"href": "https://doi.org/10.1016/j.soilbio.2007.07.016"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Soil%20Biology%20and%20Biochemistry", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1016/j.soilbio.2007.07.016", "name": "item", "description": "10.1016/j.soilbio.2007.07.016", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1016/j.soilbio.2007.07.016"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2008-01-01T00:00:00Z"}}, {"id": "10.1016/j.soilbio.2021.108400", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:16:54Z", "type": "Journal Article", "created": "2021-08-24", "title": "The mechanisms underpinning microbial resilience to drying and rewetting \u2013 A model analysis", "description": "Abstract   Soil moisture is one of the most important factors controlling the activity and diversity of soil microorganisms. Soils exposed to pronounced cycles of drying and rewetting (D/RW) exhibit disconnected patterns in microbial growth and respiration at RW. These patterns differ depending on the preceding soil moisture history, leading to contrasting amounts of carbon retained in the soil as biomass versus that respired as CO2. The mechanisms underlying these microbially-induced dynamics are still unclear. In this work, we used the process-based soil microbial model EcoSMMARTS to offer candidate explanations for: i) how soil moisture can shape the structure of microbial communities, ii) how soil moisture history affects the responses during D/RW, iii) what microbial mechanisms control the shape, intensity and duration of these responses, and iv) what carbon sources sustain the increased biogeochemical rates after RW. We first evaluated the response to D/RW in bacterial communities previously exposed to two different stress histories (\u2018moderate\u2019 vs \u2018severe\u2019 soil moisture regimes). We found that both the history of soil moisture and the harshness of the dry period preceding the rewetting shaped the structure and physiology of microbial communities. The characteristics of these communities determined the harshness experienced and the nature of the responses to RW obtained. Modelled communities exposed to extended severe conditions showed a resilient response to D/RW, whereas those exposed to moderate environments exhibited a more sensitive response. We then interchanged the soil moisture regimes and found that the progressive adaptation of microbial physiology and structure to new environmental conditions resulted in a switch in the response patterns. These microbial changes also determined the contribution of biomass synthesis, osmoregulation, mineralization by cell residues, and disruption of soil aggregates to CO2 emissions.", "keywords": ["2. Zero hunger", "Water stress", "Birch effect", "Soil respiration", "04 agricultural and veterinary sciences", "15. Life on land", "Agriculture", " Forestry and Fisheries", "Microbial growth", "01 natural sciences", "Ecological strategies", "13. Climate action", "0401 agriculture", " forestry", " and fisheries", "Jordbruk", " skogsbruk och fiske", "Soil moisture", "0105 earth and related environmental sciences"]}, "links": [{"href": "https://doi.org/10.1016/j.soilbio.2021.108400"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Soil%20Biology%20and%20Biochemistry", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1016/j.soilbio.2021.108400", "name": "item", "description": "10.1016/j.soilbio.2021.108400", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1016/j.soilbio.2021.108400"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2021-11-01T00:00:00Z"}}, {"id": "10.1590/s0100-06832009000200010", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:19:33Z", "type": "Journal Article", "created": "2009-07-01", "title": "Carbon Dioxide Efflux In A Rhodic Hapludox As Affected By Tillage Systems In Southern Brazil", "description": "<p>Agricultural soils can act as a source or sink of atmospheric C, according to the soil management. This long-term experiment (22 years) was evaluated during 30 days in autumn, to quantify the effect of tillage systems (conventional tillage-CT and no-till-NT) on the soil CO2-C flux in a Rhodic Hapludox in Rio Grande do Sul State, Southern Brazil. A closed-dynamic system (Flux Chamber 6400-09, Licor) and a static system (alkali absorption) were used to measure soil CO2-C flux immediately after soybean harvest. Soil temperature and soil moisture were measured simultaneously with CO2-C flux, by Licor-6400 soil temperature probe and manual TDR, respectively. During the entire month, a CO2-C emission of less than 30 % of the C input through soybean crop residues was estimated. In the mean of a 30 day period, the CO2-C flux in NT soil was similar to CT, independent of the chamber type used for measurements. Differences in tillage systems with dynamic chamber were verified only in short term (daily evaluation), where NT had higher CO2-C flux than CT at the beginning of the evaluation period and lower flux at the end. The dynamic chamber was more efficient than the static chamber in capturing variations in CO2-C flux as a function of abiotic factors. In this chamber, the soil temperature and the water-filled pore space (WFPS), in the NT soil, explained 83 and 62 % of CO2-C flux, respectively. The Q10 factor, which evaluates CO2-C flux dependence on soil temperature, was estimated as 3.93, suggesting a high sensitivity of the biological activity to changes in soil temperature during fall season. The CO2-C flux measured in a closed dynamic chamber was correlated with the static alkali adsorption chamber only in the NT system, although the values were underestimated in comparison to the other, particularly in the case of high flux values. At low soil temperature and WFPS conditions, soil tillage caused a limited increase in soil CO2-C flux.</p>", "keywords": ["Efeito estufa", "2. Zero hunger", "Biologia do solo", "no-till", "umidade do solo", "soil temperature", "temperatura do solo", "Temperatura do solo", "No-till", "04 agricultural and veterinary sciences", "Plantio direto", "15. Life on land", "Solos - Umidade", "6. Clean water", "Umidade do solo", "plantio direto", "Greenhouse gases", "13. Climate action", "greenhouse gases", "Soil temperature", "0401 agriculture", " forestry", " and fisheries", "Soil moisture", "soil moisture", "gases de efeito estufa"], "contacts": [{"organization": "Chavez, Luis Fernando, Amado, Telmo Jorge Carneiro, Bayer, Cim\u00e9lio, La Scala, Newton Junior, Escobar, Luisa Fernanda, Fiorin, Jackson Ernani, Campos, Ben-Hur Costa de,", "roles": ["creator"]}]}, "links": [{"href": "https://doi.org/10.1590/s0100-06832009000200010"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Revista%20Brasileira%20de%20Ci%C3%AAncia%20do%20Solo", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1590/s0100-06832009000200010", "name": "item", "description": "10.1590/s0100-06832009000200010", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1590/s0100-06832009000200010"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2009-04-01T00:00:00Z"}}, {"id": "10.1111/1462-2920.16268", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:18:24Z", "type": "Journal Article", "created": "2022-11-03", "title": "Environmental micro\u2010niche filtering shapes bacterial pioneer communities during primary colonization of a Himalayas' glacier forefield", "description": "Abstract<p>The pedogenesis from the mineral substrate released upon glacier melting has been explained with the succession of consortia of pioneer microorganisms, whose structure and functionality are determined by the environmental conditions developing in the moraine. However, the microbiome variability that can be expected in the environmentally heterogeneous niches occurring in a moraine at a given successional stage is poorly investigated. In a 50\uffe2\uff80\uff89m2 area in the forefield of the Lobuche glacier (Himalayas, 5050\uffe2\uff80\uff89m above sea level), we studied six sites of primary colonization presenting different topographical features (orientation, elevation and slope) and harbouring greyish/dark biological soil crusts (BSCs). The spatial vicinity of the sites opposed to their topographical differences, allowed us to examine the effect of environmental conditions independently from the time of deglaciation. The bacterial microbiome diversity and their co\uffe2\uff80\uff90occurrence network, the bacterial metabolisms predicted from 16S rRNA gene high\uffe2\uff80\uff90throughput sequencing, and the microbiome intact polar lipids were investigated in the BSCs and the underlying sediment deep layers (DLs). Different bacterial microbiomes inhabited the BSCs and the DLs, and their composition varied among sites, indicating a niche\uffe2\uff80\uff90specific role of the micro\uffe2\uff80\uff90environmental conditions in the bacterial communities' assembly. In the heterogeneous sediments of glacier moraines, physico\uffe2\uff80\uff90chemical and micro\uffe2\uff80\uff90climatic variations at the site\uffe2\uff80\uff90spatial scale are crucial in shaping the microbiome microvariability and structuring the pioneer bacterial communities during pedogenesis.</p>", "keywords": ["0301 basic medicine", "Pedogenesis", "0303 health sciences", "Glacier Foreland Succession", "Bacteria", "Biological soil crust", "15. Life on land", "Primary Colonization", "Soil", "03 medical and health sciences", "13. Climate action", "RNA", " Ribosomal", " 16S", "Glacier Moraines", "Cold Deserts", "Pioneer Bacterial Communities", "Ice Cover", "Soil moisture", "Research Articles", "Soil Microbiology"]}, "links": [{"href": "https://air.unimi.it/bitstream/2434/949070/2/Rolli%20et%20al%202022%20Environmental%20micro%e2%80%90niche%20filtering%20shapes%20bacterial%20pioneer%20communities.pdf"}, {"href": "https://eprints.ncl.ac.uk/fulltext.aspx?url=302678/40A25368-9064-4886-B8E6-E7942511FA71.pdf&pub_id=302678"}, {"href": "https://doi.org/10.1111/1462-2920.16268"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Environmental%20Microbiology", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1111/1462-2920.16268", "name": "item", "description": "10.1111/1462-2920.16268", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1111/1462-2920.16268"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2022-11-18T00:00:00Z"}}, {"id": "10.1029/2024jg008231", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:17:29Z", "type": "Journal Article", "created": "2024-10-17", "title": "Assimilation of Sentinel\u20101 Backscatter to Update AquaCrop Estimates of Soil Moisture and Crop Biomass", "description": "Abstract<p>This study assesses the potential of regional microwave backscatter data assimilation (DA) in AquaCrop for the first time, using NASA's Land Information System. The objective is to assess whether the assimilation setup can improve surface soil moisture (SSM) and crop biomass estimates. SSM and crop biomass simulations from AquaCrop were updated using Sentinel\uffe2\uff80\uff901 synthetic aperture radar observations, over three regions in Europe in two separate DA experiments. The first experiment concerned updating SSM using VV\uffe2\uff80\uff90polarized backscatter and the corrections were propagated via the model to the biomass. In the second experiment, the DA setup was extended by also updating the biomass with VH\uffe2\uff80\uff90polarized backscatter. SSM was evaluated with local in situ data and with downscaled Soil Moisture Active Passive (SMAP) retrievals for all cropland grid cells, whereas crop biomass was compared to SMAP vegetation optical depth and the Copernicus dry matter productivity. The assimilation showed mixed results for root mean square error and Pearson's correlation, with slight overall improvements in the (anomaly) correlations of updated SSM relative to independent in situ and satellite data. By contrast, the biomass estimates obtained with backscatter DA did not agree better with reference data sets. Overall, the SSM evaluation showed that there is potential in using Sentinel\uffe2\uff80\uff901 backscatter for assimilation in AquaCrop, but the present setup was not able to improve crop biomass estimates. Our study reveals how the complex interaction between SSM, crop biomass and backscatter affect the impact and performance of DA, offering insight into ways to optimize DA for crop growth estimation.</p", "keywords": ["SURFACE", "SIMULATE YIELD RESPONSE", "LAND INFORMATION-SYSTEM", "FRAMEWORK", "AquaCrop", "MODEL", "Earth and Environmental Sciences", "IRRIGATION", "Sentinel-1 SAR", "NETWORK", "soil moisture", "data assimilation", "SATELLITE", "crop biomass"]}, "links": [{"href": "https://doi.org/10.1029/2024jg008231"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Journal%20of%20Geophysical%20Research%3A%20Biogeosciences", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1029/2024jg008231", "name": "item", "description": "10.1029/2024jg008231", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1029/2024jg008231"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2024-10-01T00:00:00Z"}}, {"id": "10.1023/a:1004818422908", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:17:19Z", "type": "Journal Article", "description": "We quantified rates of soil respiration among sites within an agricultural landscape in central Iowa, USA. The study was conducted in riparian cool-season grass buffers, in re-established multispecies (switchgrass + poplar) riparian buffers and in adjacent crop (maize and soybean) fields. The objectives were to determine the variability in soil respiration among buffer types and crop fields within a riparian landscape, and to identify those factors correlating with the observed differences. Soil respiration was measured approximately monthly over a two-year period using the soda-lime technique. Mean daily soil respiration across all treatments ranged from 0.14 to 8.3 g C m\u22122 d\u22121. There were no significant differences between cool-season grass buffers and re-established forest buffers, but respiration rates beneath switchgrass were significantly lower than those beneath cool-season grass. Soil respiration was significantly greater in both buffer systems than in the cropped fields. Seasonal changes in soil respiration were strongly related to temperature changes. Over all sites, soil temperature and soil moisture together accounted for 69% of the seasonal variability in soil respiration. Annual soil respiration rates correlated strongly with soil organic carbon (R = 0.75, P < 0.001) and fine root (<2 mm) biomass (R = 0.85, P < 0.001). Annual soil respiration rates averaged 1140 g C m\u22122 for poplar, 1185 g C m\u22122 for cool-season grass, 1020 g C m\u22122 for switchgrass, 750 g C m\u22122 for soybean and 740 g C m\u22122 for corn. Overall, vegetated buffers had significantly higher soil respiration rates than did adjacent crop fields, indicating greater soil biological activity within the buffers.", "keywords": ["Soil Temperature", "Soil-CO2 Emissions", "Soil Moisture", "Agroecology"], "contacts": [{"organization": "T\u00fcfek\u00e7io\u011flu, Ayd\u0131n, Raich, J.W., Isenhart, T.M., Schultz, R.C.,", "roles": ["creator"]}]}, "links": [{"href": "https://doi.org/10.1023/a:1004818422908"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Plant%20and%20Soil", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1023/a:1004818422908", "name": "item", "description": "10.1023/a:1004818422908", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1023/a:1004818422908"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2001-01-01T00:00:00Z"}}, {"id": "10.1023/a:1011959805622", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:17:21Z", "type": "Journal Article", "title": "Roots, Soil Water And Crop Yield: Tree Crop Interactions In A Semi-Arid Agroforestry System In Kenya", "description": "Variations in soil water, crop yield and fine roots of 3\u20134 year-old Grevillea robusta Cunn. and Gliricidia sepium (Jacq.) Walp. growing in association with maize (Zea mays L.) were examined in semiarid Kenya during the long rains of 1996 and 1997. Even although tree roots penetrated more deeply than maize roots, maximum root length densities for both tree species and maize occurred in the top 200 mm of the soil profile where soil moisture was frequently recharged by rains. Populations of roots in plots containing trees were dominated by tree roots at the beginning of the growing season but because tree roots died and maize root length increased during the cropping season, amounts of tree and maize roots were similar at the end of the season. Thus, there was evidence of temporal separation of root activity between species, but there was no spatial separation of the rooting zones of the trees and crops within that part of the soil profile occupied by crop roots. Tree root length density declined with increasing distances from rows of trees and with depth in the soil profile. Although Grevillea trees were largest, plots containing G. sepium trees always contained more tree roots than plots containing G. robusta trees and Gliricidia was more competitive with maize than Grevillea. Overall, Gliricidia reduced crop yield by about 50% and Grevillea by about 40% relative to crop yield in control plots lacking trees and reductions of crop yield were greatest close to trees. There was less soil moisture in plots containing trees than in control plots. Such difference between control plots and plots containing trees were maximal at the end of the dry season and there was always less soil moisture close to trees than elsewhere in the plots. Plots containing Gliricidia trees contained less soil water than plots containing Grevillea trees.", "keywords": ["Grevillea robusta", "fine root dynamics", "crop yield", "soil moisture", "Gliricidia sepium", "Zea mays"], "contacts": [{"organization": "Odhiambo, H.O., Ong, C.K., Deans, J.D., Wilson, J., Khan, A.A.H., Sprent, J.I.,", "roles": ["creator"]}]}, "links": [{"href": "https://doi.org/10.1023/a:1011959805622"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Plant%20and%20Soil", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1023/a:1011959805622", "name": "item", "description": "10.1023/a:1011959805622", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1023/a:1011959805622"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2001-01-01T00:00:00Z"}}, {"id": "10.1088/1748-9326/abfe8a", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:18:08Z", "type": "Journal Article", "created": "2021-05-06", "title": "Decreased soil moisture due to warming drives phylogenetic diversity and community transitions in the tundra", "description": "Abstract                <p>Global warming leads to drastic changes in the diversity and structure of Arctic plant communities. Studies of functional diversity within the Arctic tundra biome have improved our understanding of plant responses to warming. However, these studies still show substantial unexplained variation in diversity responses. Complementary to functional diversity, phylogenetic diversity has been useful in climate change studies, but has so far been understudied in the Arctic. Here, we use a 25 year warming experiment to disentangle community responses in Arctic plant phylogenetic \uffce\uffb2 diversity across a soil moisture gradient. We found that responses varied over the soil moisture gradient, where meadow communities with intermediate to high soil moisture had a higher magnitude of response. Warming had a negative effect on soil moisture levels in all meadow communities, however meadows with intermediate moisture levels were more sensitive. In these communities, soil moisture loss was associated with earlier snowmelt, resulting in community turnover towards a more heath-like community. This process of \uffe2\uff80\uff98heathification\uffe2\uff80\uff99 in the intermediate moisture meadows was driven by the expansion of ericoid and Betula shrubs. In contrast, under a more consistent water supply Salix shrub abundance increased in wet meadows. Due to its lower stature, palatability and decomposability, the increase in heath relative to meadow vegetation can have several large scale effects on the local food web as well as climate. Our study highlights the importance of the hydrological cycle as a driver of vegetation turnover in response to Arctic climate change. The observed patterns in phylogenetic \uffce\uffb2 diversity were often driven by contrasting responses of species of the same functional growth form, and could thus provide important complementary information. Thus, phylogenetic diversity is an important tool in disentangling tundra response to environmental change.</p", "keywords": ["0301 basic medicine", "2. Zero hunger", "0303 health sciences", "Science", "Physics", "QC1-999", "Q", "15. Life on land", "Environmental technology. Sanitary engineering", "Environmental sciences", "long-term warming", "03 medical and health sciences", "vegetation change", "13. Climate action", "phylogenetic diversity", "GE1-350", "Arctic tundra", "soil moisture", "shrubification", "TD1-1066", "biodiversity"]}, "links": [{"href": "https://doi.org/10.1088/1748-9326/abfe8a"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Environmental%20Research%20Letters", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1088/1748-9326/abfe8a", "name": "item", "description": "10.1088/1748-9326/abfe8a", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1088/1748-9326/abfe8a"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2021-05-24T00:00:00Z"}}, {"id": "10.1046/j.1365-2486.1997.d01-133.x", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:17:43Z", "type": "Journal Article", "created": "2003-11-02", "title": "Elevated Atmospheric Co2 Affects Decomposition Of Festuca Vivipara (L) Sm Litter And Roots In Experiments Simulating Environmental Change In Two Contrasting Arctic Ecosystems", "description": "<p>Mass loss, together with nitrogen and carbon loss, from above\uffe2\uff80\uff90ground material and roots of Festuca vivipara were followed for 13 months in a high Arctic polar semi\uffe2\uff80\uff90desert and a low Arctic tree\uffe2\uff80\uff90line dwarf shrub heath. Festuca vivipara for the study was obtained from plants cultivated at two different CO2 concentrations (350 and 500 \uffce\uffbcL L\uffe2\uff80\uff931) in controlled environment chambers in the UK. Each of the four resource types (shoots or roots from plants grown in elevated or ambient CO2 concentrations) was subsequently placed in an experiment simulating aspects of environmental change in each Arctic ecosystem. Air, litter and soil temperatures were increased using open\uffe2\uff80\uff90topped polythene tents at both sites, and a 58% increase in summer precipitation was simulated at the high Arctic site.</p><p>Mass loss was greatest at the low Arctic site, and from the shoot material, rather than the roots. Shoots grown under an elevated CO2 concentration decomposed more slowly at the high Arctic site, and more quickly at the low Arctic one, than shoots grown at ambient CO2. After 13 months, greater amounts of C and N remained in above\uffe2\uff80\uff90ground litter from plants grown under elevated, rather than ambient, CO2 at the polar semi\uffe2\uff80\uff90desert site, although lower amounts of C remained in elevated CO2 litter at the low Arctic ecosystem. In the high Arctic, roots grown in the 500 \uffce\uffbcL L\uffe2\uff80\uff931 CO2 concentration decomposed significantly more slowly than below\uffe2\uff80\uff90ground material derived from the ambient CO2 chambers. Elevated CO2 concentrations significantly increased the inital C:N ratio, % soluble carbohydrates and \uffce\uffb1\uffe2\uff80\uff90cellulose content, and significantly decreased the inital N content, of the above\uffe2\uff80\uff90ground material compared to that derived from the ambient treatment. Initially, the C:N ratio and percentage N were similar in both sets of roots derived from the two different CO2 treatments, but soluble carbohydrate and \uffce\uffb1\uffe2\uff80\uff90cellulose concentrations were higher, and percentage lignin lower, in the elevated CO2 treatments.The tent treatments significantly retarded shoot decomposition in both ecosystems, probably because of lower litter bag moisture contents, although the additional precipitation treatment had no effect on mass loss from the above\uffe2\uff80\uff90ground material. The results suggest that neither additional summer precipitation (up to 58%), nor soil temperature increase of 1 \uffc2\uffb0C, which may occur by the end of the next century as an effect of a predicted 4 \uffc2\uffb0C rise in air temperature, had an appreciable effect on root decomposition in the short term in a high Arctic soil. However, at the low Arctic site, greater root decomposition, and a lower pool of root N remaining, were observed where soil temperature was increased by 2 \uffc2\uffb0C in response to a 4 \uffc2\uffb0C rise in air temperature. These results suggest that decomposition below\uffe2\uff80\uff90ground in this ecosystem would increase as an effect of predicted climate change. These data also show that there is a difference in the initial results of decomposition processes between the two Arctic ecosystems in response to simulated environmental change.</p>", "keywords": ["0106 biological sciences", "Decomposition", "Litter quality", "Nitrogen", "Grass", "04 agricultural and veterinary sciences", "15. Life on land", "01 natural sciences", "Carbon", "Arctic", "13. Climate action", "Soil temperature", "0401 agriculture", " forestry", " and fisheries", "Elevated CO2", "Soil moisture"]}, "links": [{"href": "https://doi.org/10.1046/j.1365-2486.1997.d01-133.x"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Global%20Change%20Biology", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1046/j.1365-2486.1997.d01-133.x", "name": "item", "description": "10.1046/j.1365-2486.1997.d01-133.x", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1046/j.1365-2486.1997.d01-133.x"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "1997-02-01T00:00:00Z"}}, {"id": "10.1046/j.1469-8137.1997.00682.x", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:17:45Z", "type": "Journal Article", "created": "2003-03-12", "title": "Effects Of Elevated Atmospheric Co2 And Soil Water Availability On Root Biomass, Root Length, And N, P And K Uptake By Wheat", "description": "summary<p>We investigated interactions between the effects of elevated atmospheric carbon dioxide concentrations ([CO2]) and soil water availability on root biomass, root length and nutrient uptake by spring wheat (Triticum aestivumcv. Tonic). We grew plants at 350 and 700 \uffce\uffbcmol mol\uffe2\uff88\uff921CO2and with frequent and infrequent watering (\uffe2\uff80\uff98wet\uffe2\uff80\uff99 and \uffe2\uff80\uff98dry\uffe2\uff80\uff99 treatments, respectively). Water use per plant was 1.25 times greater at 350 than at 700 \uffce\uffbcmol CO2mol\uffe2\uff88\uff921, and 1.4 times greater in the \uffe2\uff80\uff98wet\uffe2\uff80\uff99 than in the \uffe2\uff80\uff98dry\uffe2\uff80\uff99 treatment. Root biomass increased with [CO2] and with watering frequency. Elevated [CO2] changed the vertical distribution of the roots, with a greater stimulation of root growth in the top layers of the soil. These data were confirmed by the video data of root lengths in the \uffe2\uff80\uff98dry\uffe2\uff80\uff99 treatment, which showed a delayed root development at depth under elevated [CO2]. The apparent amount of N mineralized appeared to be equal for all treatments. Nutrient uptake was affected by [CO2] and by watering frequency, and there were interactions between these treatments. These interactions were different for N, K and P, which appeared to be related to differences in nutrient availability and mobility in the soil. Moreover, these interactions changed with time as the root system became larger with [CO2] and with watering frequency, and as fluctuations in soil moisture contents increased. Elevated [CO2] affected nutrient uptake in contrasting ways. Potassium uptake appeared to be reduced by the smaller mass flow of water reaching the root surface. However, this might be countered with time by the greater root biomass at elevated [CO2], by the greater soil moisture contents at elevated [CO2], enabling faster diffusion, or both. Phosphorus uptake appeared to be increased by the greater root biomass at elevated [COJ. We conclude that plant nutrient uptake at elevated [CO2] is affected by interactions with water availability, though differences between nutrients preclude generalizations of the response.</p>", "keywords": ["2. Zero hunger", "0106 biological sciences", "0401 agriculture", " forestry", " and fisheries", "Elevated CO2", "Soil moisture", "04 agricultural and veterinary sciences", "15. Life on land", "Roots", "01 natural sciences", "6. Clean water", "Triticum aestivum cv. Tonic (spring wheat)"]}, "links": [{"href": "https://doi.org/10.1046/j.1469-8137.1997.00682.x"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/New%20Phytologist", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1046/j.1469-8137.1997.00682.x", "name": "item", "description": "10.1046/j.1469-8137.1997.00682.x", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1046/j.1469-8137.1997.00682.x"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "1997-03-01T00:00:00Z"}}, {"id": "10.1080/01490451.2014.908981", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:18:01Z", "type": "Journal Article", "created": "2015-08-19", "title": "Response Of Soil Denitrifying Communities To Long-Term Prescribed Burning In Two Australian Sclerophyll Forests", "description": "Low-intensity prescribed burning is a common forest management tool and plays a major role in modifying biogeochemical cycling through the alteration of substrate availability and microbial communities. In this study, we assessed the response of microbial community to repeated prescribed burning in two sclerophyll forests (the Bauple site, dry, annual rainfall 1000\u00a0mm; and the Peachester site, wet, 1711\u00a0mm) in southeast Queensland, Australia. At the dry sclerophyll forest (the Bauple site), annual and triennial burning did not significantly alter the soil carbon (C) and nitrogen (N) content, while at the wet scleophyll forest (the Peachester site), two yearly burnings resulted in significantly lower soil total C and N contents compared to the long unburnt treatment. In spite of these different responses, prescribed burning regimes did not significantly influence the abundance of 16S rRNA or denitrifying gene (<i>nar</i>G, <i>nir</i>K, <i>nir</i>S, <i>nos</i>Z) at both sites. These results indicated that, long-term prescribed burning has little effect on the denitrifying communities, while it has varying effects on soil chemical properties at the two sites, which are likely to be explained by differences in vegetation type and soil moisture regime.", "keywords": ["580", "550", "FoR 0403 (Geology)", "denitrifying community", "Geology", "04 agricultural and veterinary sciences", "15. Life on land", "long-term repeated burning", "Microbiology", "3. Good health", "FoR 0605 (Microbiology)", "qPCR", "Soil biology", "13. Climate action", "sclerophyll forest", "0401 agriculture", " forestry", " and fisheries", "soil moisture"]}, "links": [{"href": "https://doi.org/10.1080/01490451.2014.908981"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Geomicrobiology%20Journal", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1080/01490451.2014.908981", "name": "item", "description": "10.1080/01490451.2014.908981", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1080/01490451.2014.908981"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2015-08-09T00:00:00Z"}}, {"id": "10.1080/05704928.2022.2128365", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:18:03Z", "type": "Journal Article", "created": "2022-10-03", "title": "Mathematical techniques to remove moisture effects from visible\u2013near-infrared\u2013shortwave-infrared soil spectra\u2014review", "description": "This is an Accepted Manuscript of an article published by Taylor & Francis in Applied Spectroscopy Reviews on 03 October 2022, available at: https://doi.org/10.1080/05704928.2022.2128365", "keywords": ["EJP Soil", "Proximal Sensing", "ProbeField", "Soil Moisture", "04 agricultural and veterinary sciences", "algorithms", "01 natural sciences", "diffuse reflectance spectroscopy", "field-moist conditions", "EJPSOIL", "0401 agriculture", " forestry", " and fisheries", "indices", "Soil moisture", "0105 earth and related environmental sciences"]}, "links": [{"href": "https://www.tandfonline.com/doi/pdf/10.1080/05704928.2022.2128365"}, {"href": "https://doi.org/10.1080/05704928.2022.2128365"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Applied%20Spectroscopy%20Reviews", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1080/05704928.2022.2128365", "name": "item", "description": "10.1080/05704928.2022.2128365", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1080/05704928.2022.2128365"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2022-10-03T00:00:00Z"}}, {"id": "10.3389/fenvs.2021.555216", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:20:29Z", "type": "Journal Article", "created": "2021-03-16", "title": "Extending the spatio-temporal applicability of DISPATCH soil moisture downscaling algorithm: A study case using SMAP, MODIS and Sentinel-3 data", "description": "<p>DISPATCH is a disaggregation algorithm of the low-resolution soil moisture (SM) estimates derived from passive microwave observations. It provides disaggregated SM data at typically 1\uffc2\uffa0km resolution by using the soil evaporative efficiency (SEE) estimated from optical/thermal data collected around solar noon. DISPATCH is based on the relationship between the evapo-transpiration rate and the surface SM under non-energy-limited conditions and hence is well adapted for semi-arid regions with generally low cloud cover and sparse vegetation. The objective of this paper is to extend the spatio-temporal coverage of DISPATCH data by 1) including more densely vegetated areas and 2) assessing the usefulness of thermal data collected earlier in the morning. Especially, we evaluate the performance of the Temperature Vegetation Dryness Index (TVDI) instead of SEE in the DISPATCH algorithm over vegetated areas (called vegetation-extended DISPATCH) and we quantify the increase in coverage using Sentinel-3 (overpass at around 09:30 am) instead of MODIS (overpass at around 10:30 am and 1:30 pm for Terra and Aqua, respectively) data. In this study, DISPATCH is applied to 36\uffc2\uffa0km resolution Soil Moisture Active and Passive SM data over three 50\uffc2\uffa0km by 50\uffc2\uffa0km areas in Spain and France to assess the effectiveness of the approach over temperate and semi-arid regions. The use of TVDI within DISPATCH increases the coverage of disaggregated images by 9 and 14% over the temperate and semi-arid sites, respectively. Moreover, including the vegetated pixels in the validation areas increases the overall correlation between satellite and in situ SM from 0.36 to 0.43 and from 0.41 to 0.79 for the temperate and semi-arid regions, respectively. The use of Sentinel-3 can increase the spatio-temporal coverage by up to 44% over the considered MODIS tile, while the overlapping disaggregated data sets derived from Sentinel-3 and MODIS land surface temperature data are strongly correlated (around 0.7). Additionally, the correlation between satellite and in situ SM is significantly better for DISPATCH (0.39\uffe2\uff80\uff930.80) than for the Copernicus Sentinel-1-based (\uffe2\uff88\uff920.03 to 0.69) and SMAP/S1 (0.37\uffe2\uff80\uff930.74) product over the three studies (temperate and semi-arid) areas, with an increase in yearly valid retrievals for the vegetation-extended DISPATCH algorithm.</p>", "keywords": ["550", "0211 other engineering and technologies", "TVDI", "SMAP", "02 engineering and technology", "EVI", "15. Life on land", "01 natural sciences", "333", "[SDU.ENVI] Sciences of the Universe [physics]/Continental interfaces", " environment", "Environmental sciences", "DISPATCH", "13. Climate action", "[SDU.STU.HY] Sciences of the Universe [physics]/Earth Sciences/Hydrology", "GE1-350", "Sentinel-3", "14. Life underwater", "[SDU.STU.HY]Sciences of the Universe [physics]/Earth Sciences/Hydrology", "[SDU.ENVI]Sciences of the Universe [physics]/Continental interfaces", "soil moisture", "environment", "0105 earth and related environmental sciences"]}, "links": [{"href": "https://doi.org/10.3389/fenvs.2021.555216"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Frontiers%20in%20Environmental%20Science", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.3389/fenvs.2021.555216", "name": "item", "description": "10.3389/fenvs.2021.555216", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.3389/fenvs.2021.555216"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2021-03-16T00:00:00Z"}}, {"id": "10.3390/d4030334", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:20:39Z", "type": "Journal Article", "created": "2012-09-20", "description": "<p>We compared forest floor depth, soil organic matter, soil moisture, anaerobic mineralizable nitrogen (a measure of microbial biomass), denitrification potential, and soil/litter arthropod communities among old growth, unthinned mature stands, and thinned mature stands at nine sites (each with all three stand types) distributed among three regions of Oregon. Mineral soil measurements were restricted to the top 10 cm. Data were analyzed with both multivariate and univariate analyses of variance. Multivariate analyses were conducted with and without soil mesofauna or forest floor mesofauna, as data for those taxa were not collected on some sites. In multivariate analysis with soil mesofauna, the model giving the strongest separation among stand types (P = 0.019) included abundance and richness of soil mesofauna and anaerobic mineralizable nitrogen. The best model with forest floor mesofauna (P = 0.010) included anaerobic mineralizable nitrogen, soil moisture content, and richness of forest floor mesofauna. Old growth had the highest mean values for all variables, and in both models differed significantly from mature stands, while the latter did not differ. Old growth also averaged higher percent soil organic matter, and analysis including that variable was significant but not as strong as without it. Results of the multivariate analyses were mostly supported by univariate analyses, but there were some differences. In univariate analysis, the difference in percent soil organic matter between old growth and thinned mature was due to a single site in which the old growth had exceptionally high soil organic matter; without that site, percent soil organic matter did not differ between old growth and thinned mature, and a multivariate model containing soil organic matter was not statistically significant. In univariate analyses soil mesofauna had to be compared nonparametrically (because of heavy left-tails) and differed only in the Siskiyou Mountains, where they were most abundant and species rich in old growth forests. Species richness of mineral soil mesofauna correlated significantly (+) with percent soil organic matter and soil moisture, while richness of forest floor mesofauna correlated (+) with depth of the forest floor. Composition of forest floor and soil mesofauna suggest the two groups represent a single community. Soil moisture correlated highly with percent soil organic matter, with no evidence for drying in sites that were sampled relatively late in the summer drought, suggesting losses of surface soil moisture were at least partially replaced by hydraulic lift (which has been demonstrated in other forests of the region).</p>", "keywords": ["soil arthropods", "disturbance", "0106 biological sciences", "soil organic matter; soil nitrogen; soil moisture; soil arthropods; thinning; disturbance; forest management", "QH301-705.5", "soil organic matter", "soil nitrogen", "thinning", "forest management", "soil moisture", "Biology (General)", "15. Life on land", "01 natural sciences"], "contacts": [{"organization": "Robert P. Griffiths, Andrew R. Moldenke, David A. Perry, Stephanie L. Madson,", "roles": ["creator"]}]}, "links": [{"href": "http://www.mdpi.com/1424-2818/4/3/334/pdf"}, {"href": "https://doi.org/10.3390/d4030334"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Diversity", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.3390/d4030334", "name": "item", "description": "10.3390/d4030334", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.3390/d4030334"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2012-09-20T00:00:00Z"}}, {"id": "10.1098/rstb.2018.0084", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:18:16Z", "type": "Journal Article", "created": "2018-10-08", "title": "Changes in surface hydrology, soil moisture and gross primary production in the Amazon during the 2015/2016 El Ni\u00f1o", "description": "<p>The 2015/2016 El Ni\uffc3\uffb1o event caused severe changes in precipitation across the tropics. This impacted surface hydrology, such as river run-off and soil moisture availability, thereby triggering reductions in gross primary production (GPP). Many biosphere models lack the detailed hydrological component required to accurately quantify anomalies in surface hydrology and GPP during droughts in tropical regions. Here, we take the novel approach of coupling the biosphere model SiBCASA with the advanced hydrological model PCR-GLOBWB to attempt such a quantification across the Amazon basin during the drought in 2015/2016. We calculate 30\uffe2\uff80\uff9340% reduced river discharge in the Amazon starting in October 2015, lagging behind the precipitation anomaly by approximately one month and in good agreement with river gauge observations. Soil moisture shows distinctly asymmetrical spatial anomalies with large reductions across the north-eastern part of the basin, which persisted into the following dry season. This added to drought stress in vegetation, already present owing to vapour pressure deficits at the leaf, resulting in a loss of GPP of 0.95 (0.69 to 1.20) PgC between October 2015 and March 2016 compared with the 2007\uffe2\uff80\uff932014 average. Only 11% (10\uffe2\uff80\uff9312%) of the reduction in GPP was found in the (wetter) north-western part of the basin, whereas the north-eastern and southern regions were affected more strongly, with 56% (54\uffe2\uff80\uff9356%) and 33% (31\uffe2\uff80\uff9333%) of the total, respectively. Uncertainty on this anomaly mostly reflects the unknown rooting depths of vegetation.</p>           <p>This article is part of a discussion meeting issue \uffe2\uff80\uff98The impact of the 2015/2016 El Ni\uffc3\uffb1o on the terrestrial tropical carbon cycle: patterns, mechanisms and implications\uffe2\uff80\uff99.</p>", "keywords": ["El Nino-Southern Oscillation", "0207 environmental engineering", "Articles", "02 engineering and technology", "Forests", "15. Life on land", "tropical terrestrial carbon cycle", "01 natural sciences", "6. Clean water", "Carbon Cycle", "Droughts", "Soil", "13. Climate action", "El Ni\u00f1o", "Seasons", "soil moisture", "Hydrology", "gross primary productivity", "Amazon", "river discharge", "Brazil", "0105 earth and related environmental sciences"]}, "links": [{"href": "https://royalsocietypublishing.org/doi/pdf/10.1098/rstb.2018.0084"}, {"href": "https://doi.org/10.1098/rstb.2018.0084"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Philosophical%20Transactions%20of%20the%20Royal%20Society%20B%3A%20Biological%20Sciences", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1098/rstb.2018.0084", "name": "item", "description": "10.1098/rstb.2018.0084", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1098/rstb.2018.0084"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2018-10-08T00:00:00Z"}}, {"id": "10.1109/lgrs.2021.3073484", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:18:21Z", "type": "Journal Article", "created": "2021-06-10", "title": "Sentinel-1 Backscatter Assimilation Using Support Vector Regression or the Water Cloud Model at European Soil Moisture Sites", "description": "Sentinel-1 backscatter observations were assimilated into the Global Land Evaporation Amsterdam Model (GLEAM) using an ensemble Kalman filter. As a forward operator, which is required to simulate backscatter from soil moisture and leaf area index (LAI), we evaluated both the traditional water cloud model (WCM) and the support vector regression (SVR). With SVR, a closer fit between backscatter observations and simulations was achieved. The impact on the correlation between modeled and in situ soil moisture measurements was similar when assimilating the Sentinel data using WCM (\u0394 R = +0.037) or SVR (\u0394 R = +0.025).", "keywords": ["Vegetation mapping", "support vector regression (SVR)", "Technology and Engineering", "Data models", "0211 other engineering and technologies", "Computational modeling", "02 engineering and technology", "15. Life on land", "Geotechnical Engineering and Engineering Geology", "01 natural sciences", "Backscatter", "radar backscatter", "Soil", "Earth and Environmental Sciences", "LAND EVAPORATION", "Data assimilation", "Soil moisture", "Electrical and Electronic Engineering", "soil moisture", "Moisture", "SMOS", "0105 earth and related environmental sciences"]}, "links": [{"href": "http://xplorestaging.ieee.org/ielx7/8859/9651998/09451176.pdf?arnumber=9451176"}, {"href": "https://doi.org/10.1109/lgrs.2021.3073484"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/IEEE%20Geoscience%20and%20Remote%20Sensing%20Letters", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1109/lgrs.2021.3073484", "name": "item", "description": "10.1109/lgrs.2021.3073484", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1109/lgrs.2021.3073484"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2022-01-01T00:00:00Z"}}, {"id": "10.1109/metroagrifor52389.2021.9628588", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:18:22Z", "type": "Journal Article", "created": "2021-12-03", "title": "Assessing spatial soil moisture patterns at a small agricultural catchment", "description": "2021 IEEE International Workshop on Metrology for Agriculture and Forestry (MetroAgriFor). Trento-Bolzano (Italy), 3-5 Nov. 2021. A good understanding of soil moisture spatial patterns is useful for assessing the hydrological connectivity and runoff generation processes in a catchment. Thus, we have applied numerical modelling approaches to investigate the spatial patterns of soil moisture at the Nu\u010dice experimental catchment (0.531 km 2 ) in the Czech Republic. The catchment was established in 2011 to observe the rainfall-runoff processes, soil erosion and water balance in an agricultural landscape. The catchment consists of three fields covering over 95 % of the area. Eight field surveys were conducted to capture the soil moisture patterns at different scales. Even though the soil management and soil properties in the fields of Nu\u010dice seem to be nearly homogeneous, we have observed spatial variability in topsoil moisture. In numerical simulations, a 3D spatially-distributed model MIKE-SHE was used to simulate the water movement within the catchments. The MIKE-SHE simulation has been mainly calibrated with rainfall-runoff observations and point-scale soil moisture data. In the simulation, we have obtained the spatial patterns of soil moisture at each time step. The soil moisture spatial patterns from the simulation have been compared with the density of the vegetation cover (NDVI), and topsoil moisture patterns from field surveys. We found that the density of vegetation cover has a good correlation with the soil moisture spatial distribution. However, this correlation was not captured in the MIKE-SHE simulation. Future research will include Cosmic-ray neutron sensing and stable isotope analysis to improve the current understanding of the catchment. Peer reviewed", "keywords": ["Vegetation mapping", "13. Climate action", "Solid modeling", "0207 environmental engineering", "Three-dimensional displays", "Soil moisture", "Soil properties", "02 engineering and technology", "15. Life on land", "Moisture", "6. Clean water", "Correlation"]}, "links": [{"href": "http://xplorestaging.ieee.org/ielx7/9628139/9628392/09628588.pdf?arnumber=9628588"}, {"href": "https://doi.org/10.1109/metroagrifor52389.2021.9628588"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/2021%20IEEE%20International%20Workshop%20on%20Metrology%20for%20Agriculture%20and%20Forestry%20%28MetroAgriFor%29", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1109/metroagrifor52389.2021.9628588", "name": "item", "description": "10.1109/metroagrifor52389.2021.9628588", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1109/metroagrifor52389.2021.9628588"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2021-11-03T00:00:00Z"}}, {"id": "10.1109/igarss.2018.8518170", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-24T16:18:18Z", "type": "Journal Article", "created": "2018-11-16", "title": "Sentinel-1 & Sentinel-2 for SOIL Moisture Retrieval at Field Scale", "description": "Soil moisture content is an essential climate variable that is operationally delivered at low resolution (e.g. 36-9 km) by earth observation missions, such as ESA/SMOS, NASA/SMAP and EUMETSAT/ASCAT. However numerous land applications would benefit from the availability of soil moisture maps at higher resolution. For this reason, there is a large research effort to develop soil moisture products at higher resolution using, for instance, data acquired by the new ESA's Sentinel missions. The objective of this study is twofold. First, it presents the validation status of a pre-operational soil moisture product derived from Sentinel-1 at 1 km resolution. Second, it assesses the possibility of integrating Sentinel-2 data and additional ancillary information, such as parcel borders and high resolution soil texture maps, in order to obtain soil moisture maps at 'field scale' resolution, i.e. similar to 0.1 km Case studies concerning agricultural sites located in Europe are presented.", "keywords": ["ASCAT", "high resolution", "13. Climate action", "0211 other engineering and technologies", "Sentinel-1", "SMAP", "02 engineering and technology", "Soil moisture content", "Sentinel-2", "15. Life on land", "01 natural sciences", "SMOS", "0105 earth and related environmental sciences"]}, "links": [{"href": "http://xplorestaging.ieee.org/ielx7/8496405/8517275/08518170.pdf?arnumber=8518170"}, {"href": "https://doi.org/10.1109/igarss.2018.8518170"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/IGARSS%202018%20-%202018%20IEEE%20International%20Geoscience%20and%20Remote%20Sensing%20Symposium", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1109/igarss.2018.8518170", "name": "item", "description": "10.1109/igarss.2018.8518170", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1109/igarss.2018.8518170"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2018-07-01T00:00:00Z"}}, {"id": "10.1109/igarss.2019.8899164", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-23T16:18:21Z", "type": "Journal Article", "created": "2019-11-25", "title": "Sensitivity of Sentinel-1 Interferometric Coherence to Crop Structure and Soil Moisture", "description": "This paper investigates the sensitivity of Sentinel-1 (S-1) interferometric coherence to crop structure and near surface soil moisture (SSM) content. The study analyzes a data set collected in 2017 over the Apulian Tavoliere agricultural site (Southern Italy). The data set includes: i) in situ data over more than 600 agricultural fields monitored during the 2017 winter and spring growing seasons; ii) time-series of S-1 IW VV & VH backscatter & interferometric coherence; iii) time series of S-1 SSM maps. The temporal behavior of S-1 coherence and VH backscatter has been assessed over the monitored agricultural fields. Initial results indicate a stronger sensitivity of S-1 coherence than VH backscatter to crop geometric structure. In addition, an analysis at site scale, conducted before and after an important rain event, indicates a change of SSM from 0.18 to 0.30 m3/m3 along with a change of S-1 coherence from 0.61 to 0.53.", "keywords": ["2. Zero hunger", "crop segmentation", "crop segmentation; interferometric coherence; Sentinel-1; soil moisture", "0211 other engineering and technologies", "0202 electrical engineering", " electronic engineering", " information engineering", "Sentinel-1", "interferometric coherence", "02 engineering and technology", "soil moisture", "15. Life on land"]}, "links": [{"href": "http://xplorestaging.ieee.org/ielx7/8891871/8897702/08899164.pdf?arnumber=8899164"}, {"href": "https://doi.org/10.1109/igarss.2019.8899164"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/IGARSS%202019%20-%202019%20IEEE%20International%20Geoscience%20and%20Remote%20Sensing%20Symposium", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1109/igarss.2019.8899164", "name": "item", "description": "10.1109/igarss.2019.8899164", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1109/igarss.2019.8899164"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2019-07-01T00:00:00Z"}}], "links": [{"rel": "self", "type": "application/geo+json", "title": "This document as GeoJSON", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items?keywords=Soil+moisture&f=json", "hreflang": "en-US"}, {"rel": "alternate", "type": "text/html", "title": "This document as HTML", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items?keywords=Soil+moisture&f=html", "hreflang": "en-US"}, {"rel": "collection", "type": "application/json", "title": "Collection URL", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main", "hreflang": "en-US"}, {"type": "application/geo+json", "rel": "first", "title": "items (first)", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items?keywords=Soil+moisture&", "hreflang": "en-US"}, {"rel": "next", "type": "application/geo+json", "title": "items (next)", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items?keywords=Soil+moisture&offset=50", "hreflang": "en-US"}], "numberMatched": 230, "numberReturned": 50, "distributedFeatures": [], "timeStamp": "2026-05-24T22:56:41.610695Z"}