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.

71

datasets available to search

ShareScore release 0.9.0

Reset

Dataset results

71 results for “opacity”

Learn how ShareScore rates datasets ↗
zenodo44/100

Updated Low-Temperature Gas Opacities with ÆSOPUS 2.0

<p>This repository includes&nbsp;pre-computed tables of low-temperature gas opacities, in the range 3.2&lt;log(T/K)&lt;4.5, computed with the &AElig;SOPUS 2.0 code under the assumption of thermodynamic equilibrium,&nbsp;for a series of widely used chemical compositions. All details are provided in a companion paper on The Astrophysical Journal.</p>

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

Reproduction package for "A strong H− opacity signal in the near-infrared emission spectrum of the ultra-hot Jupiter KELT-9b"

<p>This is a basic reproduction package for the paper "A strong H− opacity signal</p><p>in the near-infrared emission spectrum of the ultra-hot Jupiter KELT-9b"</p><p>by [Jacobs, B.; Désert, J. -M.; Pino, L. et al. (2022)](https://doi.org/10.1051/0004-6361/202244533).</p><p>&nbsp;</p><p>Abstract:</p><p>We present the analysis of a spectroscopic secondary eclipse of the hottest transiting exoplanet detected to date, KELT-9b, obtained with the Wide Field Camera 3 aboard the&nbsp;<i>Hubble</i>&nbsp;Space Telescope. We complement these data with literature information on stellar pulsations and&nbsp;<i>Spitzer</i>/Infrared Array Camera and Transiting Exoplanet Survey Satellite eclipse depths of this target to obtain a broadband thermal emission spectrum. Our extracted spectrum exhibits a clear turnoff at 1.4 μm. This points to H−&nbsp;bound-free opacities shaping the spectrum. To interpret the spectrum, we perform grid retrievals of self-consistent 1D equilibrium chemistry forward models, varying the composition and energy budget. The model with solar metallicity and C/O ratio provides a poor fit because the H−&nbsp;signal is stronger than expected, requiring an excess of electrons. This pushes our retrievals toward high atmospheric metallicities ([M/H] = 1.98−0.21+0.19) and a C/O ratio that is subsolar by 2.4<i>σ</i>. We question the viability of forming such a high-metallicity planet, and therefore provide other scenarios to increase the electron density in this atmosphere. We also look at an alternative model in which we quench TiO and VO. This fit results in an atmosphere with a slightly subsolar metallicity and subsolar C/O ratio ([M/H] = −0.22−0.13+0.17, log (C/O) = −0.34−0.34+0.19). However, the required TiO abundances are disputed by recent high-resolution measurements of the same planet.</p>

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

Resampled Opacity Database for PICASO

<p>Wavelength range of the opacities go from 0.3-15 microns. Opacities are resampled to R=15,000 from an original R=1e6 line by line calculation performed by Richard Freedman, Ehsan Gharib-Nezhad, and Roxana Lupu.&nbsp;<strong>This does not mean that these opacities are suitable for data at R=15k!!!! </strong>Instead, resampled opacities have to be convolved to data that are at a resolution of&nbsp;to 100x less than the original data. <a href="https://natashabatalha.github.io/picaso/notebooks/10_ResamplingOpacities.html">This tutorial shows the effects of under-sampling opacities.&nbsp;</a><br><br>TLDR: In general, this opacity dataset are suitable for data that is no higher than R=3000, if using the 60k database and R=100 if using the 20k database. It is not suitable for high resolution cross correlation studies.&nbsp;&nbsp;</p> <p><strong>Want higher sampling?&nbsp;</strong>Download version 2: <a href="https://zenodo.org/records/6928501">https://zenodo.org/record/3759675#.YuN4E-zMLvU</a>&nbsp;</p> <p><strong>Difference between this and V1?</strong> Addition of SO2, and updated CH4 (HITEMP as described in Mukherjee et al. 2024 https://ui.adsabs.harvard.edu/abs/2024ApJ...963...73M/abstract )&nbsp;</p> <p><strong>Using PICASO to download data</strong></p> <p>PICASO get_data function can help you make sense of all of these files: https://natashabatalha.github.io/picaso/installation.html#autodownloads&nbsp;</p> <p><strong>"But my data is less then R=3000, is it possible to get a lower sampling?"</strong><br>Yes!</p> <pre><code>import picaso.justdoit as jdi #will get everything as is opa = jdi.opannection(filename_db = "all_opacities_0.6_6_R60000.db") #will compute spectra for only a subset of wavelength opa = jdi.opannection(filename_db = "all_opacities_0.6_6_R60000.db", wave_ranage=[0.6,1]) #will compute spectra for a smaller resolution sampling opa = jdi.opannection(filename_db = "all_opacities_0.6_6_R60000.db", resample=2) #resample =2 decreases the sampling by a factor of 2 (e.g. R=60000 -&gt; R=30000) </code></pre> <p><strong>Using PICASO to Query the data</strong></p> <p>A <a href="https://natashabatalha.github.io/picaso/notebooks/10_QueryOpacities.html">full tutorial on querying the database</a> is available in the PICASO read the docs.&nbsp;Below is a brief example:</p> <pre><code>import picaso.opacity_factory as opa db_filename = 'all_opacities_0.6_6_R60000.db' molecules, pt_pairs = opa.molecular_avail(db_filename) print(molecules) ['AlH', 'C2H2', 'C2H4', 'C2H6', 'CH4', 'CO', 'CO2', 'CaH', 'CrH', 'Cs', 'Fe', 'FeH', 'H2', 'H2O', 'H2S', 'H3+', 'HCN', 'K', 'Li', 'LiCl', 'LiF', 'LiH', 'MgH', 'N2', 'N2O', 'NH3', 'Na', 'O2', 'O3', 'OCS', 'PH3', 'Rb', 'SO2', 'SiO', 'TiH', 'TiO', 'VO'] pt_pairs[0:10] [(1, 1e-06, 75.0), (2, 3e-06, 75.0), (3, 1e-05, 75.0), (4, 3e-05, 75.0), (5, 0.0001, 75.0), (6, 0.0003, 75.0), (7, 0.001, 75.0), (8, 0.003, 75.0), (9, 0.01, 75.0), (10, 0.03, 75.0)]</code></pre> <p>As you can see from the pt_pairs, our grid is computed on a specific pressure-temperature grid that has a total of 1460 points.&nbsp;</p> <p><em><strong>NOTE:</strong>&nbsp;A full table of references and citations is currently being compiled for publication with the <a href="https://zenodo.org/record/1309035#.XofEzS-ZN3k">Sonora Grid</a>&nbsp;(Marley+2020). </em></p> <p><strong>PICASO<em>&nbsp;</em>Citation Tools</strong></p> <p>PICASO can help you get out individual citations. If you do not want to look at code:</p> <ul> <li><a href="https://github.com/natashabatalha/picaso/blob/master/reference/references/reference_list.json">you can find bibid's here for each molecule</a></li> <li><a href="https://github.com/natashabatalha/picaso/blob/master/reference/references/references.bib">corresponding PICASO bib file here&nbsp;</a></li> </ul> <p><a href="https://natashabatalha.github.io/picaso/notebooks/References.html">If you do want to look at code you can check out this tutorial.&nbsp;</a>(code snippet below)</p> <pre><code>import picaso.references as pref refs = pref.References() opa_latex, bibdb = refs.get_opa(molecules=['H2O','CO2']) print(opa_latex) \begin{table*} \centering \begin{tabular}{c|c} H2O &amp; \citet{Polyansky2018H2O} \\ CO2 &amp; \citet{HUANG2014reliable} \\ \end{tabular} \caption{Line lists used to make PICASO Opacities} \label{tab:opas} \end{table*} pref.create_bib(bibdb, 'molecule.bib')#creates bibtex file</code></pre> <p>&nbsp;</p>

opencc-by-4.0Apr 2020View details →
zenodo40/100

Dataset of "Vertical-Wind-Induced Cloud Opacity Variation in Low Latitudes Simulated by a Venus GCM"

<p>This dataset contains the GrADS data of Venus&nbsp;GCM results used for figures in the paper&nbsp;&quot;Vertical-Wind-Induced Cloud Opacity Variation in Low Latitudes Simulated by a Venus GCM&quot; by H. Karyu et al. (2022).&nbsp;</p> <p>The file &#39;dataset_day1&#39; contains the three-dimensional (X: longitude, Y: latitude, Z:altitude (km)) data of temperature (unit: K), zonal wind velocity (unit: m/s), meridional wind velocity (unit: m/s), vertical wind velocity (unit: m/s), geopotential height (unit: m), cloud mass mixing ratio of&nbsp;mode 1, 2, 2&#39;, 3 particles, mass mixing ratio of sulfuric acid, air density (unit: kg/m<sup>3</sup>), cloud mass mixing ratio changing rate of mode 1, 2, 2&#39;, 3 particles (unit: 1/s),&nbsp;in snapshots of every 3 hours&nbsp;for the periods of the first&nbsp;Venusian days (117 Earth days).&nbsp;The file &#39;dataset_day2&#39; contains the same for the second Venusian days.</p> <p>The file &#39;cloudtau-wc&#39; contains three-dimensional (X: longitude, Y: latitude, Z:altitude (km)) data of column-integrated optical depth (COD) of mode 1, 2, 2&#39; 3 particles and column mass abundance of&nbsp;mode 1, 2, 2&#39; 3 particles (unit: kg/m<sup>2</sup>), in snapshots of every 3 hours&nbsp;for the periods of 2 Venusian days (234&nbsp;Earth days). The COD at each altitude corresponds to the integrated value from the top of the atmosphere, and the column mass abundance of each altitude corresponds to the integrated value from the bottom of the atmosphere.&nbsp; The COD is calculated with the cloud mass&nbsp;mixing ratio stored in the file &lsquo;dataset&rsquo; and extinction efficiency shown in the paper.</p> <p>The file &#39;stf-wc&#39; contains two-dimensional (Y: latitude, Z:altitude (km)) data of mass stream function (unit: kg/s) and residual mass stream function (unit: kg/s),&nbsp;in snapshots of every 3 hours&nbsp;for the periods of 2 Venusian days (234&nbsp;Earth days). One should refer to Holton (2004) for the definition of the (residual) mass stream function.</p> <p>The files &#39;dataset_comp&#39; and &#39;taudataset_comp&#39; are composite mean data of &#39;dataset&#39; and &#39;cloudtau-wc&#39;, respectively,&nbsp;in snapshots of every 3 hours for the period of 30 days starting from day 86 of the simulation (Earth day).&nbsp;The composite mean is calculated by averaging atmospheric parameters with respect to the frame moving at the rotation period of 7.1-day.</p> <p>The file &lsquo;scripts&rsquo; contains FORTRAN scripts and some additional&nbsp;files to derive the atmospheric parameters stored in &#39;cloudtau-wc&rsquo;, &#39;stf-wc&rsquo;, &#39;dataset_comp&#39; and &lsquo;taudataset_comp&#39; from the GCM output file &lsquo;dataset&rsquo;. Please refer to the &lsquo;README.txt&rsquo; contained in &lsquo;scripts&rsquo; for how to use FORTRAN scripts, required input files and their output.</p> <p>The .tar.xz&nbsp;files can be extracted in Linux with &#39;tar Jxvf&#39; command, and .grd and .ctl files with the same stem are generated.</p> <p>&nbsp;</p>

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

Optical constants of CO and CO2 in the IR ans THz ranges and code to calculate the opacity of icy interstellar grains

<p>Data set of optical constants of CO and CO2 in the IR and THz ranges (0.3&ndash;12.0 THz). These data are used to compute the opacity of coated materials in an astrophysical context in our accepted article for publication in A&amp;A, 2022.</p> <p>The following link provides access to the &quot;qabs&quot; open access code and its source to calculate the opacity using the optical constants. The code computes Qabs, Qsca, and Qext from the refractive index or the dielectric constant using Mie&#39;s theory:</p> <p>https://bitbucket.org/tgrassi/compute_qabs/src/master/</p> <p>The link redirects you to an open-access environment where to execute the code properly.</p>

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

AESOPUS 2.0: Low-Temperature Opacities with Solid Grains

<p>In this repository we include the optical constants of all dust species listed in Table 1, &nbsp;as &nbsp;well as Rosseland mean opacity tables for widely used scaled-solar chemical compositions (GS98, C11, AAG21, MBS22) with &nbsp;metallicities encompassing the range 0 &lt;= Z &lt;= 0.3, and several &nbsp;hydrogen abundance values.</p> <p>Additional opacity tables with different grain sizes, porosities, and shapes can be computed and uploaded in the same repository upon user request.</p> <p>All of the details can be found in a companion paper published in The Astrophysical Journal.</p>

opencc-by-4.0Aug 2023View details →
zenodo36/100

Large 3D Line Sets for Opacity-Based Rendering

<p>Four different large, space-filling 3D line sets used in the paper &quot;A Comparison of Rendering Techniques for 3D Line Sets with Transparency&quot; by Kern et al., 2020&quot; in the context of rendering 3D line sets with transparency. Each line set consists of a myriad&nbsp;of&nbsp;streamlines (10K - 400K trajectories) generated from physical simulations. Note that the data sets were&nbsp;originally used to conduct benchmark tests using different CPU and GPU line rendering algorithms and different transparency settings for each line set.&nbsp;</p>

opencc-by-4.0Feb 2020View details →
zenodo36/100

MESA model files, scripts, and opacity tables for: 'An Expanded Set of Los Alamos OPLIB Tables in MESA: Type-1 Rosseland-mean Opacities and Solar Models'

<p>MESA model files and plotting scripts, and opacity tables as seen in 'An Expanded Set of Los Alamos OPLIB Tables in MESA: Type-1 Rosseland-mean Opacities and Solar Models'.&nbsp;<br><a href="https://iopscience.iop.org/article/10.3847/1538-4357/ad4355" target="_blank" rel="noopener noreferrer">https://iopscience.iop.org/article/10.3847/1538-4357/ad4355</a><br><br>Models were run using MESA version r22.11.1, with fixes to the bugs documented at https://docs.mesastar.org/en/release-r24.03.1/known_bugs.html#r22-11-1.</p> <p>We use mesasdk-x86_64-linux-22.6.1.tar.gz &nbsp;sdk available at http://user.astro.wisc.edu/~townsend/resource/download/mesasdk<br><br><strong>OPLIB type-1 opacity tables are now available here, in MESA release version r24.08.1+, and at http://aphysics2.lanl.gov/opacity/lanl.</strong><br><br><strong>The splined tables are on a uniform grid whereas the raw tables are not. The splined tables also replaces nan edge values (at high temperatures) using interpolation. Modify the python spline script if you'd like to spline the opacities onto a different size grid.</strong>&nbsp;<br><br>*(In future solar modeling work, we recommend users use 'rmid' (cell centered radius in Rsun) instead of 'radius' (cell edge/face radius in Rsun) as all structural variables are typically defined at the cell center. Look into $MESA_DIR/star/defaults/profile_columns.list and ensure you are always consistently using cell centered or cell-faced variables with each other.)*</p>

opencc-by-4.0Mar 2024View details →
zenodo36/100

Repacked ExoMol Opacity Line Lists

<p>Repacked ExoMol Opacity Line Lists using the REPACK code (<a href="https://ui.adsabs.harvard.edu/abs/2017ApJ...850...32C">Cubillos 2017, ApJ, 850</a>)</p> <p>Version 3:</p> <ul> <li>Updated C2H4, CH4, NH3, VO line lists.</li> <li>Replaced CO2 Exomol linelist with Ames list.</li> <li>Added H2S, OCS, KOH, SiH4 line lists.</li> </ul> <p>See also part 2 for the PH3 line list: <a href="https://zenodo.org/records/17167393">https://zenodo.org/records/17167393</a></p>

opencc-by-4.0May 2021View details →
zenodo36/100

Opacities for atoms and molecules relevant to the spectra of hot rocky planets

<p>This dataset contains opacities for atoms and molecules that are relevant to the sector of hot rocky planets, such as magma ocean planets, post-giant impact atmospheres, or planets in ultra-short period orbits. These species can arise above a magma ocean with a composition specific to the continental crust or bulk silicate earth. We do not include opacities for major species that are not specific to hot rocky planet atmospheres, such as water, methane, carbon dioxide, ammonia, etc., as these can be found elsewhere, for example in datasets related to brown dwarf and hot Jupiter atmospheres.&nbsp;</p> <p>Most of the species included in this dataset can be seen in the attached plot, hot_spectra.pdf, which shows a secondary eclipse model of a lava planet and the contributions of individual species to this spectrum. The references for the line lists used to generate these opacities can be found in the file reference_table.pdf.</p> <p>Each *.zip file contains a set of 1060 opacity layers in ASCII format, each identified with the temperature and pressure it corresponds to. Each layer file contains a header showing the layer number, the temperature (in K), and pressure (in mbar). The data consists of to columns: wavelength in microns and opacity in cm<sup>2</sup>/molecule. The wavelength grid goes from 0.4 to 50 microns. A list of all the layers calculated for each molecule is given in the file layer_list.</p> <p><em>Resources supporting this work were provided by the NASA High-End Computing (HEC) Program through the NASA Advanced Supercomputing (NAS) Division at Ames Research Center.</em></p>

opencc-by-4.0Apr 2022View details →
zenodo36/100

Dust formation and mass loss around intermediate-mass AGB stars with initial metallicity Zini ≤ 10-4 in the early Universe - I. Effect of surface opacity on stellar evolution and the dust-driven wind

<p>MESA inlists associated with&nbsp;<a href="https://ui.adsabs.harvard.edu/?#abs/2017MNRAS.466.1709T">Dust formation and mass loss around intermediate-mass AGB stars with initial metallicity Zini&nbsp;&le; 10-4&nbsp;in the early Universe - I. Effect of surface opacity on stellar evolution and the dust-driven wind</a></p>

opencc-by-4.0Mar 2019View details →
zenodo36/100

Slip Opacity and Fast Osmotic Transport of Hydrophobes at Aqueous Interfaces with Two-Dimensional Materials, part 4/4

<h2>Supplementary data for paper&nbsp;"Slip Opacity and Fast Osmotic Transport of Hydrophobes at Aqueous Interfaces with Two-Dimensional Materials"&nbsp;</h2> <p>Maria Bilichenko, Marcella Iannuzzi, and Gabriele Tocci, ACS Nano, 2024, DOI: 10.1021/acsnano.4c05118</p> <h3>Contents</h3> <p>Trajectories of positions and forces &nbsp;with corresponding input files of systems with 550 water molecules on 2D materials:</p> <ul> <li>MoS2/water</li> <li>MoS2/MoS2/water</li> <li>graphene/MoS2/water</li> <li>MoS2/graphene/water</li> <li>MoS2/hBN/water</li> <li>hBN/MoS2/water</li> <li>graphene/water</li> <li>hBN/water</li> </ul>

opencc-by-4.0Jun 2024View details →
zenodo36/100

Slip Opacity and Fast Osmotic Transport of Hydrophobes at Aqueous Interfaces with Two-Dimensional Materials, part 3/4

<h2>Supplementary data for paper "Slip Opacity and Fast Osmotic Transport of Hydrophobes at Aqueous Interfaces with Two-Dimensional Materials"&nbsp;</h2> <p>Maria Bilichenko, Marcella Iannuzzi, and Gabriele Tocci, ACS Nano, 2024, DOI: 10.1021/acsnano.4c05118</p> <h3>Contents</h3> <p>Trajectories of positions and forces &nbsp;with corresponding input files of systems with 550 water molecules on 2D materials:</p> <ul> <li>graphene/graphene/water</li> <li>hBN/hBN/water</li> <li>graphene/hBN/water</li> <li>hBN/graphene/water</li> </ul>

opencc-by-4.0Jun 2024View details →
zenodo36/100

Slip Opacity and Fast Osmotic Transport of Hydrophobes at Aqueous Interfaces with Two-Dimensional Materials, part 1/4

<h2>Supplementary data for paper "Slip Opacity and Fast Osmotic Transport of Hydrophobes at Aqueous Interfaces with Two-Dimensional Materials"&nbsp;</h2> <p>Maria Bilichenko, Marcella Iannuzzi, and Gabriele Tocci, ACS Nano, 2024, DOI: 10.1021/acsnano.4c05118</p> <h3>Contents</h3> <p>Trajectories of positions and forces &nbsp;with corresponding input files of systems with 120 water molecules confined between 2D materials:</p> <ul> <li>graphene/water/graphene</li> <li>hBN/water/hBN</li> <li>graphene/graphene/water/graphene/graphene</li> <li>hBN/hBN/water/hBN/hBN</li> <li>graphene/hBN/water/hBN/graphene</li> <li>hBN/graphene/water/graphene/hBN</li> </ul> <p>&nbsp;</p>

opencc-by-4.0Jun 2024View details →
zenodo36/100

Slip Opacity and Fast Osmotic Transport of Hydrophobes at Aqueous Interfaces with Two-Dimensional Materials, part 2/4

<h2>Supplementary data for paper "Slip Opacity and Fast Osmotic Transport of Hydrophobes at Aqueous Interfaces with Two-Dimensional Materials"&nbsp;</h2> <p>Maria Bilichenko, Marcella Iannuzzi, and Gabriele Tocci, ACS Nano, 2024, DOI: 10.1021/acsnano.4c05118</p> <h3>Contents</h3> <p>Trajectories of positions and forces &nbsp;with corresponding input files of systems with 120 water molecules confined between 2D materials:</p> <ul> <li>MoS2/water/MoS2</li> <li>MoS2/MoS2/water/MoS2/MoS2</li> <li>graphene/MoS2/water/MoS2/graphene</li> <li>MoS2/graphene/water/graphene/MoS2</li> </ul>

opencc-by-4.0Jun 2024View details →
ClinicalTrials.gov36/100

A Registry for Patients With Multifocal Ground Glass Opacities (GGOs)

ClinicalTrials.gov study NCT03802981. IPD Sharing: YES. Countries: 2. Publications: 0.

controlledIPD-YESFeb 2026View details →
zenodo32/100

Monochromatic opacity data from the Opacity Project (OP) for use with MESA.

<p>Monochromatic opacity data from the Opacity Project (OP) for use with MESA.</p> <p>The&nbsp;OP_mono&nbsp;opacities use data and code from the OP website as modified by Haili Hu. Since the file is large, it is not included in the standard mesa download.</p> <p>If you use these opacities, you should cite Seaton (2005): https://ui.adsabs.harvard.edu/#abs/2005MNRAS.362L&hellip;1S</p>

opencc-by-4.0Dec 2010View details →
zenodo32/100

Radiative Opacities for (Exo)Planet Atmospheres

<p>Radiative opacity data used to explore the existence of stable radiative layers in the molecular hydrogen envelope of Jupiter and Saturn. The opacity data ranges from 1e-1 - 1e5 bar and 100 - 5000K.</p>

opencc-by-4.0Oct 2024View details →
zenodo32/100

High resolution opacities for H2/He atmospheres

<p>This set of molecular and atomic opacities has been built based on the same opacity sources used for calculating the correlated-k coefficients in the following repositories:</p> <p>10.5281/zenodo.5590997 (11 windows)</p> <p>10.5281/zenodo.5590995 (30 windows)</p> <p>10.5281/zenodo.5590986 (180 windows)</p> <p>10.5281/zenodo.5590989 (196 windows)</p> <p>These opacities can be used to generate high resolution spectra for the atmospheric structures computed with the&nbsp;correlated-k coefficients&nbsp;above.</p> <p>The set includes C2H2, C2H4, C2H6, CH4, CO, CO2, CrH, Fe, FeH, H2, H3+, H2O, H2S, HCN, LiCl, LiF, LiH, MgH, N2, NH3, OCS, PH3, SiO, TiO, and VO, in addition to alkali metals (Li, Na, K, Rb, Cs). The opacities are calculated for a grid of 1460 pressure-temperature points, from10^&minus;6 to 3000 bar and from 75 to 4000 K, listed in the file 1460_layer_list. Each *.zip file contains one opacity file for each pressure-temperature layer, with the species&rsquo;&nbsp;name, the pressure, and the temperature given in the filename. The opacity is given in units of cm^2/molecule. For completeness, each *.zip file also contains a file named wavelengths.txt, listing the wavelengths corresponding to each opacity point, in units of microns. All the opacities are calculated on the same wavelength grid.&nbsp;</p> <p>The references for the line lists used in these opacity calculations can be found in the file Opacity_references_2021.pdf. Please include these references, as well as the reference to this Zenodo repository when publishing your paper.&nbsp;</p> <p><em>Resources supporting this work were provided by the NASA High-End Computing (HEC) Program through the NASA Advanced Supercomputing (NAS) Division at Ames Research Center.</em></p>

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

The Impending Opacity Challenge in Exoplanet Atmospheric Characterization

<p>Cross-section required for running retrieval with https://github.com/disruptiveplanets/tierra.</p> <p>These cross-sections were generated using&nbsp;https://github.com/disruptiveplanets/TierraCrossSection</p> <p>&nbsp;</p> <p>&nbsp;</p>

opencc-bySep 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