{"type": "FeatureCollection", "features": [{"id": "10.5281/zenodo.14833053", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-24T16:22:07Z", "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-24T16:15:35Z", "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": "10.1029/2020jd034163", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-24T16:17:26Z", "type": "Journal Article", "created": "2021-07-23", "title": "Upgrading Land\u2010Cover and Vegetation Seasonality in the ECMWF Coupled System: Verification With FLUXNET Sites, METEOSAT Satellite Land Surface Temperatures, and ERA5 Atmospheric Reanalysis", "description": "Abstract<p>In this study, we show that limitations in the representation of land cover and vegetation seasonality in the European Centre for Medium\uffe2\uff80\uff90Range Weather Forecasting (ECMWF) model are partially responsible for large biases (up to \uffe2\uff88\uffbc10\uffc2\uffb0C, either positive or negative depending on the region) on the simulated daily maximum land surface temperature (LST) with respect to satellite Earth Observations (EOs) products from the Land Surface Analysis Satellite Application Facility. The error patterns were coherent in offline land\uffe2\uff80\uff90surface and coupled land\uffe2\uff80\uff90atmosphere simulations, and in ECMWF's latest generation reanalysis (ERA5). Subsequently, we updated the ECMWF model's land cover characterization leveraging on state\uffe2\uff80\uff90of\uffe2\uff80\uff90the\uffe2\uff80\uff90art EOs\uffe2\uff80\uff94the European Space Agency Climate Change Initiative land cover data set and the Copernicus Global Land Services leaf area index. Additionally, we tested a clumping parameterization, introducing seasonality to the effective low vegetation coverage. The updates reduced the overall daily maximum LST bias and unbiased root\uffe2\uff80\uff90mean\uffe2\uff80\uff90squared errors. In contrast, the implemented updates had a neutral impact on daily minimum LST. Our results also highlighted the complex regional heterogeneities in the atmospheric sensitivity to land cover and vegetation changes, particularly with issues emerging over eastern Brazil and northeastern Asia. These issues called for a re\uffe2\uff80\uff90calibration of model parameters (e.g., minimum stomatal resistance, roughness length, rooting depth), along with a revision of several model assumptions (e.g., snow shading by high vegetation).</p>", "keywords": ["Atmospheric Science", "CLIMATE-CHANGE", "IMPACT", "PREDICTION", "SNOW SCHEME", "ASSIMILATION", "MODELS", "15. Life on land", "SOIL-MOISTURE", "01 natural sciences", "PREDICTABILITY", "VARIABILITY", "Geophysics", "Space and Planetary Science", "13. Climate action", "Earth and Environmental Sciences", "Earth and Planetary Sciences (miscellaneous)", "SENSITIVITY", "Research Article", "0105 earth and related environmental sciences"]}, "links": [{"href": "https://doi.org/10.1029/2020jd034163"}, {"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.1029/2020jd034163", "name": "item", "description": "10.1029/2020jd034163", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1029/2020jd034163"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2021-08-02T00:00:00Z"}}, {"id": "/publisher", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-24T16:13:50Z", "type": "Dataset", "title": "Soil moisture and temperature datasets in LIDO orchard", "description": "Soil moisture and temperature timeserie datasets of the apple orchard located in the Laimburg Integrated Digital Orchard in Bolzano province. The timeseries collects data about soil moisture and temperature at 20 cm, 30 cm and 40 cm under the soil surface in 3 different position of the orchard. Acquisition frequency is 30 minutes for all the parameters.", "keywords": ["agricultural-and-aquaculture-facilities", "cct", "eu", "sensor", "soil", "soil-moisture", "temperature", "water"]}, "links": [{"href": "https://doi.org/10.48784/d41997c7-d9ea-4f10-bd2e-baf1d96bb8f8"}, {"href": "http://data.europa.eu/88u/dataset/d41997c7-d9ea-4f10-bd2e-baf1d96bb8f8"}, {"rel": "self", "type": "application/geo+json", "title": "/publisher", "name": "item", "description": "/publisher", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items//publisher"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"null": "date"}}, {"id": "/", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-24T16:13:50Z", "type": "Dataset", "title": "DrSch\u00e4r mais field monitoring timeseries", "description": "Timeseries of the DrSch\u00e4r field monitoring in Este (PD) during summer 2022. Dataset of the soil temperature and soil humidity collected from different type of sensors distributed among the mais field. In the field were installed different types of sensors as many TDR sensors and one capacitive sensor; they collect temperature and humidity of the soil. The data from the sensor were collected by two networks: a Zigbee-based and one LoraWAN-based network.", "keywords": ["capacitive", "environmental-monitoring-facilities", "eu", "humidity", "irrigation", "lorawan", "mais", "sensor", "soil", "soil-moisture", "tdr", "temperature", "water", "zigbee"]}, "links": [{"href": "http://data.europa.eu/88u/dataset/17af841d-1329-4c5a-a8b8-c4326f0614f9"}, {"rel": "self", "type": "application/geo+json", "title": "/", "name": "item", "description": "/", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items//"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"null": "date"}}, {"id": "00370eef-d266-4f5d-9c79-b93488983b54", "type": "Feature", "geometry": null, "properties": {"updated": "2025-09-16T06:24:05.968528", "type": "Dataset", "language": "it", "title": "MODELLO WRF-ARW a 3km - Umidit\u00e0 del suolo (volumetrica) - (2025-09-15 ore 12 UTC).", "description": "Umidit\u00e0 del suolo (volumetrica). Corsa del 2025-09-15 ore 12 UTC - Valido dalle ore 12 UTC del 2025-09-15 alle ore 00 UTC del 2025-09-19. Modello meteorologico WRF (Weather Research and Forecasting model), core ARW (versione 3.2) con risoluzione spaziale a 3km, risoluzione temporale 60 ore, intervallo 1 ora.", "formats": [{"name": "PNG"}], "keywords": ["120000", "2025-09-15", "20250915t120000000z", "3km", "arw", "below", "between", "content", "depths", "it", "lamma", "layer", "moisture", "soil", "surface", "two", "volumetric"], "contacts": [{"organization": "regione-toscana", "roles": ["creator"]}]}, "links": [{"href": "http://geoportale.lamma.rete.toscana.it/geoserver/ARW_3KM_RUN12/ows"}, {"href": "http://www.lamma.rete.toscana.it/"}, {"href": "https://dati.toscana.it/dataset/modello-wrf-arw-a-3km-umidita-del-suolo-volumetrica-2025-09-15-ore-12-utc#"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250915T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250915T120000000Z_150_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250915T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250915T120000000Z_25_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250915T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250915T120000000Z_5_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250915T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250915T120000000Z_70_0.zip"}, {"href": "http://data.europa.eu/88u/dataset/00370eef-d266-4f5d-9c79-b93488983b54"}, {"rel": "self", "type": "application/geo+json", "title": "00370eef-d266-4f5d-9c79-b93488983b54", "name": "item", "description": "00370eef-d266-4f5d-9c79-b93488983b54", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/00370eef-d266-4f5d-9c79-b93488983b54"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"null": "date"}}, {"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": "00d87532-5f33-4244-bff8-56d08c094f33", "type": "Feature", "geometry": null, "properties": {"updated": "2025-07-23T06:20:49.205537", "type": "Dataset", "language": "it", "title": "MODELLO WRF-ARW a 3km - Umidit\u00e0 del suolo (volumetrica) - (2025-07-22 ore 12 UTC).", "description": "Umidit\u00e0 del suolo (volumetrica). Corsa del 2025-07-22 ore 12 UTC - Valido dalle ore 12 UTC del 2025-07-22 alle ore 00 UTC del 2025-07-26. Modello meteorologico WRF (Weather Research and Forecasting model), core ARW (versione 3.2) con risoluzione spaziale a 3km, risoluzione temporale 60 ore, intervallo 1 ora.", "formats": [{"name": "PNG"}], "keywords": ["120000", "2025-07-22", "20250722t120000000z", "3km", "arw", "below", "between", "content", "depths", "it", "lamma", "layer", "moisture", "soil", "surface", "two", "volumetric"], "contacts": [{"organization": "regione-toscana", "roles": ["creator"]}]}, "links": [{"href": "http://geoportale.lamma.rete.toscana.it/geoserver/ARW_3KM_RUN12/ows"}, {"href": "http://www.lamma.rete.toscana.it/"}, {"href": "https://dati.toscana.it/dataset/modello-wrf-arw-a-3km-umidita-del-suolo-volumetrica-2025-07-22-ore-12-utc#"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250722T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250722T120000000Z_150_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250722T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250722T120000000Z_25_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250722T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250722T120000000Z_5_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250722T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250722T120000000Z_70_0.zip"}, {"href": "http://data.europa.eu/88u/dataset/00d87532-5f33-4244-bff8-56d08c094f33"}, {"rel": "self", "type": "application/geo+json", "title": "00d87532-5f33-4244-bff8-56d08c094f33", "name": "item", "description": "00d87532-5f33-4244-bff8-56d08c094f33", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/00d87532-5f33-4244-bff8-56d08c094f33"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"null": "date"}}, {"id": "0236a5b0-a696-4920-94f0-a80ca89cd1c0", "type": "Feature", "geometry": null, "properties": {"updated": "2025-09-17T06:24:12.124630", "type": "Dataset", "language": "it", "title": "MODELLO WRF-ARW a 3km - Umidit\u00e0 del suolo (volumetrica) - (2025-09-16 ore 12 UTC).", "description": "Umidit\u00e0 del suolo (volumetrica). Corsa del 2025-09-16 ore 12 UTC - Valido dalle ore 12 UTC del 2025-09-16 alle ore 00 UTC del 2025-09-20. Modello meteorologico WRF (Weather Research and Forecasting model), core ARW (versione 3.2) con risoluzione spaziale a 3km, risoluzione temporale 60 ore, intervallo 1 ora.", "formats": [{"name": "PNG"}], "keywords": ["120000", "2025-09-16", "20250916t120000000z", "3km", "arw", "below", "between", "content", "depths", "it", "lamma", "layer", "moisture", "soil", "surface", "two", "volumetric"], "contacts": [{"organization": "regione-toscana", "roles": ["creator"]}]}, "links": [{"href": "http://geoportale.lamma.rete.toscana.it/geoserver/ARW_3KM_RUN12/ows"}, {"href": "http://www.lamma.rete.toscana.it/"}, {"href": "https://dati.toscana.it/dataset/modello-wrf-arw-a-3km-umidita-del-suolo-volumetrica-2025-09-16-ore-12-utc#"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250916T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250916T120000000Z_150_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250916T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250916T120000000Z_25_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250916T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250916T120000000Z_5_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250916T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250916T120000000Z_70_0.zip"}, {"href": "http://data.europa.eu/88u/dataset/0236a5b0-a696-4920-94f0-a80ca89cd1c0"}, {"rel": "self", "type": "application/geo+json", "title": "0236a5b0-a696-4920-94f0-a80ca89cd1c0", "name": "item", "description": "0236a5b0-a696-4920-94f0-a80ca89cd1c0", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/0236a5b0-a696-4920-94f0-a80ca89cd1c0"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"null": "date"}}, {"id": "0287b897-bef2-4a63-b321-ab8324edb35e", "type": "Feature", "geometry": null, "properties": {"updated": "2025-08-21T09:20:25.436309", "type": "Dataset", "language": "it", "title": "MODELLO WRF-ARW a 3km - Umidit\u00e0 del suolo (volumetrica) - (2025-08-21 ore 00 UTC).", "description": "Umidit\u00e0 del suolo (volumetrica). Corsa del 2025-08-21 ore 00 UTC - Valido dalle ore 00 UTC del 2025-08-21 alle ore 00 UTC del 2025-08-24. Modello meteorologico WRF (Weather Research and Forecasting model), core ARW (versione 3.2) con risoluzione spaziale a 3km, risoluzione temporale 60 ore, intervallo 1 ora.", "formats": [{"name": "PNG"}], "keywords": ["000000", "2025-08-21", "20250821t000000000z", "3km", "arw", "below", "between", "content", "depths", "it", "lamma", "layer", "moisture", "soil", "surface", "two", "volumetric"], "contacts": [{"organization": "regione-toscana", "roles": ["creator"]}]}, "links": [{"href": "http://geoportale.lamma.rete.toscana.it/geoserver/ARW_3KM_RUN00/ows"}, {"href": "http://www.lamma.rete.toscana.it/"}, {"href": "https://dati.toscana.it/dataset/modello-wrf-arw-a-3km-umidita-del-suolo-volumetrica-2025-08-21-ore-00-utc#"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250821T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250821T000000000Z_150_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250821T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250821T000000000Z_25_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250821T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250821T000000000Z_5_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250821T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250821T000000000Z_70_0.zip"}, {"href": "http://data.europa.eu/88u/dataset/0287b897-bef2-4a63-b321-ab8324edb35e"}, {"rel": "self", "type": "application/geo+json", "title": "0287b897-bef2-4a63-b321-ab8324edb35e", "name": "item", "description": "0287b897-bef2-4a63-b321-ab8324edb35e", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/0287b897-bef2-4a63-b321-ab8324edb35e"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"null": "date"}}, {"id": "02cca53d-ead3-4a04-8f40-a85c5cf64a3d", "type": "Feature", "geometry": null, "properties": {"updated": "2025-05-18T06:24:02.469486", "type": "Dataset", "language": "it", "title": "MODELLO WRF-ARW a 3km - Umidit\u00e0 del suolo (volumetrica) - (2025-05-17 ore 12 UTC).", "description": "Umidit\u00e0 del suolo (volumetrica). Corsa del 2025-05-17 ore 12 UTC - Valido dalle ore 12 UTC del 2025-05-17 alle ore 00 UTC del 2025-05-21. Modello meteorologico WRF (Weather Research and Forecasting model), core ARW (versione 3.2) con risoluzione spaziale a 3km, risoluzione temporale 60 ore, intervallo 1 ora.", "formats": [{"name": "PNG"}], "keywords": ["120000", "2025-05-17", "20250517t120000000z", "3km", "arw", "below", "between", "content", "depths", "it", "lamma", "layer", "moisture", "soil", "surface", "two", "volumetric"], "contacts": [{"organization": "regione-toscana", "roles": ["creator"]}]}, "links": [{"href": "http://geoportale.lamma.rete.toscana.it/geoserver/ARW_3KM_RUN12/ows"}, {"href": "http://www.lamma.rete.toscana.it/"}, {"href": "https://dati.toscana.it/dataset/modello-wrf-arw-a-3km-umidita-del-suolo-volumetrica-2025-05-17-ore-12-utc#"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250517T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250517T120000000Z_150_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250517T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250517T120000000Z_25_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250517T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250517T120000000Z_5_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250517T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250517T120000000Z_70_0.zip"}, {"href": "http://data.europa.eu/88u/dataset/02cca53d-ead3-4a04-8f40-a85c5cf64a3d"}, {"rel": "self", "type": "application/geo+json", "title": "02cca53d-ead3-4a04-8f40-a85c5cf64a3d", "name": "item", "description": "02cca53d-ead3-4a04-8f40-a85c5cf64a3d", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/02cca53d-ead3-4a04-8f40-a85c5cf64a3d"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"null": "date"}}, {"id": "035e609a-1f0e-4bef-88a8-30f0f51d12af", "type": "Feature", "geometry": null, "properties": {"updated": "2025-06-28T11:21:55.191151", "type": "Dataset", "language": "it", "title": "MODELLO WRF-ARW a 3km - Umidit\u00e0 del suolo (volumetrica) - (2025-06-28 ore 00 UTC).", "description": "Umidit\u00e0 del suolo (volumetrica). Corsa del 2025-06-28 ore 00 UTC - Valido dalle ore 00 UTC del 2025-06-28 alle ore 00 UTC del 2025-07-01. Modello meteorologico WRF (Weather Research and Forecasting model), core ARW (versione 3.2) con risoluzione spaziale a 3km, risoluzione temporale 60 ore, intervallo 1 ora.", "formats": [{"name": "PNG"}], "keywords": ["000000", "2025-06-28", "20250628t000000000z", "3km", "arw", "below", "between", "content", "depths", "it", "lamma", "layer", "moisture", "soil", "surface", "two", "volumetric"], "contacts": [{"organization": "regione-toscana", "roles": ["creator"]}]}, "links": [{"href": "http://geoportale.lamma.rete.toscana.it/geoserver/ARW_3KM_RUN00/ows"}, {"href": "http://www.lamma.rete.toscana.it/"}, {"href": "https://dati.toscana.it/dataset/modello-wrf-arw-a-3km-umidita-del-suolo-volumetrica-2025-06-28-ore-00-utc#"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250628T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250628T000000000Z_150_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250628T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250628T000000000Z_25_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250628T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250628T000000000Z_5_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250628T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250628T000000000Z_70_0.zip"}, {"href": "http://data.europa.eu/88u/dataset/035e609a-1f0e-4bef-88a8-30f0f51d12af"}, {"rel": "self", "type": "application/geo+json", "title": "035e609a-1f0e-4bef-88a8-30f0f51d12af", "name": "item", "description": "035e609a-1f0e-4bef-88a8-30f0f51d12af", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/035e609a-1f0e-4bef-88a8-30f0f51d12af"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"null": "date"}}, {"id": "03904e64-57c4-4d0f-82be-4dfef707e5f0", "type": "Feature", "geometry": null, "properties": {"updated": "2025-09-17T11:20:36.126731", "type": "Dataset", "language": "it", "title": "MODELLO WRF-ARW a 3km - Umidit\u00e0 del suolo (volumetrica) - (2025-09-17 ore 00 UTC).", "description": "Umidit\u00e0 del suolo (volumetrica). Corsa del 2025-09-17 ore 00 UTC - Valido dalle ore 00 UTC del 2025-09-17 alle ore 00 UTC del 2025-09-20. Modello meteorologico WRF (Weather Research and Forecasting model), core ARW (versione 3.2) con risoluzione spaziale a 3km, risoluzione temporale 60 ore, intervallo 1 ora.", "formats": [{"name": "PNG"}], "keywords": ["000000", "2025-09-17", "20250917t000000000z", "3km", "arw", "below", "between", "content", "depths", "it", "lamma", "layer", "moisture", "soil", "surface", "two", "volumetric"], "contacts": [{"organization": "regione-toscana", "roles": ["creator"]}]}, "links": [{"href": "http://geoportale.lamma.rete.toscana.it/geoserver/ARW_3KM_RUN00/ows"}, {"href": "http://www.lamma.rete.toscana.it/"}, {"href": "https://dati.toscana.it/dataset/modello-wrf-arw-a-3km-umidita-del-suolo-volumetrica-2025-09-17-ore-00-utc#"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250917T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250917T000000000Z_150_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250917T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250917T000000000Z_25_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250917T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250917T000000000Z_5_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250917T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250917T000000000Z_70_0.zip"}, {"href": "http://data.europa.eu/88u/dataset/03904e64-57c4-4d0f-82be-4dfef707e5f0"}, {"rel": "self", "type": "application/geo+json", "title": "03904e64-57c4-4d0f-82be-4dfef707e5f0", "name": "item", "description": "03904e64-57c4-4d0f-82be-4dfef707e5f0", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/03904e64-57c4-4d0f-82be-4dfef707e5f0"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"null": "date"}}, {"id": "03f5048c-496d-4fda-b361-d05e5685e1e0", "type": "Feature", "geometry": null, "properties": {"updated": "2025-06-21T09:26:02.635536Z", "type": "Dataset", "language": "it", "title": "MODELLO WRF-ARW a 3km - Umidit\u00e0 del suolo (volumetrica) - (2025-06-21 ore 00 UTC).", "description": "Umidit\u00e0 del suolo (volumetrica). Corsa del 2025-06-21 ore 00 UTC - Valido dalle ore 00 UTC del 2025-06-21 alle ore 00 UTC del 2025-06-24. Modello meteorologico WRF (Weather Research and Forecasting model), core ARW (versione 3.2) con risoluzione spaziale a 3km, risoluzione temporale 60 ore, intervallo 1 ora.", "formats": [{"name": "PNG"}], "keywords": ["000000", "2025-06-21", "20250621t000000000z", "3km", "arw", "below", "between", "content", "depths", "it", "lamma", "layer", "moisture", "soil", "surface", "two", "volumetric"], "contacts": [{"organization": "regione-toscana", "roles": ["creator"]}]}, "links": [{"href": "http://geoportale.lamma.rete.toscana.it/geoserver/ARW_3KM_RUN00/ows"}, {"href": "http://www.lamma.rete.toscana.it/"}, {"href": "https://dati.toscana.it/dataset/modello-wrf-arw-a-3km-umidita-del-suolo-volumetrica-2025-06-21-ore-00-utc#"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250621T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250621T000000000Z_150_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250621T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250621T000000000Z_25_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250621T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250621T000000000Z_5_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250621T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250621T000000000Z_70_0.zip"}, {"href": "http://data.europa.eu/88u/dataset/03f5048c-496d-4fda-b361-d05e5685e1e0"}, {"rel": "self", "type": "application/geo+json", "title": "03f5048c-496d-4fda-b361-d05e5685e1e0", "name": "item", "description": "03f5048c-496d-4fda-b361-d05e5685e1e0", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/03f5048c-496d-4fda-b361-d05e5685e1e0"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"interval": ["date", "date"]}}, {"id": "06357964-8a13-4597-a1b8-61d7fe14b8a6", "type": "Feature", "geometry": null, "properties": {"updated": "2025-05-15T06:29:54.917030", "type": "Dataset", "language": "it", "title": "MODELLO WRF-ARW a 3km - Umidit\u00e0 del suolo (volumetrica) - (2025-05-14 ore 12 UTC).", "description": "Umidit\u00e0 del suolo (volumetrica). Corsa del 2025-05-14 ore 12 UTC - Valido dalle ore 12 UTC del 2025-05-14 alle ore 00 UTC del 2025-05-18. Modello meteorologico WRF (Weather Research and Forecasting model), core ARW (versione 3.2) con risoluzione spaziale a 3km, risoluzione temporale 60 ore, intervallo 1 ora.", "formats": [{"name": "PNG"}], "keywords": ["120000", "2025-05-14", "20250514t120000000z", "3km", "arw", "below", "between", "content", "depths", "it", "lamma", "layer", "moisture", "soil", "surface", "two", "volumetric"], "contacts": [{"organization": "regione-toscana", "roles": ["creator"]}]}, "links": [{"href": "http://geoportale.lamma.rete.toscana.it/geoserver/ARW_3KM_RUN12/ows"}, {"href": "http://www.lamma.rete.toscana.it/"}, {"href": "https://dati.toscana.it/dataset/modello-wrf-arw-a-3km-umidita-del-suolo-volumetrica-2025-05-14-ore-12-utc#"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250514T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250514T120000000Z_150_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250514T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250514T120000000Z_25_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250514T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250514T120000000Z_5_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250514T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250514T120000000Z_70_0.zip"}, {"href": "http://data.europa.eu/88u/dataset/06357964-8a13-4597-a1b8-61d7fe14b8a6"}, {"rel": "self", "type": "application/geo+json", "title": "06357964-8a13-4597-a1b8-61d7fe14b8a6", "name": "item", "description": "06357964-8a13-4597-a1b8-61d7fe14b8a6", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/06357964-8a13-4597-a1b8-61d7fe14b8a6"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"null": "date"}}, {"id": "0be72ae8-3b46-444d-a92f-18f241a39436", "type": "Feature", "geometry": null, "properties": {"updated": "2025-09-18T11:24:04.375921", "type": "Dataset", "language": "it", "title": "MODELLO WRF-ARW a 3km - Umidit\u00e0 del suolo (volumetrica) - (2025-09-18 ore 00 UTC).", "description": "Umidit\u00e0 del suolo (volumetrica). Corsa del 2025-09-18 ore 00 UTC - Valido dalle ore 00 UTC del 2025-09-18 alle ore 00 UTC del 2025-09-21. Modello meteorologico WRF (Weather Research and Forecasting model), core ARW (versione 3.2) con risoluzione spaziale a 3km, risoluzione temporale 60 ore, intervallo 1 ora.", "formats": [{"name": "PNG"}], "keywords": ["000000", "2025-09-18", "20250918t000000000z", "3km", "arw", "below", "between", "content", "depths", "it", "lamma", "layer", "moisture", "soil", "surface", "two", "volumetric"], "contacts": [{"organization": "regione-toscana", "roles": ["creator"]}]}, "links": [{"href": "http://geoportale.lamma.rete.toscana.it/geoserver/ARW_3KM_RUN00/ows"}, {"href": "http://www.lamma.rete.toscana.it/"}, {"href": "https://dati.toscana.it/dataset/modello-wrf-arw-a-3km-umidita-del-suolo-volumetrica-2025-09-18-ore-00-utc#"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250918T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250918T000000000Z_150_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250918T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250918T000000000Z_25_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250918T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250918T000000000Z_5_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250918T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250918T000000000Z_70_0.zip"}, {"href": "http://data.europa.eu/88u/dataset/0be72ae8-3b46-444d-a92f-18f241a39436"}, {"rel": "self", "type": "application/geo+json", "title": "0be72ae8-3b46-444d-a92f-18f241a39436", "name": "item", "description": "0be72ae8-3b46-444d-a92f-18f241a39436", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/0be72ae8-3b46-444d-a92f-18f241a39436"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"null": "date"}}, {"id": "0689292b-72f1-4339-a197-d1fb9c128b10", "type": "Feature", "geometry": null, "properties": {"updated": "2025-08-30T06:21:01.669550", "type": "Dataset", "language": "it", "title": "MODELLO WRF-ARW a 3km - Umidit\u00e0 del suolo (volumetrica) - (2025-08-29 ore 12 UTC).", "description": "Umidit\u00e0 del suolo (volumetrica). Corsa del 2025-08-29 ore 12 UTC - Valido dalle ore 12 UTC del 2025-08-29 alle ore 00 UTC del 2025-09-02. Modello meteorologico WRF (Weather Research and Forecasting model), core ARW (versione 3.2) con risoluzione spaziale a 3km, risoluzione temporale 60 ore, intervallo 1 ora.", "formats": [{"name": "PNG"}], "keywords": ["120000", "2025-08-29", "20250829t120000000z", "3km", "arw", "below", "between", "content", "depths", "it", "lamma", "layer", "moisture", "soil", "surface", "two", "volumetric"], "contacts": [{"organization": "regione-toscana", "roles": ["creator"]}]}, "links": [{"href": "http://geoportale.lamma.rete.toscana.it/geoserver/ARW_3KM_RUN12/ows"}, {"href": "http://www.lamma.rete.toscana.it/"}, {"href": "https://dati.toscana.it/dataset/modello-wrf-arw-a-3km-umidita-del-suolo-volumetrica-2025-08-29-ore-12-utc#"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250829T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250829T120000000Z_150_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250829T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250829T120000000Z_25_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250829T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250829T120000000Z_5_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250829T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250829T120000000Z_70_0.zip"}, {"href": "http://data.europa.eu/88u/dataset/0689292b-72f1-4339-a197-d1fb9c128b10"}, {"rel": "self", "type": "application/geo+json", "title": "0689292b-72f1-4339-a197-d1fb9c128b10", "name": "item", "description": "0689292b-72f1-4339-a197-d1fb9c128b10", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/0689292b-72f1-4339-a197-d1fb9c128b10"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"null": "date"}}, {"id": "069ff746-925a-4457-8170-e6982f3a26ba", "type": "Feature", "geometry": null, "properties": {"updated": "2025-08-28T11:22:57.715826", "type": "Dataset", "language": "it", "title": "MODELLO WRF-ARW a 3km - Umidit\u00e0 del suolo (volumetrica) - (2025-08-28 ore 00 UTC).", "description": "Umidit\u00e0 del suolo (volumetrica). Corsa del 2025-08-28 ore 00 UTC - Valido dalle ore 00 UTC del 2025-08-28 alle ore 00 UTC del 2025-08-31. Modello meteorologico WRF (Weather Research and Forecasting model), core ARW (versione 3.2) con risoluzione spaziale a 3km, risoluzione temporale 60 ore, intervallo 1 ora.", "formats": [{"name": "PNG"}], "keywords": ["000000", "2025-08-28", "20250828t000000000z", "3km", "arw", "below", "between", "content", "depths", "it", "lamma", "layer", "moisture", "soil", "surface", "two", "volumetric"], "contacts": [{"organization": "regione-toscana", "roles": ["creator"]}]}, "links": [{"href": "http://geoportale.lamma.rete.toscana.it/geoserver/ARW_3KM_RUN00/ows"}, {"href": "http://www.lamma.rete.toscana.it/"}, {"href": "https://dati.toscana.it/dataset/modello-wrf-arw-a-3km-umidita-del-suolo-volumetrica-2025-08-28-ore-00-utc#"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250828T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250828T000000000Z_150_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250828T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250828T000000000Z_25_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250828T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250828T000000000Z_5_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250828T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250828T000000000Z_70_0.zip"}, {"href": "http://data.europa.eu/88u/dataset/069ff746-925a-4457-8170-e6982f3a26ba"}, {"rel": "self", "type": "application/geo+json", "title": "069ff746-925a-4457-8170-e6982f3a26ba", "name": "item", "description": "069ff746-925a-4457-8170-e6982f3a26ba", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/069ff746-925a-4457-8170-e6982f3a26ba"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"null": "date"}}, {"id": "070b3aa7-fe56-4284-88bd-17a44d59835b", "type": "Feature", "geometry": null, "properties": {"updated": "2025-07-08T11:20:32.044293Z", "type": "Dataset", "language": "it", "title": "MODELLO WRF-ARW a 3km - Umidit\u00e0 del suolo (volumetrica) - (2025-07-08 ore 00 UTC).", "description": "Umidit\u00e0 del suolo (volumetrica). Corsa del 2025-07-08 ore 00 UTC - Valido dalle ore 00 UTC del 2025-07-08 alle ore 00 UTC del 2025-07-11. Modello meteorologico WRF (Weather Research and Forecasting model), core ARW (versione 3.2) con risoluzione spaziale a 3km, risoluzione temporale 60 ore, intervallo 1 ora.", "formats": [{"name": "PNG"}], "keywords": ["000000", "2025-07-08", "20250708t000000000z", "3km", "arw", "below", "between", "content", "depths", "it", "lamma", "layer", "moisture", "soil", "surface", "two", "volumetric"], "contacts": [{"organization": "regione-toscana", "roles": ["creator"]}]}, "links": [{"href": "http://geoportale.lamma.rete.toscana.it/geoserver/ARW_3KM_RUN00/ows"}, {"href": "http://www.lamma.rete.toscana.it/"}, {"href": "https://dati.toscana.it/dataset/modello-wrf-arw-a-3km-umidita-del-suolo-volumetrica-2025-07-08-ore-00-utc#"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250708T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250708T000000000Z_150_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250708T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250708T000000000Z_25_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250708T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250708T000000000Z_5_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250708T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250708T000000000Z_70_0.zip"}, {"href": "http://data.europa.eu/88u/dataset/070b3aa7-fe56-4284-88bd-17a44d59835b"}, {"rel": "self", "type": "application/geo+json", "title": "070b3aa7-fe56-4284-88bd-17a44d59835b", "name": "item", "description": "070b3aa7-fe56-4284-88bd-17a44d59835b", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/070b3aa7-fe56-4284-88bd-17a44d59835b"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"null": "date"}}, {"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": "077c063c-0733-431b-b5ba-c555a33000c3", "type": "Feature", "geometry": null, "properties": {"updated": "2025-08-10T06:20:27.871356", "type": "Dataset", "language": "it", "title": "MODELLO WRF-ARW a 3km - Umidit\u00e0 del suolo (volumetrica) - (2025-08-09 ore 12 UTC).", "description": "Umidit\u00e0 del suolo (volumetrica). Corsa del 2025-08-09 ore 12 UTC - Valido dalle ore 12 UTC del 2025-08-09 alle ore 00 UTC del 2025-08-13. Modello meteorologico WRF (Weather Research and Forecasting model), core ARW (versione 3.2) con risoluzione spaziale a 3km, risoluzione temporale 60 ore, intervallo 1 ora.", "formats": [{"name": "PNG"}], "keywords": ["120000", "2025-08-09", "20250809t120000000z", "3km", "arw", "below", "between", "content", "depths", "it", "lamma", "layer", "moisture", "soil", "surface", "two", "volumetric"], "contacts": [{"organization": "regione-toscana", "roles": ["creator"]}]}, "links": [{"href": "http://geoportale.lamma.rete.toscana.it/geoserver/ARW_3KM_RUN12/ows"}, {"href": "http://www.lamma.rete.toscana.it/"}, {"href": "https://dati.toscana.it/dataset/modello-wrf-arw-a-3km-umidita-del-suolo-volumetrica-2025-08-09-ore-12-utc#"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250809T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250809T120000000Z_150_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250809T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250809T120000000Z_25_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250809T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250809T120000000Z_5_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250809T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250809T120000000Z_70_0.zip"}, {"href": "http://data.europa.eu/88u/dataset/077c063c-0733-431b-b5ba-c555a33000c3"}, {"rel": "self", "type": "application/geo+json", "title": "077c063c-0733-431b-b5ba-c555a33000c3", "name": "item", "description": "077c063c-0733-431b-b5ba-c555a33000c3", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/077c063c-0733-431b-b5ba-c555a33000c3"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"null": "date"}}, {"id": "0793c431-51d4-4403-866c-b551c46631a2", "type": "Feature", "geometry": null, "properties": {"updated": "2025-07-07T06:21:36.720130Z", "type": "Dataset", "language": "it", "title": "MODELLO WRF-ARW a 3km - Umidit\u00e0 del suolo (volumetrica) - (2025-07-06 ore 12 UTC).", "description": "Umidit\u00e0 del suolo (volumetrica). Corsa del 2025-07-06 ore 12 UTC - Valido dalle ore 12 UTC del 2025-07-06 alle ore 00 UTC del 2025-07-10. Modello meteorologico WRF (Weather Research and Forecasting model), core ARW (versione 3.2) con risoluzione spaziale a 3km, risoluzione temporale 60 ore, intervallo 1 ora.", "formats": [{"name": "PNG"}], "keywords": ["120000", "2025-07-06", "20250706t120000000z", "3km", "arw", "below", "between", "content", "depths", "it", "lamma", "layer", "moisture", "soil", "surface", "two", "volumetric"], "contacts": [{"organization": "regione-toscana", "roles": ["creator"]}]}, "links": [{"href": "http://geoportale.lamma.rete.toscana.it/geoserver/ARW_3KM_RUN12/ows"}, {"href": "http://www.lamma.rete.toscana.it/"}, {"href": "https://dati.toscana.it/dataset/modello-wrf-arw-a-3km-umidita-del-suolo-volumetrica-2025-07-06-ore-12-utc#"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250706T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250706T120000000Z_150_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250706T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250706T120000000Z_25_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250706T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250706T120000000Z_5_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250706T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250706T120000000Z_70_0.zip"}, {"href": "http://data.europa.eu/88u/dataset/0793c431-51d4-4403-866c-b551c46631a2"}, {"rel": "self", "type": "application/geo+json", "title": "0793c431-51d4-4403-866c-b551c46631a2", "name": "item", "description": "0793c431-51d4-4403-866c-b551c46631a2", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/0793c431-51d4-4403-866c-b551c46631a2"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"null": "date"}}, {"id": "097f4ec7-c62d-4bee-8e39-1b492e58eee3", "type": "Feature", "geometry": null, "properties": {"updated": "2025-07-05T06:20:14.412689", "type": "Dataset", "language": "it", "title": "MODELLO WRF-ARW a 3km - Umidit\u00e0 del suolo (volumetrica) - (2025-07-04 ore 12 UTC).", "description": "Umidit\u00e0 del suolo (volumetrica). Corsa del 2025-07-04 ore 12 UTC - Valido dalle ore 12 UTC del 2025-07-04 alle ore 00 UTC del 2025-07-08. Modello meteorologico WRF (Weather Research and Forecasting model), core ARW (versione 3.2) con risoluzione spaziale a 3km, risoluzione temporale 60 ore, intervallo 1 ora.", "formats": [{"name": "PNG"}], "keywords": ["120000", "2025-07-04", "20250704t120000000z", "3km", "arw", "below", "between", "content", "depths", "it", "lamma", "layer", "moisture", "soil", "surface", "two", "volumetric"], "contacts": [{"organization": "regione-toscana", "roles": ["creator"]}]}, "links": [{"href": "http://geoportale.lamma.rete.toscana.it/geoserver/ARW_3KM_RUN12/ows"}, {"href": "http://www.lamma.rete.toscana.it/"}, {"href": "https://dati.toscana.it/dataset/modello-wrf-arw-a-3km-umidita-del-suolo-volumetrica-2025-07-04-ore-12-utc#"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250704T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250704T120000000Z_150_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250704T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250704T120000000Z_25_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250704T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250704T120000000Z_5_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250704T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250704T120000000Z_70_0.zip"}, {"href": "http://data.europa.eu/88u/dataset/097f4ec7-c62d-4bee-8e39-1b492e58eee3"}, {"rel": "self", "type": "application/geo+json", "title": "097f4ec7-c62d-4bee-8e39-1b492e58eee3", "name": "item", "description": "097f4ec7-c62d-4bee-8e39-1b492e58eee3", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/097f4ec7-c62d-4bee-8e39-1b492e58eee3"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"null": "date"}}, {"id": "0ac780b9-15e5-4267-b94d-c220473bc4a9", "type": "Feature", "geometry": null, "properties": {"updated": "2025-08-24T11:21:00.820689", "type": "Dataset", "language": "it", "title": "MODELLO WRF-ARW a 3km - Umidit\u00e0 del suolo (volumetrica) - (2025-08-24 ore 00 UTC).", "description": "Umidit\u00e0 del suolo (volumetrica). Corsa del 2025-08-24 ore 00 UTC - Valido dalle ore 00 UTC del 2025-08-24 alle ore 00 UTC del 2025-08-27. Modello meteorologico WRF (Weather Research and Forecasting model), core ARW (versione 3.2) con risoluzione spaziale a 3km, risoluzione temporale 60 ore, intervallo 1 ora.", "formats": [{"name": "PNG"}], "keywords": ["000000", "2025-08-24", "20250824t000000000z", "3km", "arw", "below", "between", "content", "depths", "it", "lamma", "layer", "moisture", "soil", "surface", "two", "volumetric"], "contacts": [{"organization": "regione-toscana", "roles": ["creator"]}]}, "links": [{"href": "http://geoportale.lamma.rete.toscana.it/geoserver/ARW_3KM_RUN00/ows"}, {"href": "http://www.lamma.rete.toscana.it/"}, {"href": "https://dati.toscana.it/dataset/modello-wrf-arw-a-3km-umidita-del-suolo-volumetrica-2025-08-24-ore-00-utc#"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250824T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250824T000000000Z_150_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250824T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250824T000000000Z_25_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250824T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250824T000000000Z_5_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250824T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250824T000000000Z_70_0.zip"}, {"href": "http://data.europa.eu/88u/dataset/0ac780b9-15e5-4267-b94d-c220473bc4a9"}, {"rel": "self", "type": "application/geo+json", "title": "0ac780b9-15e5-4267-b94d-c220473bc4a9", "name": "item", "description": "0ac780b9-15e5-4267-b94d-c220473bc4a9", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/0ac780b9-15e5-4267-b94d-c220473bc4a9"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"null": "date"}}, {"id": "0a773824-00a0-414f-9940-f4e9f9b9ec22", "type": "Feature", "geometry": null, "properties": {"updated": "2025-09-04T06:20:39.967863", "type": "Dataset", "language": "it", "title": "MODELLO WRF-ARW a 3km - Umidit\u00e0 del suolo (volumetrica) - (2025-09-03 ore 12 UTC).", "description": "Umidit\u00e0 del suolo (volumetrica). Corsa del 2025-09-03 ore 12 UTC - Valido dalle ore 12 UTC del 2025-09-03 alle ore 00 UTC del 2025-09-07. Modello meteorologico WRF (Weather Research and Forecasting model), core ARW (versione 3.2) con risoluzione spaziale a 3km, risoluzione temporale 60 ore, intervallo 1 ora.", "formats": [{"name": "PNG"}], "keywords": ["120000", "2025-09-03", "20250903t120000000z", "3km", "arw", "below", "between", "content", "depths", "it", "lamma", "layer", "moisture", "soil", "surface", "two", "volumetric"], "contacts": [{"organization": "regione-toscana", "roles": ["creator"]}]}, "links": [{"href": "http://geoportale.lamma.rete.toscana.it/geoserver/ARW_3KM_RUN12/ows"}, {"href": "http://www.lamma.rete.toscana.it/"}, {"href": "https://dati.toscana.it/dataset/modello-wrf-arw-a-3km-umidita-del-suolo-volumetrica-2025-09-03-ore-12-utc#"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250903T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250903T120000000Z_150_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250903T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250903T120000000Z_25_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250903T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250903T120000000Z_5_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250903T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250903T120000000Z_70_0.zip"}, {"href": "http://data.europa.eu/88u/dataset/0a773824-00a0-414f-9940-f4e9f9b9ec22"}, {"rel": "self", "type": "application/geo+json", "title": "0a773824-00a0-414f-9940-f4e9f9b9ec22", "name": "item", "description": "0a773824-00a0-414f-9940-f4e9f9b9ec22", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/0a773824-00a0-414f-9940-f4e9f9b9ec22"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"null": "date"}}, {"id": "0b078c67-bf19-4a65-a34e-a464b3bb374a", "type": "Feature", "geometry": null, "properties": {"updated": "2025-06-10T11:21:19.533415", "type": "Dataset", "language": "it", "title": "MODELLO WRF-ARW a 3km - Umidit\u00e0 del suolo (volumetrica) - (2025-06-10 ore 00 UTC).", "description": "Umidit\u00e0 del suolo (volumetrica). Corsa del 2025-06-10 ore 00 UTC - Valido dalle ore 00 UTC del 2025-06-10 alle ore 00 UTC del 2025-06-13. Modello meteorologico WRF (Weather Research and Forecasting model), core ARW (versione 3.2) con risoluzione spaziale a 3km, risoluzione temporale 60 ore, intervallo 1 ora.", "formats": [{"name": "PNG"}], "keywords": ["000000", "2025-06-10", "20250610t000000000z", "3km", "arw", "below", "between", "content", "depths", "it", "lamma", "layer", "moisture", "soil", "surface", "two", "volumetric"], "contacts": [{"organization": "regione-toscana", "roles": ["creator"]}]}, "links": [{"href": "http://geoportale.lamma.rete.toscana.it/geoserver/ARW_3KM_RUN00/ows"}, {"href": "http://www.lamma.rete.toscana.it/"}, {"href": "https://dati.toscana.it/dataset/modello-wrf-arw-a-3km-umidita-del-suolo-volumetrica-2025-06-10-ore-00-utc#"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250610T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250610T000000000Z_150_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250610T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250610T000000000Z_25_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250610T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250610T000000000Z_5_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250610T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250610T000000000Z_70_0.zip"}, {"href": "http://data.europa.eu/88u/dataset/0b078c67-bf19-4a65-a34e-a464b3bb374a"}, {"rel": "self", "type": "application/geo+json", "title": "0b078c67-bf19-4a65-a34e-a464b3bb374a", "name": "item", "description": "0b078c67-bf19-4a65-a34e-a464b3bb374a", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/0b078c67-bf19-4a65-a34e-a464b3bb374a"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"null": "date"}}, {"id": "0b275648-9cf6-47da-9dfc-fd21dbe3cec7", "type": "Feature", "geometry": null, "properties": {"updated": "2025-06-27T11:26:42.240869", "type": "Dataset", "language": "it", "title": "MODELLO WRF-ARW a 3km - Umidit\u00e0 del suolo (volumetrica) - (2025-06-27 ore 00 UTC).", "description": "Umidit\u00e0 del suolo (volumetrica). Corsa del 2025-06-27 ore 00 UTC - Valido dalle ore 00 UTC del 2025-06-27 alle ore 00 UTC del 2025-06-30. Modello meteorologico WRF (Weather Research and Forecasting model), core ARW (versione 3.2) con risoluzione spaziale a 3km, risoluzione temporale 60 ore, intervallo 1 ora.", "formats": [{"name": "PNG"}], "keywords": ["000000", "2025-06-27", "20250627t000000000z", "3km", "arw", "below", "between", "content", "depths", "it", "lamma", "layer", "moisture", "soil", "surface", "two", "volumetric"], "contacts": [{"organization": "regione-toscana", "roles": ["creator"]}]}, "links": [{"href": "http://geoportale.lamma.rete.toscana.it/geoserver/ARW_3KM_RUN00/ows"}, {"href": "http://www.lamma.rete.toscana.it/"}, {"href": "https://dati.toscana.it/dataset/modello-wrf-arw-a-3km-umidita-del-suolo-volumetrica-2025-06-27-ore-00-utc#"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250627T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250627T000000000Z_150_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250627T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250627T000000000Z_25_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250627T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250627T000000000Z_5_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250627T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250627T000000000Z_70_0.zip"}, {"href": "http://data.europa.eu/88u/dataset/0b275648-9cf6-47da-9dfc-fd21dbe3cec7"}, {"rel": "self", "type": "application/geo+json", "title": "0b275648-9cf6-47da-9dfc-fd21dbe3cec7", "name": "item", "description": "0b275648-9cf6-47da-9dfc-fd21dbe3cec7", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/0b275648-9cf6-47da-9dfc-fd21dbe3cec7"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"null": "date"}}, {"id": "0c78250a-cf71-47f0-9f23-7cf6c8da13d4", "type": "Feature", "geometry": null, "properties": {"updated": "2025-06-22T06:24:15.896677", "type": "Dataset", "language": "it", "title": "MODELLO WRF-ARW a 3km - Umidit\u00e0 del suolo (volumetrica) - (2025-06-21 ore 12 UTC).", "description": "Umidit\u00e0 del suolo (volumetrica). Corsa del 2025-06-21 ore 12 UTC - Valido dalle ore 12 UTC del 2025-06-21 alle ore 00 UTC del 2025-06-25. Modello meteorologico WRF (Weather Research and Forecasting model), core ARW (versione 3.2) con risoluzione spaziale a 3km, risoluzione temporale 60 ore, intervallo 1 ora.", "formats": [{"name": "PNG"}], "keywords": ["120000", "2025-06-21", "20250621t120000000z", "3km", "arw", "below", "between", "content", "depths", "it", "lamma", "layer", "moisture", "soil", "surface", "two", "volumetric"], "contacts": [{"organization": "regione-toscana", "roles": ["creator"]}]}, "links": [{"href": "http://geoportale.lamma.rete.toscana.it/geoserver/ARW_3KM_RUN12/ows"}, {"href": "http://www.lamma.rete.toscana.it/"}, {"href": "https://dati.toscana.it/dataset/modello-wrf-arw-a-3km-umidita-del-suolo-volumetrica-2025-06-21-ore-12-utc#"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250621T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250621T120000000Z_150_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250621T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250621T120000000Z_25_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250621T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250621T120000000Z_5_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250621T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250621T120000000Z_70_0.zip"}, {"href": "http://data.europa.eu/88u/dataset/0c78250a-cf71-47f0-9f23-7cf6c8da13d4"}, {"rel": "self", "type": "application/geo+json", "title": "0c78250a-cf71-47f0-9f23-7cf6c8da13d4", "name": "item", "description": "0c78250a-cf71-47f0-9f23-7cf6c8da13d4", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/0c78250a-cf71-47f0-9f23-7cf6c8da13d4"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"null": "date"}}, {"id": "10.1016/j.combustflame.2019.07.046", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-24T16:15:54Z", "type": "Journal Article", "created": "2019-08-21", "title": "Experimental study of moisture content effects on the transient gas and particle emissions from peat fires", "description": "Abstract   Peat fires are a global-scale source of carbon emissions and a leading cause of regional air quality deterioration, especially in Southeast Asia. The ignition and spread of peat fires are strongly affected by moisture, which acts as an energy sink. However, moisture effects on peat fire emissions are poorly understood in the literature. Here we present the first experimental work to investigate transient gas and particle emissions for a wide range of peat moisture contents (MCs). We include drying, ignition, smouldering spread, and even flaming stages. Peat samples conditioned to different MCs were burnt in the laboratory where a suite of diagnostics simultaneously measured mass loss rate, temperature profiles, real-time concentration of 20 gas species, and size-fractioned particle mass. It was found that MC affects emissions, in addition to peat burning dynamics. An increase in MC below a smouldering threshold of 160% in dry basis leads to a decrease in NH3 and greenhouse gas emissions, including CO2 and CH4. The burning of wet peat emits more coarse particles (between 1 and 10\u00a0\u00b5m) than dry peat, especially during the ignition stage. In contrast, flaming stage emits mostly soot particles less than 1\u00a0\u00b5m, and releases 100% more fully oxidised gas species including CO2, NO2 and SO2 than smouldering. The examination of the resulting modified combustion efficiency (MCE) reveals that it fails to recongnise smouldering combustion with sufficient accuracy, especially for wet peat with MC\u00a0>\u00a0120%. MCE confuses drying and flaming, and has significant variations during the ignition stage. As a result, MCE is not valid as a universal fire mode indicator used in the field. This work fills the knowledge gap between moisture and emissions, and provides a better understanding which can help mitigate peat fires.", "keywords": ["Energy", "biomass", "0904 Chemical Engineering", "02 engineering and technology", "624", "Wildfire", "15. Life on land", "0902 Automotive Engineering", "01 natural sciences", "13. Climate action", "moisture", "11. Sustainability", "pollution", "0204 chemical engineering", "fire", "0913 Mechanical Engineering", "0105 earth and related environmental sciences"]}, "links": [{"href": "https://doi.org/10.1016/j.combustflame.2019.07.046"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Combustion%20and%20Flame", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1016/j.combustflame.2019.07.046", "name": "item", "description": "10.1016/j.combustflame.2019.07.046", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1016/j.combustflame.2019.07.046"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2019-11-01T00:00:00Z"}}, {"id": "0d2617d0-9ab4-496d-8895-6ef414b07bea", "type": "Feature", "geometry": null, "properties": {"updated": "2025-08-15T06:23:07.037813", "type": "Dataset", "language": "it", "title": "MODELLO WRF-ARW a 3km - Umidit\u00e0 del suolo (volumetrica) - (2025-08-14 ore 12 UTC).", "description": "Umidit\u00e0 del suolo (volumetrica). Corsa del 2025-08-14 ore 12 UTC - Valido dalle ore 12 UTC del 2025-08-14 alle ore 00 UTC del 2025-08-18. Modello meteorologico WRF (Weather Research and Forecasting model), core ARW (versione 3.2) con risoluzione spaziale a 3km, risoluzione temporale 60 ore, intervallo 1 ora.", "formats": [{"name": "PNG"}], "keywords": ["120000", "2025-08-14", "20250814t120000000z", "3km", "arw", "below", "between", "content", "depths", "it", "lamma", "layer", "moisture", "soil", "surface", "two", "volumetric"], "contacts": [{"organization": "regione-toscana", "roles": ["creator"]}]}, "links": [{"href": "http://geoportale.lamma.rete.toscana.it/geoserver/ARW_3KM_RUN12/ows"}, {"href": "http://www.lamma.rete.toscana.it/"}, {"href": "https://dati.toscana.it/dataset/modello-wrf-arw-a-3km-umidita-del-suolo-volumetrica-2025-08-14-ore-12-utc#"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250814T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250814T120000000Z_150_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250814T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250814T120000000Z_25_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250814T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250814T120000000Z_5_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250814T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250814T120000000Z_70_0.zip"}, {"href": "http://data.europa.eu/88u/dataset/0d2617d0-9ab4-496d-8895-6ef414b07bea"}, {"rel": "self", "type": "application/geo+json", "title": "0d2617d0-9ab4-496d-8895-6ef414b07bea", "name": "item", "description": "0d2617d0-9ab4-496d-8895-6ef414b07bea", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/0d2617d0-9ab4-496d-8895-6ef414b07bea"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"null": "date"}}, {"id": "0ea79f25-efe5-4ad4-aaff-d707b059faf4", "type": "Feature", "geometry": null, "properties": {"updated": "2025-07-11T06:23:09.695616", "type": "Dataset", "language": "it", "title": "MODELLO WRF-ARW a 3km - Umidit\u00e0 del suolo (volumetrica) - (2025-07-10 ore 12 UTC).", "description": "Umidit\u00e0 del suolo (volumetrica). Corsa del 2025-07-10 ore 12 UTC - Valido dalle ore 12 UTC del 2025-07-10 alle ore 00 UTC del 2025-07-14. Modello meteorologico WRF (Weather Research and Forecasting model), core ARW (versione 3.2) con risoluzione spaziale a 3km, risoluzione temporale 60 ore, intervallo 1 ora.", "formats": [{"name": "PNG"}], "keywords": ["120000", "2025-07-10", "20250710t120000000z", "3km", "arw", "below", "between", "content", "depths", "it", "lamma", "layer", "moisture", "soil", "surface", "two", "volumetric"], "contacts": [{"organization": "regione-toscana", "roles": ["creator"]}]}, "links": [{"href": "http://geoportale.lamma.rete.toscana.it/geoserver/ARW_3KM_RUN12/ows"}, {"href": "http://www.lamma.rete.toscana.it/"}, {"href": "https://dati.toscana.it/dataset/modello-wrf-arw-a-3km-umidita-del-suolo-volumetrica-2025-07-10-ore-12-utc#"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250710T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250710T120000000Z_150_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250710T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250710T120000000Z_25_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250710T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250710T120000000Z_5_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250710T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250710T120000000Z_70_0.zip"}, {"href": "http://data.europa.eu/88u/dataset/0ea79f25-efe5-4ad4-aaff-d707b059faf4"}, {"rel": "self", "type": "application/geo+json", "title": "0ea79f25-efe5-4ad4-aaff-d707b059faf4", "name": "item", "description": "0ea79f25-efe5-4ad4-aaff-d707b059faf4", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/0ea79f25-efe5-4ad4-aaff-d707b059faf4"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"null": "date"}}, {"id": "0eaa4b78-ccbc-476b-a48d-57e8f3fe1905", "type": "Feature", "geometry": null, "properties": {"updated": "2025-08-28T06:20:37.894175", "type": "Dataset", "language": "it", "title": "MODELLO WRF-ARW a 3km - Umidit\u00e0 del suolo (volumetrica) - (2025-08-27 ore 12 UTC).", "description": "Umidit\u00e0 del suolo (volumetrica). Corsa del 2025-08-27 ore 12 UTC - Valido dalle ore 12 UTC del 2025-08-27 alle ore 00 UTC del 2025-08-31. Modello meteorologico WRF (Weather Research and Forecasting model), core ARW (versione 3.2) con risoluzione spaziale a 3km, risoluzione temporale 60 ore, intervallo 1 ora.", "formats": [{"name": "PNG"}], "keywords": ["120000", "2025-08-27", "20250827t120000000z", "3km", "arw", "below", "between", "content", "depths", "it", "lamma", "layer", "moisture", "soil", "surface", "two", "volumetric"], "contacts": [{"organization": "regione-toscana", "roles": ["creator"]}]}, "links": [{"href": "http://geoportale.lamma.rete.toscana.it/geoserver/ARW_3KM_RUN12/ows"}, {"href": "http://www.lamma.rete.toscana.it/"}, {"href": "https://dati.toscana.it/dataset/modello-wrf-arw-a-3km-umidita-del-suolo-volumetrica-2025-08-27-ore-12-utc#"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250827T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250827T120000000Z_150_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250827T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250827T120000000Z_25_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250827T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250827T120000000Z_5_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250827T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250827T120000000Z_70_0.zip"}, {"href": "http://data.europa.eu/88u/dataset/0eaa4b78-ccbc-476b-a48d-57e8f3fe1905"}, {"rel": "self", "type": "application/geo+json", "title": "0eaa4b78-ccbc-476b-a48d-57e8f3fe1905", "name": "item", "description": "0eaa4b78-ccbc-476b-a48d-57e8f3fe1905", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/0eaa4b78-ccbc-476b-a48d-57e8f3fe1905"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"null": "date"}}, {"id": "0f31be4f-5547-4e42-8216-e51a08b32539", "type": "Feature", "geometry": null, "properties": {"updated": "2025-04-27T08:23:33.452659Z", "type": "Dataset", "language": "it", "title": "MODELLO WRF-ARW a 3km - Umidit\u00e0 del suolo (volumetrica) - (2025-04-26 ore 12 UTC).", "description": "Umidit\u00e0 del suolo (volumetrica). Corsa del 2025-04-26 ore 12 UTC - Valido dalle ore 12 UTC del 2025-04-26 alle ore 00 UTC del 2025-04-30. Modello meteorologico WRF (Weather Research and Forecasting model), core ARW (versione 3.2) con risoluzione spaziale a 3km, risoluzione temporale 60 ore, intervallo 1 ora.", "formats": [{"name": "PNG"}], "keywords": ["120000", "2025-04-26", "20250426t120000000z", "3km", "arw", "below", "between", "content", "depths", "it", "lamma", "layer", "moisture", "soil", "surface", "two", "volumetric"], "contacts": [{"organization": "regione-toscana", "roles": ["creator"]}]}, "links": [{"href": "http://geoportale.lamma.rete.toscana.it/geoserver/ARW_3KM_RUN12/ows"}, {"href": "http://www.lamma.rete.toscana.it/"}, {"href": "https://dati.toscana.it/dataset/modello-wrf-arw-a-3km-umidita-del-suolo-volumetrica-2025-04-26-ore-12-utc#"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250426T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250426T120000000Z_150_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250426T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250426T120000000Z_25_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250426T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250426T120000000Z_5_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250426T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250426T120000000Z_70_0.zip"}, {"href": "http://data.europa.eu/88u/dataset/0f31be4f-5547-4e42-8216-e51a08b32539"}, {"rel": "self", "type": "application/geo+json", "title": "0f31be4f-5547-4e42-8216-e51a08b32539", "name": "item", "description": "0f31be4f-5547-4e42-8216-e51a08b32539", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/0f31be4f-5547-4e42-8216-e51a08b32539"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"null": "date"}}, {"id": "0fc7bb44-b2a2-4650-82e6-9effae4a8607", "type": "Feature", "geometry": null, "properties": {"updated": "2025-04-30T08:20:45.418449Z", "type": "Dataset", "language": "it", "title": "MODELLO WRF-ARW a 3km - Umidit\u00e0 del suolo (volumetrica) - (2025-04-29 ore 12 UTC).", "description": "Umidit\u00e0 del suolo (volumetrica). Corsa del 2025-04-29 ore 12 UTC - Valido dalle ore 12 UTC del 2025-04-29 alle ore 00 UTC del 2025-05-03. Modello meteorologico WRF (Weather Research and Forecasting model), core ARW (versione 3.2) con risoluzione spaziale a 3km, risoluzione temporale 60 ore, intervallo 1 ora.", "formats": [{"name": "PNG"}], "keywords": ["120000", "2025-04-29", "20250429t120000000z", "3km", "arw", "below", "between", "content", "depths", "it", "lamma", "layer", "moisture", "soil", "surface", "two", "volumetric"], "contacts": [{"organization": "regione-toscana", "roles": ["creator"]}]}, "links": [{"href": "http://geoportale.lamma.rete.toscana.it/geoserver/ARW_3KM_RUN12/ows"}, {"href": "http://www.lamma.rete.toscana.it/"}, {"href": "https://dati.toscana.it/dataset/modello-wrf-arw-a-3km-umidita-del-suolo-volumetrica-2025-04-29-ore-12-utc#"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250429T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250429T120000000Z_150_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250429T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250429T120000000Z_25_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250429T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250429T120000000Z_5_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run12/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250429T120000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250429T120000000Z_70_0.zip"}, {"href": "http://data.europa.eu/88u/dataset/0fc7bb44-b2a2-4650-82e6-9effae4a8607"}, {"rel": "self", "type": "application/geo+json", "title": "0fc7bb44-b2a2-4650-82e6-9effae4a8607", "name": "item", "description": "0fc7bb44-b2a2-4650-82e6-9effae4a8607", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/0fc7bb44-b2a2-4650-82e6-9effae4a8607"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"null": "date"}}, {"id": "0ff8b540-2236-4288-86a3-dabac9b44d83", "type": "Feature", "geometry": null, "properties": {"updated": "2025-08-31T11:22:41.479631", "type": "Dataset", "language": "it", "title": "MODELLO WRF-ARW a 3km - Umidit\u00e0 del suolo (volumetrica) - (2025-08-31 ore 00 UTC).", "description": "Umidit\u00e0 del suolo (volumetrica). Corsa del 2025-08-31 ore 00 UTC - Valido dalle ore 00 UTC del 2025-08-31 alle ore 00 UTC del 2025-09-03. Modello meteorologico WRF (Weather Research and Forecasting model), core ARW (versione 3.2) con risoluzione spaziale a 3km, risoluzione temporale 60 ore, intervallo 1 ora.", "formats": [{"name": "PNG"}], "keywords": ["000000", "2025-08-31", "20250831t000000000z", "3km", "arw", "below", "between", "content", "depths", "it", "lamma", "layer", "moisture", "soil", "surface", "two", "volumetric"], "contacts": [{"organization": "regione-toscana", "roles": ["creator"]}]}, "links": [{"href": "http://geoportale.lamma.rete.toscana.it/geoserver/ARW_3KM_RUN00/ows"}, {"href": "http://www.lamma.rete.toscana.it/"}, {"href": "https://dati.toscana.it/dataset/modello-wrf-arw-a-3km-umidita-del-suolo-volumetrica-2025-08-31-ore-00-utc#"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250831T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250831T000000000Z_150_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250831T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250831T000000000Z_25_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250831T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250831T000000000Z_5_0.zip"}, {"href": "https://geoportale.lamma.rete.toscana.it/download/arw_3km_run00/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250831T000000000Z/arw_3km_Volumetric_soil_moisture_content_layer_between_two_depths_below_surface_layer_20250831T000000000Z_70_0.zip"}, {"href": "http://data.europa.eu/88u/dataset/0ff8b540-2236-4288-86a3-dabac9b44d83"}, {"rel": "self", "type": "application/geo+json", "title": "0ff8b540-2236-4288-86a3-dabac9b44d83", "name": "item", "description": "0ff8b540-2236-4288-86a3-dabac9b44d83", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/0ff8b540-2236-4288-86a3-dabac9b44d83"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"null": "date"}}, {"id": "10.1002/2015wr018233", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-24T16:13:59Z", "type": "Journal Article", "created": "2016-04-20", "title": "Modeling soil evaporation efficiency in a range of soil and atmospheric conditions using a meta\u2010analysis approach", "description": "Abstract<p>A meta\uffe2\uff80\uff90analysis data\uffe2\uff80\uff90driven approach is developed to represent the soil evaporative efficiency (SEE) defined as the ratio of actual to potential soil evaporation. The new model is tested across a bare soil database composed of more than 30 sites around the world, a clay fraction range of 0.02\uffe2\uff80\uff930.56, a sand fraction range of 0.05\uffe2\uff80\uff930.92, and about 30,000 acquisition times. SEE is modeled using a soil resistance (rss) formulation based on surface soil moisture (\uffce\uffb8) and two resistance parameters   and \uffce\uffb8efolding. The data\uffe2\uff80\uff90driven approach aims to express both parameters as a function of observable data including meteorological forcing, cut\uffe2\uff80\uff90off soil moisture value   at which SEE=0.5, and first derivative of SEE at  , named  . An analytical relationship between   and   is first built by running a soil energy balance model for two extreme conditions with rss\uffe2\uff80\uff89=\uffe2\uff80\uff890 and   using meteorological forcing solely, and by approaching the middle point from the two (wet and dry) reference points. Two different methods are then investigated to estimate the pair   either from the time series of SEE and \uffce\uffb8 observations for a given site, or using the soil texture information for all sites. The first method is based on an algorithm specifically designed to accomodate for strongly nonlinear   relationships and potentially large random deviations of observed SEE from the mean observed  . The second method parameterizes   as a multi\uffe2\uff80\uff90linear regression of clay and sand percentages, and sets   to a constant mean value for all sites. The new model significantly outperformed the evaporation modules of ISBA (Interaction Sol\uffe2\uff80\uff90Biosph\uffc3\uffa8re\uffe2\uff80\uff90Atmosph\uffc3\uffa8re), H\uffe2\uff80\uff90TESSEL (Hydrology\uffe2\uff80\uff90Tiled ECMWF Scheme for Surface Exchange over Land), and CLM (Community Land Model). It has potential for integration in various land\uffe2\uff80\uff90surface schemes, and real calibration capabilities using combined thermal and microwave remote sensing data.</p", "keywords": ["550", "0207 environmental engineering", "modeling", "02 engineering and technology", "15. Life on land", "551", "01 natural sciences", "evaporation", "soil", "moisture", "[SDU.STU.HY] Sciences of the Universe [physics]/Earth Sciences/Hydrology", "[SDU.STU.HY]Sciences of the Universe [physics]/Earth Sciences/Hydrology", "texture", "0105 earth and related environmental sciences"]}, "links": [{"href": "https://agupubs.onlinelibrary.wiley.com/doi/pdf/10.1002/2015WR018233"}, {"href": "https://doi.org/10.1002/2015wr018233"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Water%20Resources%20Research", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1002/2015wr018233", "name": "item", "description": "10.1002/2015wr018233", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1002/2015wr018233"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2016-05-01T00:00:00Z"}}, {"id": "10.1002/2016JD026099", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-24T16:13:59Z", "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-24T16:14:00Z", "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-24T16:14:00Z", "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.1016/j.combustflame.2019.11.001", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-24T16:15:54Z", "type": "Journal Article", "created": "2020-01-24", "title": "Influence of soil conditions on the multidimensional spread of smouldering combustion in shallow layers", "description": "Abstract   Smouldering peatland fires are capable of burning vast amounts of organic soils, resulting in the release of greenhouse gases into the atmosphere, as well as a significant deterioration of air quality causing in major regional crises known as haze events. Fundamental understanding of smouldering fire spread is essential for the development of mitigating technologies. In this paper, we have systematically conducted 63 experiments studying the individual and combined influence of two key factors affecting multidimensional smouldering spread in organic soils: moisture content (MC) and inorganic content (IC). Both lateral and in-depth smouldering spread were investigated using a novel shallow reactor. This shallow depth allows a greater number of experiments to be performed in a short period of time compared to deeper samples. Lateral spread was found to decrease linearly with moisture content (R2 > 90%); while in-depth spread rate increased linearly up to 300% from moisture content of 0% to 140%. Increased inorganic content linearly decreased the lateral spread rate but had little influence on in-depth spread in drier samples. Interestingly, in wetter samples, in-depth spread was in fact sensitive to inorganic content. A novel approach combining lateral and in-depth spread rates as vector components, revealed that the global spread is independent of moisture content, with an average spread rate of 8.7 and 8.4\u00a0cm/h for 2.5 and 40% IC, with changes in direction according to moisture content; going in-depth for wet soils, and laterally for dry soils. Similarly, increasing the IC encouraged downward spread for wet samples. We also report observations of a bifurcation of lateral spread, where spread would locally extinguish where the in-depth spread was greater than the lateral spread. These findings provide previously unknown insight into the relationship between lateral and in-depth spread in smouldering fires, ultimately improving the fundamental understanding of such fires.", "keywords": ["Technology", "Engineering", " Chemical", "Energy & Fuels", "0904 Chemical Engineering", "Engineering", " Multidisciplinary", "TRANSIENT GAS", "Chemical", "02 engineering and technology", "Wildfire", "MOISTURE", "0902 Automotive Engineering", "01 natural sciences", "0201 civil engineering", "Engineering", "Smouldering", "Heat transfer", "Biomass", "PEAT FIRES", "0105 earth and related environmental sciences", "Multidisciplinary", "Science & Technology", "Energy", "CONSUMPTION", "15. Life on land", "Mechanical", "Fire", "Engineering", " Mechanical", "IGNITION", "13. Climate action", "Physical Sciences", "PARTICLE EMISSIONS", "Thermodynamics", "0913 Mechanical Engineering"], "contacts": [{"organization": "Christensen, EG, Fernandez-Anez, N, Rein, G,", "roles": ["creator"]}]}, "links": [{"href": "https://doi.org/10.1016/j.combustflame.2019.11.001"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Combustion%20and%20Flame", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1016/j.combustflame.2019.11.001", "name": "item", "description": "10.1016/j.combustflame.2019.11.001", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1016/j.combustflame.2019.11.001"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2020-04-01T00:00:00Z"}}, {"id": "10.1002/hyp.14451", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-24T16:14:04Z", "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-24T16:14:04Z", "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-24T16:16:04Z", "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-24T16: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.1007/s10021-008-9198-0", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-24T16:14:36Z", "type": "Journal Article", "created": "2008-10-14", "title": "Soil Respiration In European Grasslands In Relation To Climate And Assimilate Supply", "description": "Soil respiration constitutes the second largest flux of carbon (C) between terrestrial ecosystems and the atmosphere. This study provides a synthesis of soil respiration (R(s)) in 20 European grasslands across a climatic transect, including ten meadows, eight pastures and two unmanaged grasslands. Maximum rates of R(s) (R(s(max) )), R(s) at a reference soil temperature (10\u00b0C; R(s(10) )) and annual R(s) (estimated for 13 sites) ranged from 1.9 to 15.9 \u03bcmol CO(2) m(-2) s(-1), 0.3 to 5.5 \u03bcmol CO(2) m(-2) s(-1) and 58 to 1988 g C m(-2) y(-1), respectively. Values obtained for Central European mountain meadows are amongst the highest so far reported for any type of ecosystem. Across all sites R(s(max) ) was closely related to R(s(10) ).Assimilate supply affected R(s) at timescales from daily (but not necessarily diurnal) to annual. Reductions of assimilate supply by removal of aboveground biomass through grazing and cutting resulted in a rapid and a significant decrease of R(s). Temperature-independent seasonal fluctuations of R(s) of an intensively managed pasture were closely related to changes in leaf area index (LAI). Across sites R(s(10) ) increased with mean annual soil temperature (MAT), LAI and gross primary productivity (GPP), indicating that assimilate supply overrides potential acclimation to prevailing temperatures. Also annual R(s) was closely related to LAI and GPP. Because the latter two parameters were coupled to MAT, temperature was a suitable surrogate for deriving estimates of annual R(s) across the grasslands studied. These findings contribute to our understanding of regional patterns of soil C fluxes and highlight the importance of assimilate supply for soil CO(2) emissions at various timescales.", "keywords": ["[SDE] Environmental Sciences", "2. Zero hunger", "leaf area index", "577", "temperature", "land use", "04 agricultural and veterinary sciences", "15. Life on land", "soil CO2 efflux", "13. Climate action", "Settore BIO/07 - ECOLOGIA", "moisture", "[SDE]Environmental Sciences", "0401 agriculture", " forestry", " and fisheries", "soil carbon", "gross primary productivity", "Soil CO2 efflux"]}, "links": [{"href": "https://doi.org/10.1007/s10021-008-9198-0"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Ecosystems", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1007/s10021-008-9198-0", "name": "item", "description": "10.1007/s10021-008-9198-0", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1007/s10021-008-9198-0"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2008-10-15T00:00:00Z"}}, {"id": "10.1007/s100210000025", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-24T16:14:38Z", "type": "Journal Article", "created": "2002-07-25", "title": "Controls On Soil Carbon Dioxide And Methane Fluxes In A Variety Of Taiga Forest Stands In Interior Alaska", "description": "CO2 and CH4 fluxes were monitored over 4 years in a range of taiga forests along the Tanana River in interior Alaska. Floodplain alder and white spruce sites and upland birch/aspen and white spruce sites were examined. Each site had control, fertilized, and sawdust amended plots; flux measurements began during the second treatment year. CO2 emissions decreased with successional age across the sites (alder, birch/aspen, and white spruce, in order of succession) regardless of landscape position. Although CO2 fluxes showed an exponential relationship with soil temperature, the response of CO2 production to moisture fit an asymptotic model. Of the manipulations, only N fertilization had an effect on CO2 flux, decreasing flux in the floodplain sites but increasing it in the birch/aspen site. Landscape position was the best predictor of CH4 flux. The two upland sites consumed CH4 at similar rates (approximately 0.5 mg C m\u22122 d\u22121), whereas the floodplain sites had lower consumption rates (0\u20130.3 mg C m\u22122 d\u22121). N fertilization and sawdust both inhibited CH4 consumption in the upland birch/aspen and floodplain spruce sites but not in the upland spruce site. The biological processes driving CO2 fluxes were sensitive to temperature, moisture, and vegetation, whereas CH4 fluxes were sensitive primarily to landscape position and biogeochemical disturbances. Hence, climate change effects on C-gas flux in taiga forest soils will depend on the relationship between soil temperature and moisture and the concomitant changes in soil nutrient pools and cycles.", "keywords": ["landscape-ecology", "Betulaceae-: Dicotyledones-", "flux-", "soil-nutrient-pools", "Coniferopsida-: Gymnospermae-", "Vascular-Plants", "forests-", "Environmental-Sciences)", "carbon-dioxide", "nitrogen-fertilizers", "01 natural sciences", "carbon-dioxide: emissions-", "nitrogen-: fertilization-", "vegetation-", "birch- (Betulaceae-)", "124-38-9: CARBON DIOXIDE", "Spermatophytes-", "Spermatophyta-", "74-82-8: METHANE", "Plantae-", "white-spruce (Coniferopsida-)", "successional-age", "boreal-forests", "environmental-temperature", "0105 earth and related environmental sciences", "taiga-forest-stands", "Angiosperms-", "Gymnosperms-", "Angiospermae-", "Plants-", "sawdust-", "methane-", "15. Life on land", "North-America", "Nearctic-region)", "floodplains-", "mathematical-models", "13. Climate action", "alder- (Betulaceae-)", "upland-sites", "Alaska- (USA-", "climate-change", "Terrestrial-Ecology (Ecology-", "7727-37-9: NITROGEN", "Dicots-", "methane-: consumption-", "moisture-", "climatic-change", "temperature-"]}, "links": [{"href": "https://doi.org/10.1007/s100210000025"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Ecosystems", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1007/s100210000025", "name": "item", "description": "10.1007/s100210000025", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1007/s100210000025"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2000-05-10T00:00:00Z"}}, {"id": "10.1016/j.agrformet.2018.02.033", "type": "Feature", "geometry": null, "properties": {"updated": "2026-05-24T16:15:32Z", "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-24T16:15:14Z", "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-24T16:15:32Z", "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-24T16:16:48Z", "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"}}], "links": [{"rel": "self", "type": "application/geo+json", "title": "This document as GeoJSON", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items?keywords=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=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=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=MOISTURE&offset=50", "hreflang": "en-US"}], "numberMatched": 539, "numberReturned": 50, "distributedFeatures": [], "timeStamp": "2026-05-25T04:00:27.964072Z"}