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.

210

datasets available to search

ShareScore release 0.9.0

Reset

Dataset results

210 results for “field observations”

Learn how ShareScore rates datasets ↗
zenodo48/100

Field line resonances observed by EMMA

<p>This data set contains the fundamental Field Line Resonance (FLR) frequencies estimated by spectral analysis of magnetic signals detected by four station pairs (SUW-BEL, TAR-BRZ, OUJ-HAN, MUO-PEL) of the European quasi-Meridional Magnetometer Array (EMMA), during the periods:</p> <p>2012/09/22-2012/12/01<br> 2013/03/13-2013/03/27<br> 2013/05/25-2013/06/11<br> 2014/02/14-2014/03/09<br> 2015/03/13-2015/03/31<br> 2015/06/18-2015/06/27<br> 2017/05/26-2017/06/02</p> <p>The original geomagnetic field data are available from <a href="https://zenodo.org/record/3387216">https://zenodo.org/record/3387216</a>, and information on the method used to derive the FLR frequencies are described by <a href="https://www.annalsofgeophysics.eu/index.php/annals/article/view/7751">Del Corpo et al., (2019)</a>.</p> <p>The assumptions made to derive the FLR frequencies could be not valid during nighttime, so the estimated frequencies could be unreliable. They are included in this data set to stimulate further investigation and validation. To facilitate the individuation of trusted frequencies, information about the sunrise and sunset time of the midpoint between the station pair and of the conjugate point is provided. The data set includes also the cross-phase spectra from which the FLR frequencies are derived.</p> <p>&nbsp;</p>

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

LOFAR Observation (MS file) from the Boötes Field and the Toothbrush cluster used in the paper: "Looking beyond pixels with continuous-space EstimAtion of Point sources"

<p>The dataset contains the measurement sets (MS file) of the LOFAR observations from the Boötes field and the Toothbrush cluster. The dataset was used in the experiments of the paper: </p> <blockquote> <p>LEAP: Looking beyond pixels with continuous-spaceEstimAtion of Point sources</p> <p>Pan, H., Simeoni, M., Hurley, P., Blu, T. &amp; Vetterli, M. In: Astronomy &amp; Astrophysics, in press, 2017</p> </blockquote> <p>The data was provided as a collaboration between ASTRON and IBM within the DOME project. The data was acquired for a LOFAR sky survey of the Boötes field:</p> <blockquote> <p>LOFAR 150-MHz observations of the Boötes field: Catalogue and Source Counts</p> <p>Williams, W. L. , Hardcastle, M. J.  &amp; 33 others In: Monthly Notices of the Royal Astronomical Society. 460, 3, p. 2385–2412</p> </blockquote> <p>and the Toothbrush cluster (RX J0603.3+4214):</p> <blockquote> <p>Simulating the toothbrush: evidence for a triple merger of galaxy clusters</p> <p>Brüggen, M., van Weeren, R. J., Röttgering, H. J. A. In: Monthly Notices of the Royal Astronomical Society: Letters. 425, 1, p. L76--L80</p> </blockquote> <p>In case of questions concerning the measurement set, please contact the original authors for details.</p> <p> </p> <p>We have also included the three catalogs used in the experiments, which are converted from their original FITS table to Numpy arrays:</p> <ul> <li>skycatalog.npz is the catalog of the Boötes field: https://academic.oup.com/mnras/article-lookup/doi/10.1093/mnras/stw1056</li> <li>TGSSADR1_7sigma_catalog.npz is the TGSS ADR1 source catalog: http://tgssadr.strw.leidenuniv.nl/catalogs/TGSSADR1_7sigma_catalog.fits</li> <li>NVSS_CATALOG.npz is the NRAO/VLA Sky Survey: ftp://nvss.cv.nrao.edu/pub/nvss/CATALOG/</li> </ul>

opencc-by-4.0Nov 2017View details →
zenodo48/100

Data and simulation files for "Constraints on the intergalactic magnetic field using Fermi-LAT and H.E.S.S. blazar observations"

<p>In this repository, we provide data files in connection to our paper &ldquo;Constraints on the intergalactic magnetic field using Fermi-LAT and H.E.S.S. blazar observations&rdquo; accepted for publication in the Astrophysical Journals and soon available on Arxiv.</p> <p>In the publication, we perform a joint analysis of observations of five blazars with the Fermi Large Area Telescope (LAT) and the High Energy Stereoscopic System (H.E.S.S.) in order to search for signatures of a gamma-ray halo around these sources. The non-detection of such extended emission allows us to place lower limits on the intergalactic magnetic field (IGMF).</p> <p>In this repository, we provide our data analysis products of both H.E.S.S. and LAT data for the case when a template for the halo flux is <em>not</em> included in the data. Furthermore, we provide files that contain the log likelihood profiles as functions of the IGMF in case the halo emission <em>is</em> included. Lastly, we also provide our template files for the halo, generated with <a href="https://crpropa.github.io/CRPropa3/">CRPropa 3</a>.</p> <p>Below, we provide minimal code examples to demonstrate how to read in the specific files.</p> <p><strong>H.E.S.S. observational results</strong></p> <p>We provide the best-fit spectral parameters as well as the flux points (spectral energy distribution; SED) for the H.E.S.S. observations of the five blazars under consideration. The corresponding files are:</p> <ul> <li>hess_fit_result_*.fits which contain the best-fit parameters,</li> <li>hess_sed_file_*.fits which contain the flux points.</li> </ul> <p>In the file names above, the &#39;*&#39; should be replaced with a the corresponding source name, e.g. 1ES0229+200. The files can be read in using astropy:</p> <pre><code class="language-python">from astropy.table import Table src = "1ES0229+200" best_fit_pars = Table.read("hess_fit_result_1ES0229+200.fits") sed = Table.read("hess_sed_file_1ES0229+200.fits")</code></pre> <p><strong>Fermi observational results</strong></p> <p>For Fermi-LAT, we provide the SED files as well as the best-fit models for the region of interests. These files are called:</p> <ul> <li>fermi_avg_file_*.npy provides the best-fit ROI model</li> <li>fermi_sed_file_*.npy provides the SED.</li> </ul> <p>Both of these files are generated with <a href="https://fermipy.readthedocs.io/en/latest/">fermipy</a> and can be read-in the following way:</p> <pre><code class="language-python">import numpy as np # first a little helper function since the # fermipy analysis was run under python 2.7 def convert(data): if isinstance(data, bytes): return data.decode('ascii') if isinstance(data, dict): return dict(map(convert, data.items())) if isinstance(data, tuple): return map(convert, data) return data # Load the ROI fit roi_fit_file = "fermi_avg_file_1ES0229+200.npy" roi_fit = np.load(avg_file, allow_pickle=True, encoding="latin1").flat[0] # if you want to inspect the dictionaries in python 3, you need to run the convert function. # For example, to inspect the central source of the ROI # you would first get the source name src_fgl_name = roi_fit['config']['selection']['target'] # and then you can get the dictionary for the central source src_dict = convert(roi_fit['sources'])[src_fgl_name] # Load the SED sed_file = "fermi_sed_file_1ES0229+200.npy" sed = np.load(sed_file, allow_pickle=True, encoding='latin1').flat[0] # to plot the SED, you can use the SEDPlotter class from fermipy from fermipy.plotting import SEDPlotter SEDPlotter.plot_sed(sed)</code></pre> <p><strong>Likelihood profiles</strong></p> <p>The likelihood profiles as function of the IGMF strengths are provided in the files logl_profile_*_*yr.npz. Their are provided for all five sources and all tested blazar activity times of 10, 10<sup>4</sup>, and 10<sup>7</sup> years. They can be read in with the following code snippet:</p> <pre><code class="language-python">import numpy as np logl = dict(np.load("logl_profile_1ES0229+200_1.0e+07yr.npz")) b_fields = np.array([1.00000e-16, 3.16228e-16, 1.00000e-15, 3.16228e-15, 1.00000e-14, 3.16228e-14, 1.00000e-13]) for k, v in logl.items(): print(k,v)</code></pre> <p>As the print command shows, the python dictionary contains 3 entries: &quot;fermi_only&quot; are the likelihood values for the Fermi data as a function of magnetic field, &quot;combined&quot; are the likelihood values from Fermi and H.E.S.S. combined, and &quot;ps&quot; is the likelihood value of the Fit without halo to the H.E.S.S. data only.</p> <p><strong>Halo simulations</strong></p> <p>Lastly, we also provide the output simulations files from CRPropa. For details how the simulations were run, please consult the accompanying paper, in particular Section 3.1 and Appendix C. For each source redshift, a tar file is provided, which in itself contains 7 hdf5 files with the simulation outputs for each tested magnetic field strength. The name of the files is casc_file_z*.tar.gz. After unpacking the files, they can be read in with your favorite hdf5 library; in python you would need to install h5py. We recommend that you check out <a href="https://github.com/me-manu/simCRpropa">this github repository</a> which provides an advanced python wrapper for CRPropa and functions to read in the files. In particular, you can use <a href="https://github.com/me-manu/simCRpropa/blob/b3f39b5c77c6b97d19f7db387427d857690444d2/simCRpropa/cascmaps.py#L28">this function</a> to read in the files. It also writes a new hdf5 file with parallel transport applied. The written data is also returned together with the configuration dictionary.</p> <pre><code class="language-python">from simCRpropa.cascmaps import stack_results_lso data, config = stack_results_lso("casc_file_z0.140_B1.00e-16.hdf5", "casc_file_z0.140_B1.00e-16_theta_obs0.0.hdf5" )</code></pre> <p>You can provide arbitrary angles between the observer and the jet angles using the theta_obs keyword. Note, however, that the simulations used a jet opening angle of 3 degrees and going beyond that value will return zero halo photons.</p>

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

Observed runoff time series from a green roof field campaign in Hannover-Herrenhausen

<p>This dataset includes a csv file comprising observed runoff time series from a green roof field campaign, which was conducted by Prof. Dr.-Ing. Hans-Joachim Liesecke. The csv file provides runoff from 11 green roof variants (10 was excluded, since it has a different design). Rows include daily runoff totals (collected each morning, excluding weekends). Please refer to this article, which describes the dataset in more detail:&nbsp;</p> <p><strong>Iffland, R., F&ouml;rster, K., Westerholt, D., Pesci, M. H., &amp; L&ouml;sken, G.&nbsp;Robust vegetation parameterization for green roofs in EPA SWMM. Hydrology.&nbsp;</strong><a href="https://doi.org/10.3390/hydrology8010012">https://doi.org/10.3390/hydrology8010012</a></p> <p>The field campaign involved a total of 11&nbsp;superstructures in triple repetition. In the csv file, each column represents&nbsp;average values computed out of three independent measurements (in mm*d<sup>-1</sup>)</p> <p>The individual test plots were 2&nbsp;m x 2&nbsp;m with a slope of 2&nbsp;% and a drainage opening in the middle of the lowest point of the slope. The outflowing water was collected in non-weighable lysimeters (rain barrels) that were read and emptied at 8&nbsp;A.M. every day. On weekends, readings were taken the following workday.</p> <p>&nbsp;</p>

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

The state of the lower Volta Delta Beaches in Ghana from field observations.

<p>The continuous collection of data is important, particularly for developing models for local applications. It is also important to collect in situ data in this observation scarce region to improve our understanding of coastal evolution. The data presented here were planned and collected along a 90 km coastline. The experiment holds significant scientific value as it marks the first comprehensive data-gathering effort along the Volta Delta within the Bight of Benin, West Africa. Several projects, decision-makers, and scientists will make use of this data to calibrate their models. The study was executed in 2023, and it provides a comprehensive description of the morphodynamical characteristics of the study area and identifies the factors influencing the changes. The data include nearshore and riverine bathymetry, topography, sediment grain size distribution, and waves in the study area. The research experiment provides a foundation for future extensive and long-term investigations along the LVD and promotes localized investigations.&nbsp;</p>

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

Observations of Diurnal Coastal-Trapped Waves with a Thermocline-Intensified Velocity Field

<p>Repository for the data presented in the&nbsp;JPO 2019&nbsp;article: &quot;Observations of Diurnal Coastal-Trapped Waves with a Thermocline-Intensified Velocity Field&quot;. Observations were compared against output from Ken Brink&#39;s model.&nbsp;The model is available from:&nbsp;<a href="https://darchive.mblwhoilibrary.org/handle/1912/10527">https://darchive.mblwhoilibrary.org/handle/1912/10527</a>.</p>

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

Neural Network and objective analysis reconstruction of 3D Mediterranean physical fields from surface satellite and in situ observations at 1/24 deg

<p>Daily Mediterranean 3D fields of temperature, salinity and geostrophic current at 1/24&deg; of resolution, up to 150m-depth and from 2016 to mid 2022, obtained through a 3 steps approach: (1) Temperature and salinity 3D fields have been first estimated by a machine learning approach by using mediterranean reanalysis outputs (https://doi.org/10.25423/CMCC/MEDSEA_MULTIYEAR_PHY_006_004_E3R) together with satellite observations, (2) a combination of this first step with in situ observations through an Optimal interpolation to remove part of large scale biases, (3) the computation of geostrophic currents using the thermal wind equation. This work has been funded by the European Space Agency through the 4DMED-SEA project [ESA contract No. 4000141547/23/I-DT].</p>

opencc-by-4.0Sep 2024View details →
zenodo40/100

Supporting data for Wu et al. "Penetrating Electric Field Simulated by the MAGE and Observed by ICON" paper

This dataset contains the necessary data supporting the paper titled "Penetrating Electric Field Simulated by the MAGE and Observed by ICON", to be submitted by Wu et al., 2022. The dataset includes the Multiscale Atmosphere-Geospace Environment (MAGE) model simulation for two intervals to support 2020 Sep 26 9-10 UT and 2020 Sep 24 5-6 UT. The data contain neutral wind, ion drift, and electron density output.

opencc-by-4.0Dec 2021View details →
zenodo40/100

Dataset for publication: Investigation of Hydrostatic Imbalance with Field Observations

<p>Here is the data set for figure 8 of the publication "Investigation of Hydrostatic Imbalance with Field Observations" by Sun et al., 2023</p><p>Data collected from the Halo Doppler lidars (DL) and Eddy-Covariance station (EC) (EC south, EC-S) of the Land-Atmisphere Feedback Observatory LAFO at University of Hohenheim, Stuttgart, Germany (lafo.uni-hohenheim.de, Späth et al., 2023, doi: 10.5194/gi-12-25-2023). The data cover the temporal period of 23 August 2022 as presented in figure 8 in Sun et al., 2023, doi: ***.</p>

opencc-by-4.0Nov 2023View details →
zenodo40/100

Global estimates of marine gross primary production based on machine‐learning upscaling of field observations

<p>4 variables (excluding dimension variables):</p> <p>double GPP_LD_MLD_RF[Lon,Lat,Month]&nbsp; &nbsp;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; units: mmol O2 m-2 d-1<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; fill value: NaN<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; long_name: Monthly mixed-layer integration of gross primary production trained from the<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; dataset determined by the light-dark bottle incubation using Random Forest<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; algorithm<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; coordinates: [Longitude, Latitude Month]</p> <p>double GPP_LD_ZEU_RF[Lon,Lat,Month]&nbsp; &nbsp;</p> <p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; units: mmol O2 m-2 d-1<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; fill value: NaN<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; long_name: Monthly euphotic-zone integration of gross primary production trained from<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; the dataset determined by the light-dark bottle incubation using Random<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Forest algorithm<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; coordinates: [Longitude, Latitude Month]</p> <p>double GPP_Triple_MLD_RF[Lon,Lat,Month]&nbsp; &nbsp;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; units: mmol mmol O2 m-2 d-1<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; fillvalue: NaN<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; long_name: Monthly mixed-layer integration of gross primary production trained from<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; the dataset determined by the triple isotopes of dissolved oxygen using<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Random Forest algorithm<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; coordinates: [Longitude, Latitude Month]<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br> double GPP_Triple_ZEU_RF[Lon,Lat,Month]&nbsp; &nbsp;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; units: mmol O2 m-2 d-1<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; fill value: NaN<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; long_name: Monthly euphotic-zone integration of gross primary production trained from<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; the dataset determined by the triple isotopes of dissolved oxygen using<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Random Forest algorithm</p> <p>3 dimensions:</p> <p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Lon&nbsp; Size:181<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; units: degree_north<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; long_name: Longitude</p> <p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Lat&nbsp; Size:91<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; units: degree_east<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; long_name: Latitude</p> <p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Month&nbsp; Size:13<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; units: Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec, Annuual_mean<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; long_name: Month</p> <p><br> Author: Yibin Huang &amp; Nicolas Cassar<br> Correspond: nicolas.cassar@duke.edu<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br> Request_for_citation: If you use these data in publications or presentations, please cite: Huang,<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Y., Nicholson, D., Huang, B., &amp; Cassar, N. (2021). Global estimates of<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; marine gross primary production based on machine‐learning upscaling of<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; field observations. Global Biogeochemical Cycles, 35, e2020GB006718.<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; https://doi.org/10.1029/2020GB006718<br> &nbsp;<br> Creation date: Dec/6th/2021</p>

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

Table of Individual MMT Hectochelle Observations of the Triangulum II Field

<p>Complete table of observations of the Triangulum II dwarf galaxy from MMT Hectochelle used in&nbsp;Buttry et. al 2022</p>

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

◂Fig. 6 Gynoecial development, fruit and seedling of C. crenata %yellow frames), C. cf. grandicalyx %blue frames) and C. sinensis %pink frames; A–F light microscopy, G–K stereo microscopy of endocarp, mesocarp removed; L–O field images; TS in horizontal orientation). A, B TS of anthetic flower %note two to three abortive ovules and strongly stained, peripheral tissue). C, D TS of anthetic flower %note two to three abortive ovules and lignifying portions of prospective mesocarp). E Young fruit %note developing endocarp and flashily pink portions of the mesocarp). F TS of postanthetic flower %note three abortive ovules and lignifying portions of prospective mesocarp). G TS of endocarp, with three developed embryos removed %note scanty endosperm). H Endocarp. J TS of endocarp. K Endocarp. L Immature fruits. M Mature fruits. N Seedlings %note short hypocotyl and long petioles of cotyledons). O Seedlings %note long hypocotyl and short petioles of cotyledons; image taken from cultivated plant, accession number 2012–0005, in the Botanical Garden Munich) %LS, longisection; TS, transverse section; ao, abortive ovule; cot, cotyledon; db, dorsal bundle; c, calyx; ec, endocarp; ens, endosperm; ex, exocarp; fr, fruit; h, hypocotyl; int, integument; lb, lateral bundle; mc, mesocarp; o, ovule; pet, petiolus; sty, style; ut, peripheral tissue; vs, ventral slit) in Observations on flower and fruit anatomy in dioecious species of Cordia (Cordiaceae, Boraginales) with evolutionary interpretations

◂Fig. 6 Gynoecial development, fruit and seedling of C. crenata %yellow frames), C. cf. grandicalyx %blue frames) and C. sinensis %pink frames; A–F light microscopy, G–K stereo microscopy of endocarp, mesocarp removed; L–O field images; TS in horizontal orientation). A, B TS of anthetic flower %note two to three abortive ovules and strongly stained, peripheral tissue). C, D TS of anthetic flower %note two to three abortive ovules and lignifying portions of prospective mesocarp). E Young fruit %note developing endocarp and flashily pink portions of the mesocarp). F TS of postanthetic flower %note three abortive ovules and lignifying portions of prospective mesocarp). G TS of endocarp, with three developed embryos removed %note scanty endosperm). H Endocarp. J TS of endocarp. K Endocarp. L Immature fruits. M Mature fruits. N Seedlings %note short hypocotyl and long petioles of cotyledons). O Seedlings %note long hypocotyl and short petioles of cotyledons; image taken from cultivated plant, accession number 2012–0005, in the Botanical Garden Munich) %LS, longisection; TS, transverse section; ao, abortive ovule; cot, cotyledon; db, dorsal bundle; c, calyx; ec, endocarp; ens, endosperm; ex, exocarp; fr, fruit; h, hypocotyl; int, integument; lb, lateral bundle; mc, mesocarp; o, ovule; pet, petiolus; sty, style; ut, peripheral tissue; vs, ventral slit)

opencc-by-4.0Aug 2022View details →
zenodo40/100

Fig. 4 in Field and laboratory biological observations on the uncommon Cyrtocoris egeris (Heteroptera: Pentatomidae: Cyrtocorinae)

Fig. 4. Feeding damage of Cyrtocoris egeris on a stem of the Brazilian orchid tree, Bauhinia forficata (note thickening of the stem, outer bark cracked with a rugose appearance and accompanied by hatched eggs).

opencc-by-4.0Dec 2016View details →
zenodo40/100

Fig. 3 in Field and laboratory biological observations on the uncommon Cyrtocoris egeris (Heteroptera: Pentatomidae: Cyrtocorinae)

Fig. 3. Mimetic behavior of Cyrtocoris egeris on a stem of the Brazilian orchid tree, Bauhinia forficata (note the similarity of the bug scutellar process with the plant spine).

opencc-by-4.0Dec 2016View details →
zenodo40/100

Fig. 2 in Field and laboratory biological observations on the uncommon Cyrtocoris egeris (Heteroptera: Pentatomidae: Cyrtocorinae)

Fig. 2. (A) Egg masses, composed of hatched and unhatched eggs, of Cyrtocoris egeris on a stem of the Brazilian orchid tree, Bauhinia forficata, found in the field; (B) nymphs around the egg shells (chorions) and unhatched eggs (pinkish) shown in the upper part and hatched eggs in the lower part.

opencc-by-4.0Dec 2016View details →
zenodo40/100

Fig. 1 in Field and laboratory biological observations on the uncommon Cyrtocoris egeris (Heteroptera: Pentatomidae: Cyrtocorinae)

Fig. 1. Gregarious behavior of nymphs and adults of Cyrtocoris egeris on stems of the Brazilian orchid tree, Bauhinia forficata, observed at Francisco Beltrão Co., Paraná State, Brazil, in 2015 and 2016; (A) large colony of late instar nymphs and adults; (B) small colony of mostly late instar nymphs.

opencc-by-4.0Dec 2016View details →
zenodo40/100

Fig. 11 in Introgression at the emerging secondary contact zone of magpie Pica pica subspecies (Aves: Corvidae): integrating data on nuclear and mitochondrial markers, vocalizations, and field observations

Fig. 11 Rates of chatter calls in different magpie populations and individuals. a Each mark represents average chattering rate for a single bird from five populations indicated by colours. Figures are numbers for the outliers: 1, 2—jankowskii from the mixed population of Argun'; 3, 4, 5—hybrid birds from the hybridogeneous population of Kerulen. b Each mark represents average chattering rate for a series of chatterings of one selected individual representing jankowskii, leucoptera, and hybrid birds, respectively. Green mark—pair #6 jankowskii from Vladivostok; gray—pair #43 leucoptera from Tsasuchei, Transbaikalia; blue—pair #24 hybrids from Kerulen, eastern Mongolia. X-axis—number of elements per second in a total series of chattering; Y-axis— number of elements per second in a series of 5 elements of chattering

opencc-by-4.0Jul 2022View details →
zenodo40/100

Fig. 12 in Introgression at the emerging secondary contact zone of magpie Pica pica subspecies (Aves: Corvidae): integrating data on nuclear and mitochondrial markers, vocalizations, and field observations

Fig. 12 Violin plot diagram of the chatter call speed (elements per second) of Eurasian magpie populations across regions. X-axis presents a set of populations; Y-axis—elements per second. Box outlines the interquantile range (25%, 75%), whiskers represent range without outliers, central bar is the median, red dot is the mean, and figure shape is the probability density. The brackets on the top denote statistically significant pairwise differences (GamesHowell test, p&lt;0.05)

opencc-by-4.0Jul 2022View details →
zenodo40/100

Fig. 9 in Introgression at the emerging secondary contact zone of magpie Pica pica subspecies (Aves: Corvidae): integrating data on nuclear and mitochondrial markers, vocalizations, and field observations

Fig. 9 Population genetic structure based on unlinked SNP markers. Scatter plots of principal component analysis (PCA) show individual variation in components one and two (a) and three and four (b). The amount of variance explained by each PC is shown in parentheses. I—leucoptera,

opencc-by-4.0Jul 2022View details →
zenodo40/100

Fig. 7 in Introgression at the emerging secondary contact zone of magpie Pica pica subspecies (Aves: Corvidae): integrating data on nuclear and mitochondrial markers, vocalizations, and field observations

Fig. 7 Bayesian skyline plots (BSPs) for effective female population sizes for haplogroups, subspecies, and populations of Pica pica. a Comparison of 6 haplogroups, depicted in the network Fig. 4. b Comparison of 6 subspecies. c Comparison of 4 populations of P. p. jankowskii. d Comparison of 3 populations of P. p. leucoptera.

opencc-by-4.0Jul 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