Skip to main content
Powered by ShareScore

Find research datasets worth reusing

Search datasets from major research repositories and use ShareScore to quickly assess how well each record supports discovery, access, and reuse.

1,103

datasets available to search

ShareScore release 0.9.0

Reset

Dataset results

1,103 results for “moisture”

Learn how ShareScore rates datasets ↗
edi48/100

SEV-LTER Mean Variance Experiment Juniper Savanna Soil Moisture and Temperature

We designed novel field experimental infrastructure to resolve the relative importance of changes in the climate mean and variance in regulating the structure and function of dryland populations, communities, and ecosystem processes. The Mean x Variance Experiment (MVE) adds three novel elements to prior designs (Gherardi & Sala 2013) that have manipulated interannual variance in climate in the field by (i) determining interactive effects of mean and variance with a factorial design that crosses a drier mean with increased (more) variance, (ii) studying multiple dryland ecosystem types to compare their susceptibility to transition under interactive climate drivers, and (iii) adding stochasticity to our treatments to permit the antecedent effects that occur under natural climate variability. This new infrastructure enables direct experimental tests of the hypothesis that interactions between the mean and variance of precipitation will have larger ecological impacts than either the mean or variance in precipitation alone. A subset of plots have soil moisture and temperature sensors to evaluate treatment effectiveness by addressing, How do MVE manipulations alter the mean and variance in soil moisture and temperature? And, how does micro-environmental variation among plots influence how much MVE treatments alter soil moisture profiles over three soil depths? This data package includes soil moisture and temperature sensor data from the Mean x Variance Climate experiment in the Juniper Savanna ecosystem at the Sevilleta National Wildlife Refuge, Socorro, NM.

openCC0Mar 2024View details →
edi48/100

SEV-LTER Mean x Variance Experiment Pinon Juniper Soil Moisture and Temperature

We designed novel field experimental infrastructure to resolve the relative importance of changes in the climate mean and variance in regulating the structure and function of dryland populations, communities, and ecosystem processes. The Mean x Variance Experiment (MVE) adds three novel elements to prior designs (Gherardi & Sala 2013) that have manipulated interannual variance in climate in the field by (i) determining interactive effects of mean and variance with a factorial design that crosses a drier mean with increased (more) variance, (ii) studying multiple dryland ecosystem types to compare their susceptibility to transition under interactive climate drivers, and (iii) adding stochasticity to our treatments to permit the antecedent effects that occur under natural climate variability. This new infrastructure enables direct experimental tests of the hypothesis that interactions between the mean and variance of precipitation will have larger ecological impacts than either the mean or variance in precipitation alone. A subset of plots have soil moisture and temperature sensors to evaluate treatment effectiveness by addressing, How do MVE manipulations alter the mean and variance in soil moisture and temperature? And, how does micro-environmental variation among plots influence how much MVE treatments alter soil moisture profiles over three soil depths? This data package includes soil moisture and temperature sensor data from the Mean x Variance Climate experiment in the Pinon Juniper ecosystem at the Sevilleta National Wildlife Refuge, Socorro, NM.

openCC0Mar 2024View details →
zenodo44/100

Moisture Recycling over the Iberian Peninsula

<p>These data are made available as part of paper: S. J. Gonzalez-Roji, J. Saenz, J. Diaz de Argandona,&nbsp;G. Ibarra-Berastegi&nbsp;(2020) &quot;Moisture recycling over the Iberian Peninsula. The impact of 3DVAR data assimilation&quot;, published in&nbsp;<em>Atmosphere </em>(<a href="https://doi.org/10.3390/atmos11010019">https://doi.org/10.3390/atmos11010019</a>). The dataset holds selected postprocessed files that allow to reproduce all the results in the paper.</p> <p>Two WRF experiments nested in ERA-Interim were prepared. The first one (N) was configured as in standard numerical downscaling experiments. The second one (D), with the same parameterizations, included a step of 3DVAR data assimilation every 6 hours. The original experiments covered period 2010-2014 after a year of spin-up (2019). However, D was extended until the end of 2018.&nbsp;</p> <p>The following monthly averaged (accumulated for rain) nc files are included:</p> <p>- Qx/Qy: Refer to the zonal and meridional vertically integrated&nbsp;moisture fluxes for the domain.&nbsp;</p> <p>- Rain: Include the accumulated convective and large-scale precipitation output from the model.&nbsp;</p> <p>- SMOIS: Contains the soil moisture of the model runs.</p> <p>- mask: Defines the area where the recycling ratio is calculated over the Iberian Peninsula.&nbsp;</p> <p>- Rho: Holds the recycling ratio at every grid point.&nbsp;</p> <p>The -N- or -D- characters in the file names indicate whether the files come from the WRF N or WRF D experiments.&nbsp;</p> <p>&nbsp;</p>

opencc-by-4.0Nov 2019View details →
zenodo44/100

SGD-SM: Generating Seamless Global Daily AMSR2 Soil Moisture Long-term Products (2013-2019)

<p><strong>If you used our dataset, please cite our reference:</strong></p> <p><strong>Zhang, Q., Yuan, Q., Li, J., Wang, Y., Sun, F., and Zhang, L.: Generating seamless global daily AMSR2 soil moisture (SGD-SM) long-term products for the years 2013&ndash;2019, Earth Syst. Sci. Data, 13, 1385&ndash;1401, https://doi.org/10.5194/essd-13-1385-2021, 2021.</strong></p> <p><strong>Description:</strong></p> <ul> <li>A <strong>seamless global daily</strong> (<strong>SGD</strong>) AMSR2 soil moisture long-term (2013-2019) dataset is generated through the proposed model. This daily products include <strong>2553</strong> global soil moisture NetCDF4 files,&nbsp;starting from Jan 01, 2013 to Dec 31, 2019 (about <strong>20GB</strong> memory after uncompressing this zip file).</li> <li>To further validate the effectiveness of these products, three verification ways are employed as follow: 1) In-situ validation; 2) Time-series validation; And 3) simulated missing regions validation. More validation results can be viewed at&nbsp;<strong><a href="https://qzhang95.github.io/Projects/Global-Daily-Seamless-AMSR2">SGD-SM</a></strong>.</li> <li>An example Python code of extracting this dataset is also available at <strong><a href="https://github.com/qzhang95/SGD-SM">https://github.com/qzhang95/SGD-SM</a></strong>.</li> <li>Official LPRM AMSR2 Descending L3 soil moisture products indeed only have 28 daily files in May 2013 (missing data files in date May 11, May 12, and May 13).</li> <li>This soil moisture dataset is comprised of netCDF4 (*.nc) files. Therefore, users need to install <strong>netCDF4</strong> toolkit before reading the data: <pre><code class="language-python">pip install netCDF4 pip install numpy</code></pre> <p>&nbsp;</p> </li> <li>It should be noted that the original and reconstructed soil moisture data are both recorded in one NC file. User can read the original data, reconstructed data, and mask data as follows:</li> <li> <pre><code class="language-python">Data = nc.Dataset(NC_file_position) Ori_data = Data.variables['original_sm_c1'] Rec_data = Data.variables['reconstructed_sm_c1'] Ori = Ori_data[0:720, 0:1440] Rec = Rec_data[0:720, 0:1440] Mask_ori = np.ma.getmask(Ori)</code></pre> <p>&nbsp;</p> </li> </ul>

opencc-by-4.0Jan 2021View details →
zenodo44/100

Dataset of Sentinel-1 surface soil moisture time series at 1 km resolution over Southern Italy

<p>The dataset consists of a time series of the Sentinel-1 (S-1) surface soil moisture (SSM) product at 1 km spatial resolution validated in Balenzano et al. (2021 a) over the Southern Italy. The specifications of the S-1 SSM product are provided in Balenzano et al. (2021 b). The SSM time series was obtained in correspondence of the ascending (RON A146) S-1 Interferometric Wide swath (IW) acquisition dates from January 2015 to December 2018 with a temporal gap between consecutive of 6 days (when both S-1A and S-1B data are available) or 12 days. On each date (183 in total), two co-registered layers are provided: mean SSM [m3/m3] and its standard deviation [m3/m3], which provides the SSM uncertainty. The retrieval algorithm is a time series short term change detection (STCD) that is implemented in the &ldquo;Soil MOisture retrieval from multi-temporal SAR data&rdquo; (SMOSAR) code (Balenzano et al. 2013).</p>

opencc-by-4.0Dec 2020View details →
zenodo44/100

Moisture-Precipitation Couplings for Mesoscale Convective Systems in Tracking Data and Idealized Simulations

<p>Morphological properties, collocated synoptic conditions, and collocated rainfall for mesoscale convective systems in 1) the ISCCP Convective Tracking (CT) dataset with coincident data from the ERA-Interim (ERA-I) reanalysis and the Multi-Source Weighted-Ensemble Precipitation (MSWEP) product and 2) long-channel radiative-convective equilibrium (RCE) simulations in the System for Atmospheric Modeling (SAM).</p> <p><strong>ISCCP_tracking_colloc.tar.gz&nbsp;</strong>- NetCDF files by year from 2000 to 2004 inclusive including ISCCP-CT morphological properties of MCSs, a series of collocated synoptic variables from ERA-5 (including specific humidity, temperature, vertical velocity, and cloud condensate profiles), and collocated precipitation intensity and accumulation from MSWEP.</p> <p><strong>RCE_colloc_execution1.tar.gz</strong> - NetCDF files including RCE-SAM extent of MCSs (RCE_COL_cluster-sizes_*.nc), as well as collocated synoptic variables. Collocation of synoptic variables is performed for these files by extracting and averaging the variables over grid cells where the precipitation is greater than either its mean (RCE_COL_MEAN_*.nc) or its 99th percentile (RCE_COL_99_*.nc).</p> <p><strong>RCE_colloc_execution2.tar.gz</strong> - NetCDF files including RCE-SAM extent of MCSs (RCE_COL_cluster-sizes_*.nc), as well as collocated synoptic variables. Collocation of synoptic variables is performed for these files by taking either the mean (RCE_COL_MEAN_*.nc) or the 99th percentile (RCE_COL_99_*.nc) value over all grid cells within the MCS.<br><br>For the NetCDF files from RCE output, the numeric value in the file name is the corresponding sea surface temperature from 280 to 310 K.</p>

opencc-by-4.0Aug 2024View details →
zenodo44/100

NLDAS-2 Sacramento (SAC) Post-processed Daily-mean Soil Moisture Data

<p>This dataset contains North American Land Data Assimilation System Version 2 (NLDAS-2) Sacramento (SAC) post-processed daily-mean soil moisture data from 1993 to 2017 at four layers: 0-10 cm, 10-40 cm, 40-100 cm, and 0-100 cm. Original post-processing of the hourly data was conducted at National Oceanic and Atmospheric Administration (NOAA) by Dr. Youlong Xia and then later provided to the NOAA Physical Sciences Laboratory (PSL). &nbsp; Daily-mean data were generated at PSL from the hourly data by averaging data from 8 times each day (0,3,6,9,12,15,18,21 Z). &nbsp;The data are written in netCDF format and provided in annual netCDF files.</p>

opencc-by-4.0Oct 2023View details →
zenodo44/100

IODP Expedition 391 Moisture and Density

Moisture and density (MAD) data were acquired on ~10 mL sediment or rock samples by measuring three out of four material parameters: wet (saturated) mass, wet volume, dry mass, and/or dry volume after 24 h drying in a convection oven at 105 degrees C. From the moisture and volume measurements, the following phase relationships are calculated: wet and dry water content, wet bulk density, dry bulk density, grain density, porosity, and void ratio. The combination of measurements is defined by the submethod chosen: A, B, C, or D. Wet (A, B, or C) and dry (A, B, C, or D) mass is determined using motion-compensated balances. Wet volume is determined either by helium pycnometry (A) or by the sample's geometric dimensions using calipers (A or D). Dry volume (C or D) is measured by helium pycnometry. Submethods A and B are not recommended by IODP. Submethod C is suitable for saturated materials such as fine-grained sediments. Submethod D is suitable for unsaturated porous material such as certain limestones and basalts.

opencc-by-4.0Oct 2023View details →
zenodo44/100

IODP Expedition 397T Moisture and Density

Moisture and density (MAD) data were acquired on ~10 mL sediment or rock samples by measuring three out of four material parameters: wet (saturated) mass, wet volume, dry mass, and/or dry volume after 24 h drying in a convection oven at 105 degrees C. From the moisture and volume measurements, the following phase relationships are calculated: wet and dry water content, wet bulk density, dry bulk density, grain density, porosity, and void ratio. The combination of measurements is defined by the submethod chosen: A, B, C, or D. Wet (A, B, or C) and dry (A, B, C, or D) mass is determined using motion-compensated balances. Wet volume is determined either by helium pycnometry (A) or by the sample's geometric dimensions using calipers (A or D). Dry volume (C or D) is measured by helium pycnometry. Submethods A and B are not recommended by IODP. Submethod C is suitable for saturated materials such as fine-grained sediments. Submethod D is suitable for unsaturated porous material such as certain limestones and basalts.

opencc-by-4.0Oct 2023View details →
zenodo44/100

IODP Expedition 383 Moisture and Density

Moisture and density (MAD) data were acquired on ~10 mL sediment or rock samples by measuring three out of four material parameters: wet (saturated) mass, wet volume, dry mass, and/or dry volume after 24 h drying in a convection oven at 105 degrees C. From the moisture and volume measurements, the following phase relationships are calculated: wet and dry water content, wet bulk density, dry bulk density, grain density, porosity, and void ratio. The combination of measurements is defined by the submethod chosen: A, B, C, or D. Wet (A, B, or C) and dry (A, B, C, or D) mass is determined using motion-compensated balances. Wet volume is determined either by helium pycnometry (A) or by the sample's geometric dimensions using calipers (A or D). Dry volume (C or D) is measured by helium pycnometry. Submethods A and B are not recommended by IODP. Submethod C is suitable for saturated materials such as fine-grained sediments. Submethod D is suitable for unsaturated porous material such as certain limestones and basalts.

opencc-by-4.0Jul 2021View details →
zenodo44/100

BST/NOAA PSL Level 2 UAS Soil Moisture, Digital Elevation, Normalized Difference Vegetative Index, and Surface Temperature for SPLASH

<p>This dataset contains uncrewed aircraft systems (UAS) high-resolution data of soil moisture at the 0-5 cm soil depth, normalized difference vegetation index (NDVI), surface temperature, and digital elevation for the Study of Precipitation, the Lower Atmosphere, and Surface for Hydrology (SPLASH) campaign sponsored by the National Oceanic and Atmospheric Administration (NOAA).&nbsp; These data were collected near Avery Picnic (38.972425 degrees N,106.996855 degrees W) and Kettle Ponds (38.942005 degrees N,106.973006 degrees W) in the East River Watershed in Colorado from a series of flights starting on June 1st, 2022 and ending October 18th, 2023.&nbsp; Soil moisture measurements were retrieved using the Lobe Differencing Correlation Radiometer (LDCR) which is a L-Band (1-2 GHz) microwave radiometer and was flown on the E2 and S2 aerial platforms operated by Black Swift Technologies LLC.&nbsp;&nbsp;</p> <p>&nbsp;</p> <p>Each zip file contains a set of four Level 2 NetCDF files which provides the highest spatial resolution available for each of four products for a given flight location.&nbsp; With the Level 2 data, each flight location and variable can have different spatial resolutions depending on the sensor type, retrieval algorithm, and flight altitude.&nbsp; The file name convention for the zip files is as follows.</p> <p>&nbsp;</p> <p>uas_L2_yyyymmdd_hhmmss_vX.X.zip&nbsp;</p> <p>where</p> <p>L2 = Level 2 data&nbsp;</p> <p>yyyymmdd = year,month,day</p> <p>hhmmss = hour,minute,second</p> <p>vX.X = version number</p> <p>Time is the flight start time in UTC.</p> <p>&nbsp;</p> <p>The NetCDF file format contained in the zip files has a similar format to the zip files with convention</p> <p>&nbsp;</p> <p>uas_&lt;var&gt;_L2_yyyymmdd_hhmmss.nc&nbsp;</p> <p>where</p> <p>&lt;var&gt; = vsm, dem, ndvi, or stmp</p> <p>vsm = volumetric soil moisture</p> <p>dem = digital elevation</p> <p>ndvi = normalized difference vegetation index</p> <p>stmp = surface temperature</p> <p>&nbsp;</p> <p>Note that each flight location using the E2 aerial platform required two flights so starting flight times for the soil moisture NetCDF files are different from the other three products.</p> <p><strong>November 2023 update</strong>: Version 2.0 added flight data from 2023. Version 2.0 includes an updated calibration of the soil moisture retrieval that has been applied to 2023 data, and a mask was applied to the soil moisture retrieval over water surfaces for both 2022 and 2023 data.</p> <p><strong>December 2023 update</strong>: Version 2.1 updated soil moisture data with a wet bias in v2.0 for flights #2 (17:40:35 UTC) and #3 (19:24:45 UTC) on July 27, 2022.</p>

opencc-by-4.0Feb 2023View details →
zenodo44/100

iRON_Soil Moisture_Calibrated

<p>**<strong>Error has been found in Glenwood Springs station data. The 8in depth soil moisture sensor was mislabeled as the 40in depth sensor and vice versa for data sets uploaded prior to February 2024. Datasets uploaded after Feb 22, 2024 have the sensor labels corrected&nbsp;<em>for all dates going back to installation.</em>**</strong><br><br>***<strong>An error has been caught in time codes. The time codes currently read GMT-5:00. The CORRECT time code is GMT-7:00 for all datasets</strong>. <strong>Files with FullRecord in the name are in correct, UTC time codes</strong>***</p> <p>These data are the complete data set from installation through March 15, 2018 for AGCI's interactive Roaring Fork Observation Network (iRON). The network consists of 9 stations in the Southern Rockies (Colorado, USA). Descriptions of soil type and site locations can be found at: www.agci.org/iron/stations</p> <p><strong>Please note:</strong>&nbsp;Measurements taken for rain are recorded via tipping bucket rain gauge and may not be accurate for winter precipitation events (e.g. snow). Error readings are represented by -888.88, -138.25, or&nbsp;-162.469&nbsp;represents a sensor error. Absent data is represented by N/A.</p> <p>Sensors used for soil moisture readings are Decagon EC-5 Dielectric probe (5cm/2in depth); Decagon 10-HS (20cm/8in; 50cm/20in depths). All other equipment is Onset, and the logger device is the RX3000 model. Data collection is generally set to every 20 minutes (most stations) or every hour (Independence Pass station), but maintenance resets, etc. may occasionally have contributed to other collection intervals, e.g. every 5 minutes. Conversely, on occasions of logger failure, there may be full days of data absent.</p> <p>Snow data are available for Northstar Transition Zone and Independence Pass by request.</p> <p>&nbsp;</p> <p><strong>Updated calibrations (V2) are anticipated in the summer of 2018 for the following stations: Glassier Ranch (3), Glenwood Springs (5), &nbsp;Northstar Transition Zone (7),&nbsp;</strong><strong>Spring Valley (8)</strong></p> <p>Some instruments have been replaced over the life of a station. In 2015, all original U30 logger boxes were replaced with the RX3000 model.&nbsp;&nbsp;For complete metadata or records of instrumentation, please contact project advisor E. Osenga at eliseo at agci.org.</p> <p><strong>**Glassier Ranch site is a wetland and the soils are often completely saturated (leading to sensor difficulties in taking accurate readings) much of the year.</strong></p>

opencc-by-4.0Feb 2024View details →
zenodo44/100

IODP Expedition 378 Moisture and Density

Moisture and density (MAD) data were acquired on ~10 mL sediment or rock samples by measuring three out of four material parameters: wet (saturated) mass, wet volume, dry mass, and/or dry volume after 24 h drying in a convection oven at 105 degrees C. From the moisture and volume measurements, the following phase relationships are calculated: wet and dry water content, wet bulk density, dry bulk density, grain density, porosity, and void ratio. The combination of measurements is defined by the submethod chosen: A, B, C, or D. Wet (A, B, or C) and dry (A, B, C, or D) mass is determined using motion-compensated balances. Wet volume is determined either by helium pycnometry (A) or by the sample's geometric dimensions using calipers (A or D). Dry volume (C or D) is measured by helium pycnometry. Submethods A and B are not recommended by IODP. Submethod C is suitable for saturated materials such as fine-grained sediments. Submethod D is suitable for unsaturated porous material such as certain limestones and basalts.

opencc-by-4.0Feb 2022View details →
zenodo44/100

Streamflow, precipitation, soil moisture, and ephemeral stream nitrogen data for St. Croix, USVI

<p>These datasets were collected from two ephemeral stream sites within the Salt River watershed on St. Croix, USVI using high frequency (15-minute) sensors. The stream nitrogen data were collected via grab samples and were analyzed with a benchtop spectrophotometer.&nbsp; The data were collected to better understand the influence of precipitation and soil moisture conditions on stream nitrogen concentrations.&nbsp;</p>

opencc-by-4.0Apr 2024View details →
zenodo44/100

Soil grid data for 3 agricultural fields in Italy (Soil Moisture, soil organic carbon)

<p><span>Soil data collected in an agricultural area with annual crops in Italy (west-central Lombardia Po Valley, province of Pavia). The data refers to soil properties of 320 soil samples for Soil Moisture and &nbsp;120 for SOC, collected in the topsoil (around 5-10 cm), considering a regular sampling grid, within three agricultural field with different crops (spring-summer cycle) and soils type, Rice-Loamy, Sorghum-Sandy and, Maize-Clay, in a period (before the seeding of the crops), &nbsp;when the soil was bare, in the framework of the EJP Steropes project.</span></p> <p><span>The aim of the collected dataset was to be able to analyse the influence of soil moisture in SOC (WP2 of the STEROPES project) prediction models from remote sensing.</span></p> <p><span>Data in the form of shape file (one shapefile for each agricultural field, for oth Soil Moisture and SOC), and pictures of the soil surface in .jpg format.&nbsp;</span></p>

opencc-by-4.0Nov 2024View details →
zenodo44/100

IODP Expedition 367 Moisture and Density

Moisture and density (MAD) data were acquired on ~10 mL sediment or rock samples by measuring three out of four material parameters: wet (saturated) mass, wet volume, dry mass, and/or dry volume after 24 h drying in a convection oven at 105 degrees C. From the moisture and volume measurements, the following phase relationships are calculated: wet and dry water content, wet bulk density, dry bulk density, grain density, porosity, and void ratio. The combination of measurements is defined by the submethod chosen: A, B, C, or D. Wet (A, B, or C) and dry (A, B, C, or D) mass is determined using motion-compensated balances. Wet volume is determined either by helium pycnometry (A) or by the sample's geometric dimensions using calipers (A or D). Dry volume (C or D) is measured by helium pycnometry. Submethods A and B are not recommended by IODP. Submethod C is suitable for saturated materials such as fine-grained sediments. Submethod D is suitable for unsaturated porous material such as certain limestones and basalts.

opencc-by-4.0Sep 2018View details →
zenodo44/100

A Deep Neural Network Based SMAP Soil Moisture Product

<p>The soil moisture datasets here are based on a&nbsp;deep neural network (DNN) that utilizes the merits of a suite of existing satellite and reanalysis products to produce a new SM product with minimum (maximum) bias (correlation) -- using NASA&rsquo;s Soil Moisture Active Passive (SMAP) data and ERA5 reanalysis.&nbsp;The benchmark of the network is a bias-adjusted SM with maximum correlation with in situ&nbsp;data over each land-cover type. The bias is adjusted to the product that exhibits a minimum bias over each land-cover type.&nbsp;Consistent with the laws of L-band microwave propagation in soil and canopy, the input variables include polarized SMAP brightness temperatures, incidence angles, vegetation scattering albedo, surface roughness parameter, surface water fraction, effective soil temperatures, bulk density, clay fraction, and vegetation optical depth from the normalized difference vegetation index (NDVI) climatology. The DNN is trained and validated using two years (04/2015--03/2017) of global data and deployed for assessment of its performance from 04/2017 to 03/2021. The testing results against in situ&nbsp;measurements demonstrate that the DNN outputs typically exhibit improved error quality metrics over most land cover types and climate regimes and can properly capture SM temporal dynamics, beyond each SMAP product across regional to continental scales.</p>

opencc-by-4.0Mar 2022View details →
zenodo44/100

High resolution soil moisture and soil temperature data during Hurricane Florence, 2018, over the Carolina region (U.S.)

<p>We set the study domain over the U.S. east coast to cover the Carolinas and the regions that were affected by Hurricane Florence. Therefore, the selected domain covered the area between -86&ordm; to -75&ordm; longitude and 30&ordm; to 40&ordm; latitude. We should note that Hurricane Florence made landfall in the Carolinas on September 14, 2018, as a Category 1 storm.&nbsp; Hurricane reports indicate that &ldquo;Hurricane Florence made landfall near Wrightsville Beach, North Carolina at 7:15 AM EDT (1115 UTC) on September 14 with estimated maximum winds of 90 mph (150 km/h), and a minimum central pressure estimate of 958 millibars. Winds gusts topping 105 mph (169 km/h) were reported in the Outer Banks of North Carolina.&rdquo; Rainfall from Florence, as per the initial reports, suggest possible new records for North Carolina (breaking the record set by Hurricane Floyd in 1999).</p> <p>we used the latest development of the high-resolution land surface assimilation system (HRLDAS) that was retrieved from the Github repository (<a href="https://github.com/NCAR/hrldas-release">https://github.com/NCAR/hrldas-release</a>). The model was coupled to the Noah land surface modeling system and used the multi-layer soil model, complex canopy resistance&nbsp;with the Penman method for calculating evapotranspiration, and frozen ground physics&nbsp;for the simulations.</p> <p>&nbsp;The atmospheric forcing including 2-meter air temperature, shortwave, and long-wave radiation, 2-meter wind speed, 2-meter specific humidity, and surface pressure data was obtained from the NCEP-DOE Reanalysis 2 (available from <a href="https://psl.noaa.gov/data/gridded/data.ncep.reanalysis2.html">psl.noaa.gov/data/gridded/data.ncep.reanalysis2.html</a>). For the precipitation, we used the high-resolution GCIP/EOP surface precipitation NCEP/EMC gridded data (Stage IV) with 4 km of grid spacing. All the forcing data have been retrieved at an hourly frequency from 2016 to 2019. The model was configured with the initial soil moisture and soil temperature conditions at 4 depths (0-10, 10-40, 40-100, 100-200 cm), retrieved from the NCEP data. Other initialization fields including skin temperature and water equivalent snow depth were retrieved from NCEP. The NCEP reanalysis data, however, does not provide &ldquo;plant canopy surface water&rdquo; data which is required as an initialization field. This data was retrieved from the NLDAS dataset. The first two years of the model run (2016 and 2017) were considered as the spin-up, and the outcome during 2018 was used for further analysis and public release.</p>

opencc-by-4.0Jan 2022View details →
zenodo44/100

Changes in soil moisture and temperature modify the toxicity of sodium selenite and sodium selenate for Folsomia candida (Collembola) Willem 1902

<p>Effects of sublethal concentrations of selenite and selenate were tested on parameters of mortality, reproduction, growth, and oxidative stress parameters of <em>Folsomia candida</em> (Collembola) in case of different climate scenarios. The standard 20&deg;C and the increased 25&deg;C temperatures were combined with three different soil moisture conditions: drought, standard water content and increased water content.</p>

opencc-by-4.0May 2022View details →
zenodo44/100

GPM_API - Global Hourly Soil Moisture from GPM IMERG Data - 2019

<p><strong># GPM_API 2019</strong></p> <p>GPM_API data root: <a href="https://zenodo.org/record/6489998">https://zenodo.org/record/6489998</a></p> <p><strong># Related article:</strong></p> <p>Ramsauer, T., &amp; Marzahn, P. (2023). Global Soil Moisture Estimation based on GPM IMERG Data using a Site Specific Adjusted Antecedent Precipitation Index. <em>International Journal of Remote Sensing</em>, 44(2), 542-566.</p> <p>Article: <a href="https://doi.org/10.1080/01431161.2022.2162351">https://doi.org/10.1080/01431161.2022.2162351</a></p> <p>Free PDF: <a href="https://www.tandfonline.com/eprint/6VHQ7JCCJXSPAMG3PVIG/full?target=10.1080/01431161.2022.2162351">www.tandfonline.com/eprint/6VHQ7JCCJXSPAMG3PVIG/full?target=10.1080/01431161.2022.2162351</a></p>

opencc-by-4.0Apr 2022View details →

ScienceDex guides

Understand access before you commit

These curated guides explain access requirements, typical timelines, costs, and reuse considerations for widely used research datasets.

Compare curated datasets

Allen Brain Atlas

Allen Brain Atlas is an Allen Institute collection of brain map atlases, datasets, APIs, and analysis tools covering mouse, human, and non-human primate brain resources.

allen-brain-atlas
neuroscienceopenDocumentation, web resources, and API references are available online.
Last verified 2026-04-30Open record

Annotated Behaviour and Observability Dataset (ABODe)

ABODe is a University of Edinburgh DataShare dataset for behavior classification in group-housed mice using home-cage video, identities, bounding boxes, ground-plate positions, and annotator labels.

abode-home-cage
behavioral-neuroscienceopenThe DataShare record exposes download links for annotations, documentation, license text, and the zipped per-snippet data directory.
Last verified 2026-04-30Open record

DANDI Archive for NWB datasets

DANDI is a BRAIN Initiative archive for publishing and sharing neurophysiology data, including electrophysiology, optophysiology, and behavioral data packaged as NWB and related standards.

dandi-nwb
electrophysiologyopenPublished Dandiset metadata and archive endpoints are available through the production DANDI API.
Last verified 2026-04-30Open record

International Brain Laboratory public data

The International Brain Laboratory public data releases expose standardized mouse decision-making experiments, including Neuropixels recordings, widefield calcium imaging, behavior, and session metadata accessed through the ONE API.

ibl
behavioral-neuroscienceopenPublic sessions can be searched and loaded from the IBL public data server through ONE.
Last verified 2026-04-29Open record

OpenNeuro

OpenNeuro is a free, open platform for sharing neuroimaging datasets, with public search, dataset pages, and download paths for web, S3, DataLad, and the OpenNeuro CLI.

openneuro
neuroscienceopenPublished datasets are available on demand over the internet.
Last verified 2026-04-29Open record