{"type": "FeatureCollection", "features": [{"id": "10.5281/zenodo.14833053", "type": "Feature", "geometry": null, "properties": {"updated": "2026-09-21T16:20:41Z", "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.agrformet.2018.02.033", "type": "Feature", "geometry": null, "properties": {"updated": "2026-09-21T16:15:13Z", "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.1016/j.soilbio.2007.04.019", "type": "Feature", "geometry": null, "properties": {"updated": "2026-09-21T16:16:10Z", "type": "Journal Article", "created": "2007-05-31", "title": "Interannual And Interseasonal Soil Co2 Efflux And Voc Exchange Rates In A Mediterranean Holm Oak Forest In Response To Experimental Drought", "description": "Open AccessPeer reviewed", "keywords": ["2. Zero hunger", "Drought", "Seasonality", "Soil VOCs", "15. Life on land", "01 natural sciences", "6. Clean water", "13. Climate action", "CO2 efflux", "Soil monoterpenes", "Soil temperature", "Soil moisture", "0105 earth and related environmental sciences"]}, "links": [{"href": "https://doi.org/10.1016/j.soilbio.2007.04.019"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Soil%20Biology%20and%20Biochemistry", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1016/j.soilbio.2007.04.019", "name": "item", "description": "10.1016/j.soilbio.2007.04.019", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1016/j.soilbio.2007.04.019"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2007-10-01T00:00:00Z"}}, {"id": "10.1016/j.catena.2016.12.013", "type": "Feature", "geometry": null, "properties": {"updated": "2026-09-21T16:15:26Z", "type": "Journal Article", "created": "2016-12-29", "title": "Manure Fertilization Increases Soil Respiration And Creates A Negative Carbon Budget In A Mediterranean Maize (Zea Mays L.)-Based Cropping System", "description": "Abstract   Agronomic research is important to identify suitable options for improving soil carbon (C) sequestration and reducing soil CO2 emissions. Therefore, the objectives of this study were i) to analyse the on-farm effects of different nitrogen fertilization sources on soil respiration, ii) to explore the effect of fertilization on soil respiration sensitivity to soil temperature (T) and iii) to assess the effect of the different fertilization regimes on the soil C balance. We hypothesized that i) the soil CO2 emission dynamics in Mediterranean irrigated cropping systems were mainly affected by fertilization management and T and ii) fertilization affected the soil C budget via different C inputs and CO2 efflux. Four fertilization systems (farmyard manure, cattle slurry, cattle slurry\u00a0+\u00a0mineral, and mineral) were compared in a double-crop rotation based on silage maize (Zea mays L.) and a mixture of Italian ryegrass (Lolium multiflorum Lam.) and oats (Avena sativa L.). The research was performed in the dairy district of Arborea, in the coastal zone of Sardinia (Italy), from May 2011 to May 2012. The soil was a Psammentic Palexeralfs with a sandy texture (940\u00a0g\u00a0sand\u00a0kg\u2212\u00a01). The soil total respiration (SR), heterotrophic respiration (Rh), T and soil water content (SWC) were simultaneously measured in situ. The soil C balance was computed considering the Rh C losses and the soil C inputs from fertilizer and crop residues. The results showed that the maximum soil CO2 emission rates soon after the application of organic fertilizer reached values up to 12\u00a0\u03bcmol\u00a0m\u2212\u00a02\u00a0s\u2212\u00a01. On average, the manure fertilizer showed significantly higher CO2 emissions, which resulted in a negative annual C balance (\u2212\u00a02.9\u00a0t\u00a0ha\u2212\u00a01). T also affected the soil respiration temporal dynamics during the summer, consistently with results obtained in other temperate climatic regions that are characterized by wet summers and contrary to results from rainfed Mediterranean systems where the summer SR and Rh are constrained by the low SWC. The sensitivity of soil respiration to temperature significantly increased with C input from fertilizer. In conclusion, this research supported the hypotheses tested. Furthermore, the results indicated that i) soil CO2 efflux was significantly affected by fertilization management and T, and ii) fertilization with manure increased the soil respiration and resulted in a significantly negative soil C budget. This latter finding could be primarily explained by a reduction in productivity and, consequently, in crop residue with organic fertilization alone as compared to mineral, by the favourable SWC and T for mineralization, and by the sandy soil texture, which hindered the formation of macroaggregates and hence soil C stabilization, making fertilizer organic inputs highly susceptible to mineralization.", "keywords": ["2. Zero hunger", "13. Climate action", "Biomass C turnover GHG emission Microbial activity Soil moisture", "0401 agriculture", " forestry", " and fisheries", "04 agricultural and veterinary sciences", "15. Life on land", "12. Responsible consumption"]}, "links": [{"href": "https://doi.org/10.1016/j.catena.2016.12.013"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/CATENA", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1016/j.catena.2016.12.013", "name": "item", "description": "10.1016/j.catena.2016.12.013", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1016/j.catena.2016.12.013"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2017-04-01T00:00:00Z"}}, {"id": "10.1016/j.agwat.2020.106207", "type": "Feature", "geometry": null, "properties": {"updated": "2026-09-21T16:15:15Z", "type": "Journal Article", "created": "2020-05-08", "title": "Dynamic Management Zones for Irrigation Scheduling", "description": "Open AccessIrrigation scheduling decision-support tools can improve water use efficiency by matching irrigation recommendations to prevailing soil and crop conditions within a season. Yet, little research is available on how to support real-time precision irrigation that varies within-season in both time and space. We investigate the integration of remotely sensed NDVI time-series, soil moisture sensor measurements, and root zone simulation forecasts for in-season delineation of dynamic management zones (MZ) and for a variable rate irrigation scheduling in order to improve irrigation scheduling and crop performance. Delineation of MZ was conducted in a 5.8-ha maize field during 2018 using Sentinel-2 NDVI time-series and an unsupervised classification. The number and spatial extent of MZs changed through the growing season. A network of soil moisture sensors was used to interpret spatiotemporal changes of the NDVI. Soil water content was a significant contributor to changes in crop vigor across MZs through the growing season. Real-time cluster validity function analysis provided in-season evaluation of the MZ design. For example, the total within-MZ daily soil moisture relative variance decreased from 85% (early vegetative stages) to below 25% (late reproductive stages). Finally, using the Hydrus-1D model, a workflow for in-season optimization of irrigation scheduling and water delivery management was tested. Data simulations indicated that crop transpiration could be optimized while reducing water applications between 11 and 28.5% across the dynamic MZs. The proposed integration of spatiotemporal crop and soil moisture data can be used to support management decisions to effectively control outputs of crop \u00d7 environment \u00d7 management interactions.", "keywords": ["0106 biological sciences", "2. Zero hunger", "Irrigation -- Management -- Mathematical models", "Precision agriculture", "\u00c0rees tem\u00e0tiques de la UPC::Enginyeria civil::Enginyeria hidr\u00e0ulica", "Hydrus-1D", "Temporal variability", "04 agricultural and veterinary sciences", "Remote sensing", "15. Life on land", "Spatial variability", "01 natural sciences", "6. Clean water", "631", "\u00c0rees tem\u00e0tiques de la UPC::Enginyeria civil::Enginyeria hidr\u00e0ulica", " mar\u00edtima i sanit\u00e0ria::Canals i regadius", "0401 agriculture", " forestry", " and fisheries", "Soil moisture", "Regatge -- Optimitzaci\u00f3 matem\u00e0tica", "mar\u00edtima i sanit\u00e0ria::Canals i regadius"]}, "links": [{"href": "https://doi.org/10.1016/j.agwat.2020.106207"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Agricultural%20Water%20Management", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1016/j.agwat.2020.106207", "name": "item", "description": "10.1016/j.agwat.2020.106207", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1016/j.agwat.2020.106207"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2020-08-01T00:00:00Z"}}, {"id": "10.1016/j.agwat.2021.106827", "type": "Feature", "geometry": null, "properties": {"updated": "2026-09-21T16:15:15Z", "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": "/publisher", "type": "Feature", "geometry": null, "properties": {"updated": "2026-09-21T16:14:03Z", "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-09-21T16:14:03Z", "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "10.1002/2015wr018233", "type": "Feature", "geometry": null, "properties": {"updated": "2026-09-21T16:14:10Z", "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": "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/2017JD027346", "type": "Feature", "geometry": null, "properties": {"updated": "2026-09-21T16:14:10Z", "type": "Journal Article", "created": "2017-12-28", "title": "Soil Moisture-Temperature Coupling in a Set of Land Surface Models", "description": "Abstract<p>The land surface controls the partitioning of water and energy fluxes and therefore plays a crucial role in the climate system. The coupling between soil moisture and air temperature, in particular, has been shown to affect the severity and occurrence of temperature extremes and heat waves. Here we study soil moisture\uffe2\uff80\uff90temperature coupling in five land surface models, focusing on the terrestrial segment of the coupling in the warm season. All models are run off\uffe2\uff80\uff90line over a common period with identical atmospheric forcing data, in order to allow differences in the results to be attributed to the models' partitioning of energy and water fluxes. Coupling is calculated according to two semiempirical metrics, and results are compared to observational flux tower data. Results show that the locations of the global hot spots of soil moisture\uffe2\uff80\uff90temperature coupling are similar across all models and for both metrics. In agreement with previous studies, these areas are located in transitional climate regimes. The magnitude and local patterns of model coupling, however, can vary considerably. Model coupling fields are compared to tower data, bearing in mind the limitations in the geographical distribution of flux towers and the differences in representative area of models and in situ data. Nevertheless, model coupling correlates in space with the tower\uffe2\uff80\uff90based results (r = 0.5\uffe2\uff80\uff930.7), with the multimodel mean performing similarly to the best\uffe2\uff80\uff90performing model. Intermodel differences are also found in the evaporative fractions and may relate to errors in model parameterizations and ancillary data of soil and vegetation characteristics.</p>", "keywords": ["ENVIRONMENT SIMULATOR JULES", "FLUXES", "0207 environmental engineering", "02 engineering and technology", "01 natural sciences", "CO2 EXCHANGE", "models", "WATER", "SCALE", "Research Articles", "0105 earth and related environmental sciences", "land surface", "CARBON-DIOXIDE EXCHANGE", "eartH2Observe", "temperature", "15. Life on land", "DECIDUOUS FOREST", "CLIMATE", "EVAPORATION", "VARIABILITY", "13. Climate action", "Earth and Environmental Sciences", "BALANCE", "land surface models", "SENSIBLE HEAT", "land-atmosphere interactions", "soil moisture"]}, "links": [{"href": "https://agupubs.onlinelibrary.wiley.com/doi/pdf/10.1002/2017JD027346"}, {"href": "https://doi.org/10.1002/2017JD027346"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Journal%20of%20Geophysical%20Research%3A%20Atmospheres", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1002/2017JD027346", "name": "item", "description": "10.1002/2017JD027346", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1002/2017JD027346"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2018-02-01T00:00:00Z"}}, {"id": "10.1002/2016JD026099", "type": "Feature", "geometry": null, "properties": {"updated": "2026-09-21T16:14:10Z", "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-09-21T16:14:10Z", "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/hyp.14451", "type": "Feature", "geometry": null, "properties": {"updated": "2026-09-21T16:14:13Z", "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-09-21T16:14:14Z", "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.1007/s00442-012-2484-8", "type": "Feature", "geometry": null, "properties": {"updated": "2026-09-21T16:14:34Z", "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-09-21T16: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-09-21T16: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.isprsjprs.2019.02.004", "type": "Feature", "geometry": null, "properties": {"updated": "2026-09-21T16:15:53Z", "type": "Journal Article", "created": "2019-02-15", "title": "Including Sentinel-1 radar data to improve the disaggregation of MODIS land surface temperature data", "description": "Abstract   The use of land surface temperature (LST) for monitoring the consumption and water status of crops requires data at fine spatial and temporal resolutions. Unfortunately, the current spaceborne thermal sensors provide data at either high temporal (e.g. MODIS: Moderate Resolution Imaging Spectro-radiometer) or high spatial (e.g. Landsat) resolution separately. Disaggregating low spatial resolution (LR) LST data using ancillary data available at high spatio-temporal resolution could compensate for the lack of high spatial resolution (HR) LST observations. Existing LST downscaling approaches generally rely on the fractional green vegetation cover (fgv) derived from HR reflectances but they do not take into account the soil water availability to explain the spatial variability in LST at HR. In this context, a new method is developed to disaggregate kilometric MODIS LST at 100\u202fm resolution by including the Sentinel-1 (S-1) backscatter, which is indirectly linked to surface soil moisture, in addition to the Landsat-7 and Landsat-8 (L-7 & L-8) reflectances. The approach is tested over two different sites \u2013 an 8\u202fkm by 8\u202fkm irrigated crop area named \u201cR3\u201d and a 12\u202fkm by 12\u202fkm rainfed area named \u201cSidi Rahal\u201d in central Morocco (Marrakech) \u2013 on the seven dates when S-1, and L-7 or L-8 acquisitions coincide with a one-day precision during the 2015\u20132016 growing season. The downscaling methods are applied to the 1\u202fkm resolution MODIS-Terra LST data, and their performance is assessed by comparing the 100\u202fm disaggregated LST to Landsat LST in three cases: no disaggregation, disaggregation using Landsat fgv only, disaggregation using both Landsat fgv and S-1 backscatter. When including fgv only in the disaggregation procedure, the mean root mean square error in LST decreases from 4.20 to 3.60\u202f\u00b0C and the mean correlation coefficient (R) increases from 0.45 to 0.69 compared to the non-disaggregated case within R3. The new methodology including the S-1 backscatter as input to the disaggregation is found to be systematically more accurate on the available dates with a disaggregation mean error decreasing to 3.35\u202f\u00b0C and a mean R increasing to 0.75.", "keywords": ["LST", "2. Zero hunger", "550", "0211 other engineering and technologies", "02 engineering and technology", "15. Life on land", "01 natural sciences", "333", "6. Clean water", "MODIS/Terra", "Disaggregation", "disaggregation", "[SDE.ES] Environmental Sciences/Environment and Society", "MODIS/Terra Landsat", "MODISTerra Landsat", "Sentinel-1", "Soil moisture", "soil moisture", "[SDE.ES]Environmental Sciences/Environment and Society", "Landsat", "0105 earth and related environmental sciences"]}, "links": [{"href": "https://doi.org/10.1016/j.isprsjprs.2019.02.004"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/ISPRS%20Journal%20of%20Photogrammetry%20and%20Remote%20Sensing", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1016/j.isprsjprs.2019.02.004", "name": "item", "description": "10.1016/j.isprsjprs.2019.02.004", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1016/j.isprsjprs.2019.02.004"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2019-04-01T00:00:00Z"}}, {"id": "10.1016/j.agwat.2021.107290", "type": "Feature", "geometry": null, "properties": {"updated": "2026-09-21T16:15:15Z", "type": "Journal Article", "created": "2021-11-22", "title": "Assimilation of SMAP disaggregated soil moisture and Landsat land surface temperature to improve FAO-56 estimates of ET in semi-arid regions", "description": "Accurate estimation of evapotranspiration (ET) is of crucial importance in water science and hydrological process understanding especially in semi-arid/arid areas since ET represents more than 85% of the total water budget. FAO-56 is one of the widely used formulations to estimate the actual crop evapotranspiration (ET c act) due to its operational nature and since it represents a reasonable compromise between simplicity and accuracy. In this vein, the objective of this paper was to examine the possibility of improving ET c act estimates through remote sensing data assimilation. For this purpose, remotely sensed soil moisture (SM) and Land surface temperature (LST) data were simultaneously assimilated into FAO-dualK c. Surface SM observations were assimilated into the soil evaporation (E s) component through the soil evaporation coefficient, and LST data were assimilated into the actual crop transpiration (T c act) component through the crop stress coefficient. The LST data were used to estimate the water stress coefficient (K s) as a proxy of LST (LST proxy). The FAO-Ks was corrected by assimilating LST proxy derived from Landsat data based on the variances of predicted errors on K s estimates from FAO-56 model and thermal-derived K s. The proposed approach was tested over a semi-arid area in Morocco using first, in situ data collected during 2002-2003 and 2015-2016 wheat growth seasons over two different fields and then, remotely sensed data derived from disaggregated Soil Moisture Active Passive (SMAP) SM and Landsat-LST sensors were used. Assimilating SM data leads to an improvement of the ET c act model prediction: the root mean square error (RMSE) decreased from 0.98 to 0.65 mm/day compared to the classical FAO-dualK c using in situ SM. Moreover, assimilating both in situ SM and LST data provided more accurate results with a RMSE error of 0.55 mm/day. By using SMAP-based SM and Landsat-LST, results also improved in comparison with standard FAO and reached a RMSE of 0.73 mm/day against eddy-covariance ET c act measurements.", "keywords": ["2. Zero hunger", "0106 biological sciences", "Evapotranspiration", "550", "Evapotranspiration Data assimilation FAO-dualK c Soil moisture Land surface temperature", "0207 environmental engineering", "02 engineering and technology", "15. Life on land", "01 natural sciences", "[SDU.ENVI] Sciences of the Universe [physics]/Continental interfaces", " environment", "6. Clean water", "FAO-dualK(c)", "13. Climate action", "Data assimilation", "[SDU.STU.HY] Sciences of the Universe [physics]/Earth Sciences/Hydrology", "Soil moisture", "[SDU.STU.HY]Sciences of the Universe [physics]/Earth Sciences/Hydrology", "[SDU.ENVI]Sciences of the Universe [physics]/Continental interfaces", "environment", "Land surface temperature"]}, "links": [{"href": "https://doi.org/10.1016/j.agwat.2021.107290"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Agricultural%20Water%20Management", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1016/j.agwat.2021.107290", "name": "item", "description": "10.1016/j.agwat.2021.107290", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1016/j.agwat.2021.107290"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2022-02-01T00:00:00Z"}}, {"id": "10.1007/s13595-016-0547-4", "type": "Feature", "geometry": null, "properties": {"updated": "2026-09-21T16:15:03Z", "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.rse.2019.111627", "type": "Feature", "geometry": null, "properties": {"updated": "2026-09-21T16:16:03Z", "type": "Journal Article", "created": "2020-01-10", "title": "Irrigation retrieval from Landsat optical/thermal data integrated into a crop water balance model: A case study over winter wheat fields in a semi-arid region", "description": "Abstract   Monitoring irrigation is essential for an efficient management of water resources in arid and semi-arid regions. We propose to estimate the timing and the amount of irrigation throughout the agricultural season using optical and thermal Landsat-7/8 data. The approach is implemented in four steps: i) partitioning the Landsat land surface temperature (LST) to derive the crop water stress coefficient (Ks), ii) estimating the daily root zone soil moisture (RZSM) from the integration of Landsat-derived Ks into a crop water balance model, iii) retrieving irrigation at the Landsat pixel scale and iv) aggregating pixel-scale irrigation estimates at the crop field scale. The new irrigation retrieval method is tested over three agricultural areas during four seasons and is evaluated over five winter wheat fields under different irrigation techniques (drip, flood and no-irrigation). The model is very accurate for the seasonal accumulated amounts (R ~ 0.95 and RMSE ~ 44\u00a0mm). However, lower agreements with observed irrigations are obtained at the daily scale. To assess the performance of the irrigation retrieval method over a range of time periods, the daily predicted and observed irrigations are cumulated from 1 to 90\u00a0days. Generally, acceptable errors (R\u00a0=\u00a00.52 and RMSE\u00a0=\u00a027\u00a0mm) are obtained for irrigations cumulated over 15\u00a0days and the performance gradually improves by increasing the accumulation period, depicting a strong link to the frequency of Landsat overpasses (16\u00a0days or 8\u00a0days by combining Landsat-7 and -8). Despite the uncertainties in retrieved irrigations at daily to weekly scales, the daily RZSM and evapotranspiration simulated from the retrieved daily irrigations are estimated accurately and are very close to those estimated from actual irrigations. This research demonstrates the utility of high spatial resolution optical and thermal data for estimating irrigation and consequently for better closing the water budget over agricultural areas. We also show that significant improvements can be expected at daily to weekly time scales by reducing the revisit time of high-spatial resolution thermal data, as included in the TRISHNA future mission requirements.", "keywords": ["[SDE] Environmental Sciences", "2. Zero hunger", "550", "Evapotranspiration", "0208 environmental biotechnology", "Root-zone soil moisture", "0207 environmental engineering", "FAO-56 model", "02 engineering and technology", "15. Life on land", "630", "[SDU.ENVI] Sciences of the Universe [physics]/Continental interfaces", " environment", "6. Clean water", "[SDE]Environmental Sciences", "[SDU.STU.HY] Sciences of the Universe [physics]/Earth Sciences/Hydrology", "[SDU.STU.HY]Sciences of the Universe [physics]/Earth Sciences/Hydrology", "[SDU.ENVI]Sciences of the Universe [physics]/Continental interfaces", "environment", "Irrigation", "Landsat", "Land surface temperature"], "contacts": [{"organization": "Olivera-Guerra, Luis Enrique, Merlin, Olivier, Er-Raki, Salah,", "roles": ["creator"]}]}, "links": [{"href": "https://doi.org/10.1016/j.rse.2019.111627"}, {"rel": "related", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/Remote%20Sensing%20of%20Environment", "name": "related record", "description": "related record", "type": "application/json"}, {"rel": "self", "type": "application/geo+json", "title": "10.1016/j.rse.2019.111627", "name": "item", "description": "10.1016/j.rse.2019.111627", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main/items/10.1016/j.rse.2019.111627"}, {"rel": "collection", "type": "application/json", "title": "Collection", "name": "collection", "description": "Collection", "href": "https://repository.soilwise-he.eu/cat/collections/metadata:main"}], "time": {"date": "2020-03-01T00:00:00Z"}}], "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": 538, "numberReturned": 50, "distributedFeatures": [], "timeStamp": "2026-09-21T18:53:56.799036Z"}