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.

137

datasets available to search

ShareScore release 0.9.0

Reset

Dataset results

137 results for “development strategy”

Learn how ShareScore rates datasets ↗
dryad36/100

From pup to predator; generalized hidden Markov models reveal rapid development of movement strategies in a naïve long‐lived vertebrate

<p>Rapid development of a successful foraging strategy is critical for juvenile survival, especially for naïve animals that receive no parental guidance. However, this process is poorly understood for many species. Although observation of early-life movements is increasingly possible with miniaturisation of animalborne telemetry devices, analytical limitations remain. Here, we tracked 29 recently-weaned, grey seal <em>Halichoerus grypus</em> pups from colonies in two geographically distinct regions of the United Kingdom. We analysed at-sea movements of pups throughout their initial months of nutritional independence to investigate the ontogeny of behaviour-specific (foraging and travelling) movement patterns. Using generalized hidden Markov models (HMMs), we extended the conventional HMM framework to account for temporal changes in putative foraging and travelling movement characteristics, and investigate the effects of intrinsic (sex) and extrinsic (environment) factors on this process. Putative foraging behaviour became more tortuous with time, and travelling became faster and more directed, suggesting a reduction in search scale and an increase in travel efficiency as pups shifted from exploration to an adult-like repeatable foraging strategy. Sex differences in movement characteristics were evident from colony departure, but sex-specific activity budgets were only detected in one region. We show that sex-specific behavioural strategies emerge before sexual size dimorphism in grey seals, and suggest that this phenomenon may occur in other long-lived species. Our results also indicate that environmental variation may affect the emergence of sex-specific foraging behaviour, highlighting the need to consider interacting intrinsic and extrinsic factors in shaping movement strategies of long-lived vertebrates. Moreover, comparing the behavioural state estimations to those of a conventional HMM (no variation in statespecific movement parameters) revealed differences in the amount and location of foraging activity, with implications for spatial conservation management. Overlooking intrinsic and extrinsic variation in movement processes could distort our understanding of foraging ecology, population dynamics, and conservation requirements.</p>

opencc-zeroJan 2020View details →
zenodo36/100

Data and Software of "Development of a Geometric Modeling Strategy for the Generation of Representative Unit Cells in 2D Braids"

<h1><strong>Id: Data of following publication</strong></h1> <p>title = "Development of a Geometric Modeling Strategy for the Generation of Representative Unit Cells in 2D Braids",<br>journal = "<span>Composite Structures</span>",<br>volume =" 348",<br>pages = "118503",<br>year = "2025",<br>doi = "<a href="https://doi.org/10.1016/j.compstruct.2024.118503" target="_blank" rel="noopener">10.1016/j.compstruct.2024.118503</a>",<br>author = "Jos&eacute; Rothkegel, Benjamin Renson, Michael Bruyneel, Ludovic Noels"</p> <p>Data doi on 10.5281/zenodo.10829042</p> <h1>pyRVE</h1> <h2><em>Python Code for Geometrical Generator for Braided Composites RVE</em></h2> <p>pyRVE is a code written in <em>Python</em> using the <em>GMSH API</em> that generates the Representative Unit Cell (RUC) of braided composites. It allows the generation of the RUC of triaxial braided for <em>Diamond</em> and <em>Regular</em> patterns.</p> <h2>Requirements</h2> <p>To run, it requires:</p> <ul> <li>The GMSH Python API, which must be built with OpenCascade support. <ul> <li>Choose a local installation directory; <code>CMAKE_INSTALL_PREFIX=$HOME/local/gmsh</code>, and <code>GMSHPY_INSTALL_DIRECTORY=$HOME/local/gmsh</code> e.g.;</li> <li>Make that directory part of your <code>export PYTHONPATH=$HOME/local/gmsh/lib:$PYTHONPATH</code>.</li> <li>After compiling use <code>make install</code>.</li> </ul> </li> <li>The CM3 app dG3D if the final RVE homogenized solution is needed (<a href="https://gitlab.onelab.info/cm3/cm3Libraries">https://gitlab.onelab.info/cm3/cm3Libraries</a>).</li> <li>Make sure that the latest version of OpenCascade (OCCT) is used. Current used version in occt-V7.8.0.</li> </ul> <h2>Usage</h2> <h3>File Structure</h3> <p>A typical run case must have a file structure, where:</p> <ul> <li><code>brd</code>: the files <code>.brd</code> and <code>.brep</code> are located here. The <code>.brd</code> is a backup of the <code>braidClass</code> instance used in the model saved using <code>pickle</code>, the <code>.brep</code> is the Boundary Representation file that can be opened with <em>GMSH</em>.</li> <li><code>csv</code>: the <code>.csv</code> file saved here is the initial output of the code. It contains the actually used dimensions and the final cover factor of the braid.</li> <li><code>data</code>: It contains <code>.csv</code> files with the material properties and the dimensions of the tows. The original model dimensions are read from here.</li> <li><code>dir</code>: In the case of running the RVE homogenization, the directions of the tow fibers are stored here. They are saved for post processing.</li> <li><code>msh</code>: the mesh file <code>.msh</code> obtained after the geometry geneartion is stores here.</li> <li><code>png</code>: in the case of automatic post processing, png files are stored here.</li> <li><code>res</code>: this folder is used to store the homogenization results. They have to be moved here.</li> <li><code>stp</code>: if acitvated, a <code>.stp</code> file of the geometry is stored here</li> <li><code>svg</code>: the projection of the geometry on the <em>x-y</em> plane is stored here.</li> <li><code>vtk</code>: A copy of the mesh file without the matrix mesh is sotred here as a `.vtk`` file.</li> </ul> <h3>How to Run</h3> <p>We will consider the current file structure to run the example in 000_Base. To run the code, it can be called from the command prompt as</p> <div> <pre><code>python3 ../../source/mainRVE.py --name &lt;i&gt; --pattern &lt;pattern&gt;</code></pre> </div> <p>In this case, the <code>--name</code> refers to the index that will be given to the model, where <code>&lt;i&gt;</code> must be changed to an integer and <code>--pattern</code> refers to the wanted pattern to be used, where <code>&lt;pattern&gt;</code> must be changed to either <code>dia</code> or <code>reg</code>.</p> <blockquote> <p>Note: <code><code>--name</code>cat</code> can also be used to reproduce the regular pattern benchmark of the paper. In that case, the volume fraction of fiber in the tows is hard coded as the provided value in the reference (i.e. 0.86). For other cases, the volume fraction is evaluated from the tow cross-sections.</p> <p>Note:&nbsp;<code>mainRVE.py</code> must be accesible from the directory where the case is being run. This example shows the usage of the current file structure.</p> </blockquote> <h3>All Command Line Options</h3> <p>The code can be run using further options that serve different purpouses, some serving pre processing needs and other serving run administration. The different command line options are:</p> <ul> <li>Required: <ul> <li><code>--name</code> : it gives a suffix to the run model. It is usually an integer.</li> <li><code>--pattern</code> : indicates the type of pattern to be used to build the geometry. The two current options are <code>dia</code> for diamond and <code>reg</code> for regular.</li> </ul> </li> <li>Optional <ul> <li><code>-dG3D</code>: it indicates that the homogenization of the generated RUC is to be perfomed.</li> <li><code>-GMSH</code> : it indicates that GMSH must be open upon competion of the generation of the mesh.</li> <li><code>-loadModel</code> : it will try to load a premade model. It will ignore <code>--pattern</code>.</li> <li><code>--rndPrm</code> : it will generate randomized geometrical parameters. It can be used to generate batches of results. It takes an argument that can be <code>2</code>, <code>4</code> or <code>6</code>. Currently, <code>2</code> gives a random value for <code>s_axial</code> and <code>theta</code>, <code>4</code> randomizes the same as <code>2</code> and adds <code>h_axial</code> and <code>h_bias</code>, and <code>6</code> randomizes the same as <code>4</code> and adds <code>w_axial</code> and <code>w_bias</code>.</li> </ul> </li> <li>Pre-Processing <ul> <li><code>-refCF</code>: it tells the code to generate a grid of values for <code>s_axial</code> and <code>theta</code> where only the cover factor is obtained. It is meant for posterior graphing purposes.</li> </ul> </li> </ul> <h3>Examples</h3> <p>Following the run options, a few examples are indicated</p> <ul> <li>A basic mesh generation run for the basic data, considering a <strong>regular pattern</strong>, for a model named <strong>2</strong>:</li> </ul> <div> <pre><code>python3 ../../source/mainRVE.py --name 2 --pattern reg</code></pre> </div> <ul> <li>The generation of the cover factor data and export, considering a <strong>regular pattern</strong>:</li> </ul> <div> <pre><code>python3 ../../source/mainRVE.py --pattern reg -refCF</code></pre> </div> <ul> <li>A run for the modified basic data, where the <strong>2</strong> parameters are modified <em>randomly</em>, considering a <strong>regular pattern</strong>, for a model named <strong>2</strong>:</li> </ul> <div> <pre><code>python3 ../../source/mainRVE.py --name 2 --pattern reg --rndPrm 2</code></pre> </div> <ul> <li>A run, where model <strong>2</strong> already exists in <code>brd</code> folder but not the <code>.msh</code> and <code>.vtk</code> files:</li> </ul> <div> <pre><code>python3 ../../source/mainRVE.py --name 2 -loadModel </code></pre> </div> <h2>Code Structure</h2> <p>The code is implemented into Python files, where <code>mainRVE.py</code> runs the whole code. The files are:</p> <ul> <li>Braid: <ul> <li><code>braidClass.py</code> :</li> <li><code>bzrPairClass.py</code> :</li> </ul> </li> <li>Geometry <ul> <li><code>bezrClass.py</code> :</li> <li><code>bilnClass.py</code> :</li> <li><code>patchClass.py</code> :</li> <li><code>pntSetClass.py</code> :</li> <li><code>pointClass.py</code> :</li> <li><code>sctnClass.py</code> :</li> <li><code>stripeClass.py</code> :</li> <li><code>surfClass.py</code> :</li> <li><code>surfOffClass.py</code> :</li> </ul> </li> <li>Material: <ul> <li><code>chamis.py</code> :</li> </ul> </li> <li>Tools: <ul> <li><code>dataIO.py</code> :</li> <li><code>postDirection.py</code> :</li> <li><code>tool.py</code> :</li> <li><code>toolData.py</code> :</li> </ul> </li> <li><code>curveClass.py</code> :*</li> </ul> <p>&nbsp;</p> <p>&nbsp;</p>

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

DIAMOND D3.2 - Model Development Strategy – Update 1

<p>Updated internal IAM surveys, which aim to update information on how to develop the models based on stakeholder insights.</p>

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

Dataset for IDRC Project: Exploring the opportunities and challenges of implementing open research strategies within development institutions. International Development Research Center.

<p>Data Package: Exploring the opportunities and challenges of implementing open research strategies within development institutions</p> <p>DOI for this package: https://doi.org/10.5281/zenodo.844394<br> Project Description: https://doi.org/10.3897/rio.2.e8880<br> Data Management Plan: https://doi.org/10.3897/rio.3.e14672<br> Other Related Documents and Reports: https://riojournal.com/collection/18/<br> Funder: International Development Research Centre/Centre de rechereches pour le développement international, https://doi.org/10.13039/501100000193</p> <p><br> Abstract<br> ========</p> <p>This is the Data Package for the project "Exploring the opportunities and challenges of implementing open research strategies within development institutions" the proposal for which was published as https://doi.org/10.3897/rio.2.e8880. The research project conducted open data pilot case studies with seven IDRC grantees to develop and implement open data management and sharing plans. The results of the case studies served to refine guidelines for the implementation of development research funders’ open research data policies.</p> <p>Contents<br> ========</p> <p>The Data Package contains all the public data generated by the project. The package was curated and metadata generated, including an HTML Catalog using the Calcyte Tool (https://codeine.research.uts.edu.au/eresearch/calcyte) developed at University of Technology Sydney.</p> <p>The project had two major phases:</p> <p>1. A review, based on desk work and interviews with data management experts<br> 2. Case studies, based on implementing open data practices within seven IDRC funded research projects</p> <p>Review<br> ------</p> <p>The review, published at https://riojournal.com/article/14673/ was supported by desk work and interviews. The materials related to the interviews can be found in the directory:</p> <p>* Policy and Implementation Review Interviews</p> <p>Case Studies<br> ------------</p> <p>Seven IDRC-funded projects were contributed to the pilot project.</p> <p>The materials generated by the case studies and used to support the final report (to be published with the collection at https://riojournal.com/collection/18/) are found in the following directories.</p> <p>* Introductory_Data_Workshop_Materials<br> * Introductory_Workshop_Presentations<br> * Data Management Planning<br> * SciDataCon Presentations<br> * Final_Project_Workshop_Materials<br> * Final_Project_Workshop_Presentations</p> <p>The files are encoded with a three letter code that identifies the relevant contributing project in each case. The contributing projects were:</p> <p>* Crowd Sourcing Data to fight Social Crimes: Harassmap, Egypt (HMP)<br> * The Brazilian Virtual Herbarium: CRIA, Brazil(BVH)<br> * Strengthening the Economic Committee of the National Assembly in Vietnam: Centre for Analysis and Forecasting, Vietnam (ECV)<br> * The Impact of Copyright User Rights: Derechos Digitales, Columbia (DED)<br> * Establishing a clearinghouse for tobacco economic data in Africa: DataFirst, South Africa (TED)<br> * Les problèmes négligés des systèmes de santé en Afrique : une incitation aux réformes: LASDEL, Niger (NDF)<br> * Indigenous Knowledge in Climate Change: Natural Justice, South Africa (IKC)</p> <p>More details will be found in the Case Studies and in the Final Report (forthcoming at https://riojournal.com/collection/18/)</p> <p>References<br> ==========</p> <p>* Neylon C, Chan L (2016) Exploring the opportunities and challenges of implementing open research strategies within development institutions. Research Ideas and Outcomes 2: e8880. https://doi.org/10.3897/rio.2.e8880<br> * Neylon C (2017) Data Management Plan: IDRC Data Sharing Pilot Project. Research Ideas and Outcomes 3: e14672. https://doi.org/10.3897/rio.3.e14672<br> * Neylon C, Chan L (2016-17) Exploring the opportunities and challenges of implementing open research strategies within development institutions: A project of the International Development Research Center, Research Ideas and Outcomes Collection, https://riojournal.com/collection/18/</p> <p> </p>

opencc-by-4.0Oct 2017View details →
zenodo36/100

Fig. 1 in Simulation modelling as a decision support in developing a sterile insect-inherited sterility release strategy for Eldana saccharina (Lepidoptera: Pyralidae)

Fig. 1. The system designed for simulating pest species dynamics in sugarcane.

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

Historical 'as-if' cash flow diagrams according to all strategies developed

<p><span>In the context of the project activities of WP6, entitled "Strategies to increase the financial resilience of coastal cities", this document briefly describes the contents of D6.6 "Historical &lsquo;as-if&rsquo; cash flow diagrams according to all strategies developed". The data provided, in conjunction with the DSS tool (D6.7), serves decision makers in Massa, Vilanova i la Geltr&uacute;, and Oarsoaldea CCLLs by helping them evaluate and choose among different financial resilience strategies to manage flood related financial risk.</span></p>

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

Strategies for and Barriers to Collaboratively Developing Anti-racist Policies and Resources as Described by Geoscientists of Color Participating in the Unlearning Racism in Geoscience (URGE) Program

<p>The Unlearning Racism in Geosciences (URGE) program guides groups of geoscientists as they draft, implement, and assess anti-racist policies and resources for their&nbsp;workplace. Some participating Geoscientists of Color (GoC) shared concerns about microaggression, tokenism, and power struggles within their groups. These reports led us&nbsp;to collect and analyze data that describe the experiences of GoC in URGE. The data&nbsp;are from five discussion groups and two surveys. Our analyses revealed that participating GoC want to continue working with White colleagues on anti-racist work. GoC want&nbsp;White colleagues not to shy away from doing anti-racist work. Instead, GoC want White&nbsp;colleagues (1) to create and adhere to robust behavioral codes of conduct, (2) to focus&nbsp;discussions on anti-racism, (3) to act on anti-racism initiatives, (4) not to prompt GoC&nbsp;to educate them or reveal trauma, and (5) to refrain from microaggressions and tokenism. These desired outcomes were achieved in some groups with varying degrees of success.&nbsp;Correcting a history of mistrust relating to racism and anti-racism action is key to implementing and assessing effective anti-racist policies and resources. This requires leadership support, following through on anti-racism action, and deepening relationships between GoC and White colleagues. Future anti-racist programs should spend a substantial amount of time on and demonstrate the importance of training participants how to discuss racism effectively and how to create and adhere to robust behavioral codes of conduct. Future programs should also explore developing a robust program-wide code of conduct that includes a policy for reporting offenses.</p>

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

"STILL AROUND": Experiences and Survival Strategies of Veteran Women Software Developers (Supplementary Material)

<p>The intersection of ageism and sexism can create a hostile environment for veteran software developers belonging to marginalized genders. In this study, we conducted 14 interviews to examine the experiences of people at this intersection, primarily women, in order to discover the strategies they employed in order to successfully remain in the field. We identified 283 codes, which fell into three main categories: <em>Strategies</em>, <em>Experiences</em>, and <em>Perception</em>. Several strategies we identified, such as <em>(Deliberately) Not Trying to Look Younger</em>, were not previously described in the software engineering literature. We found that, in some companies, older women developers are recognized as having particular value, further strengthening the known benefits of diversity in the workforce. Based on the experiences and strategies, we suggest organizations employing software developers to consider the benefits of hiring veteran women software developers. For example, companies can draw upon the life experiences of older women developers in order to better understand the needs of customers from a similar demographic. While we recognize that many of the strategies employed by our study participants are a response to systemic issues, we still consider that, in the short-term, there is benefit in describing these strategies for developers who are experiencing such issues today.</p>

opencc-by-4.0Dec 2022View details →
ClinicalTrials.gov36/100

Strategies to Reduce Injuries and Develop Confidence in Elders

ClinicalTrials.gov study NCT02475850. IPD Sharing: Not stated. Countries: 1. Publications: 10.

restrictedIPD-UNDECIDEDFeb 2026View details →
ClinicalTrials.gov36/100

Developing and Testing an Implementation Strategy for Active Learning to Promote Physical Activity in Children

ClinicalTrials.gov study NCT05048433. IPD Sharing: NO. Countries: 1. Publications: 2.

closedIPD-NOFeb 2026View details →
ClinicalTrials.gov36/100

Developing and Testing Implementation Strategies for Evidence-Based Obesity Prevention in Childcare

ClinicalTrials.gov study NCT03075085. IPD Sharing: NO. Countries: 1. Publications: 31.

closedIPD-NOFeb 2026View details →
ClinicalTrials.gov36/100

Developing Restful Environments and Management Strategies for Pediatric Stem Cell Transplant Patients

ClinicalTrials.gov study NCT06468618. IPD Sharing: YES. Countries: 1. Publications: 1.

controlledIPD-YESFeb 2026View details →
ClinicalTrials.gov36/100

Prevention Strategy for Pre-Menopausal Women at High Risk for Development of Breast Cancer

ClinicalTrials.gov study NCT01276704. IPD Sharing: NO. Countries: 1. Publications: 1.

closedIPD-NOFeb 2026View details →
dryad36/100

Mate desertion affects offspring survival, development and physiology in a songbird with multiple parental strategies

Open the record for dataset details and reuse information.

publicOct 2025View details →
dryad36/100

From pup to predator; generalized hidden Markov models reveal rapid development of movement strategies in a naïve long‐lived vertebrate

Open the record for dataset details and reuse information.

publicJan 2020View details →
dryad36/100

Developing an efficient dispatching strategy to support commercial fleet electrification

Open the record for dataset details and reuse information.

publicJan 2024View details →
dryad32/100

Data from: Nest predation risk and growth strategies of passerine species: grow fast or develop traits to escape risk?

Different body components are thought to trade off in their growth and development rates, but the causes for relative prioritization of any trait remains a critical question. Offspring of species at higher risk of predation might prioritize development of locomotor traits that facilitate escaping risky environments over growth of mass. We tested this possibility in 12 altricial passerine species that differed in their risk of nest predation. We found that rates of growth and development of mass, wings, and endothermy increased with nest predation risk across species. In particular, species with higher nest predation risk exhibited relatively faster growth of wings than of mass, fledged with relatively larger wing sizes and smaller mass, and developed endothermy earlier at relatively smaller mass. This differential development can facilitate both escape from predators and survival outside of the nest environment. Tarsus growth was not differentially prioritized with respect to nest predation risk, and instead all species achieved adult tarsus size by age of fledging. We also tested whether different foraging modes (aerial, arboreal, and ground foragers) might explain the variation of differential growth of locomotor modules, but we found that little residual variation was explained. Our results suggest that differences in nest predation risk among species are associated with relative prioritization of body components to facilitate escape from the risky nest environment.

opencc-zeroDec 2011View details →
dryad32/100

Data from: A gravid fossil turtle from the Early Cretaceous reveals a different egg development strategy to that of extant marine turtles

Extant sea turtles develop and lay pliable (flexible) eggs, however, it is unknown if they inherited this reproductive strategy from their closer fossil relatives or corresponds to an evolutionary novelty. Here we describe the first undisputable gravid marine fossil turtle ever found, from the early Cretaceous of Colombia, belonging to Desmatochelys padillai Cadena and Parham, which constitutes a representative of Protostegidae. Using thin sectioning of one the eggs, as well as scanning electron microscopy coupled with elemental characterization, cathodoluminescence, and computer tomography we established that Desmatochelys padillai produced rigid eggs similar to the ones found in some extant and fossil freshwater and terrestrial turtles, and that at least 48 spherical eggs are preserved inside this gravid turtle. We performed also a phylogenetic analysis of several turtle taxa, including some of the extant marine species, plus the information from the gravid specimen of Desmatochelys padillai, and we found more support to previous ideas that egg and eggshell characters lack of strong phylogenetic signal amongst turtle taxa. We suggest that the development of rigid eggs in the marine extinct turtle Desmatochelys padillai resulted as an adaptation for eggs-embryos requirements dictated by the physical attributes of the nesting site

opencc-zeroDec 2017View details →
zenodo32/100

DIDACTIC STRATEGY BASED ON EXELEARNING FOR THE DEVELOPMENT OF PEDAGOGICAL SKILLS IN BIOTECHNOLOGY STUDENTS - DIAGNOSIS

<p>Los datos corresponden al diagn&oacute;stico realizado a estudiantes a trav&eacute;s de un cuestionario, en una investigaci&oacute;n para la elaboraci&oacute;n de una estrategia did&aacute;ctica basada en ExeLearning</p>

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

Performance and control strategy development of a PCM enhanced ventilated window system by a combined experimental and numerical study

<p>The dataset includes the published data in the article Performance and control strategy development of a PCM enhanced<br> ventilated window system by a combined experimental and numerical study. Dataset including experimental data and data for numerical validation. For the details of the data description please refer to the paper.</p>

opencc-by-4.0Mar 2020View 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