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.

3

datasets available to search

ShareScore release 0.9.0

Reset

Dataset results

3 results for “Global mean sea level rise”

Learn how ShareScore rates datasets ↗
zenodo36/100

Interagency report: Global and Regional Sea Level Rise Scenarios for the United States: Updated Mean Projections and Extreme Water Level Probabilities Along U.S. Coastlines

<p><strong>Code and data for Section 2 of the Interagency report: Global and Regional Sea Level Rise Scenarios for the United States: Updated Mean Projections and Extreme Water Level Probabilities Along U.S. Coastlines</strong></p> <p><strong>Versions:</strong></p> <p>Version 1.1 This one:</p> <ul> <li>updated region names</li> </ul> <p>Version 1.0 <a href="https://doi.org/10.5281/zenodo.5951626">https://doi.org/10.5281/zenodo.5951626</a></p> <p>This repository contains the code and data needed to produce the trajectories, projections, and observations for the Interagency report: Global and Regional Sea Level Rise Scenarios for the United States: Updated Mean Projections and Extreme Water Level Probabilities Along U.S. Coastlines.</p> <p>The report can be found on <a href="https://oceanservice.noaa.gov/hazards/sealevelrise/sealevelrise-tech-report-sections.html">https://oceanservice.noaa.gov/hazards/sealevelrise/sealevelrise-tech-report-sections.html</a></p> <p>An interactive tool to study the observations, trajectories, and scenarios can be accessed from <a href="https://sealevel.nasa.gov/task-force-scenario-tool">https://sealevel.nasa.gov/task-force-scenario-tool</a></p> <p>Frequently-asked questions: <a href="https://sealevel.nasa.gov/faq/16/">https://sealevel.nasa.gov/faq/16/</a></p> <p><strong>Authors</strong></p> <ul> <li>William V. Sweet, NOAA National Ocean Service</li> <li>Benjamin D. Hamlington, NASA Jet Propulsion Laboratory</li> <li>Robert E. Kopp, Rutgers University</li> <li>Christopher P. Weaver, U.S. Environmental Protection Agency</li> <li>Patrick L. Barnard, U.S. Geological Survey</li> <li>Michael Craghan, U.S. Environmental Protection Agency</li> <li>Gregory Dusek, NOAA National Ocean Service</li> <li>Thomas Frederikse, NASA Jet Propulsion Laboratory</li> <li>Gregory Garner, Rutgers University</li> <li>Ayesha S. Genz, University of Hawai&lsquo;i at Mānoa, Cooperative Institute for Marine and Atmospheric Research</li> <li>John P. Krasting, NOAA Geophysical Fluid Dynamics Laboratory</li> <li>Eric Larour, NASA Jet Propulsion Laboratory</li> <li>Doug Marcy, NOAA National Ocean Service</li> <li>John J. Marra, NOAA National Centers for Environmental Information</li> <li>Jayantha Obeysekera, Florida International University</li> <li>Mark Osler, NOAA National Ocean Service</li> <li>Matthew Pendleton, Lynker</li> <li>Daniel Roman, NOAA National Ocean Service</li> <li>Lauren Schmied, FEMA Risk Management Directorate</li> <li>William C. Veatch, U.S. Army Corps of Engineers</li> <li>Kathleen D. White, U.S. Department of Defense</li> <li>Casey Zuzak, FEMA Risk Management Directorate</li> </ul> <p><strong>Contents</strong></p> <p>This data and code set contains the following directories:</p> <p><em>Results</em></p> <p>The <code>Results</code> folder contains the resulting projections, trajectories and observations from the report.</p> <ul> <li><code>TR_global_projections.nc</code>: GMSL projections, trajectory, and observations</li> <li><code>TR_regional_projections.nc</code>: Regional observations, projections and trajectories</li> <li><code>TR_local_projections.nc</code>: Local observations, projections and trajectories</li> <li><code>TR_gridded_projections.nc</code>: Gridded projections</li> </ul> <p>These files are in the NetCDF forrmat. To read the NetCDF files, many free software packages are available, including <a href="http://meteora.ucsd.edu/~pierce/ncview_home_page.html">ncview</a> and <a href="https://www.giss.nasa.gov/tools/panoply/">Panoply</a>. Free NetCDF packages are available to directly import the data into <a href="https://github.com/Alexander-Barth/NCDatasets.jl">Julia</a> and <a href="https://unidata.github.io/netcdf4-python/">Python</a> code.</p> <p><em>Code</em></p> <p>The <code>Code</code> folder contains all the computer code used to read and analyze the observations and the projections, and to generate the trajectories.</p> <p>To run this code, you need <a href="https://julialang.org/">Julia</a>. The code requires the Julia packages <code>CSV</code>, <code>Interpolations</code>, <code>JSON</code>, <code>LoopVectorization</code>, <code>MAT</code>, <code>NCDatasets</code>, <code>NetCDF</code>, <code>Plots</code>, <code>XLSX</code>, <code>LinearAlgebra</code>, and <code>Statistics</code>. They can be installed by pressing <code>]</code> at the Julia REPL and typing:</p> <pre><code>add CSV Interpolations JSON LoopVectorization MAT NCDatasets NetCDF Plots XLSX LinearAlgebra Statistics </code></pre> <p>This program also requires <a href="http://segal.ubi.pt/hector/">Hector</a>. Hector needs to be installed or compiled. In the file <code>Hector.jl</code> update the path to the Hector executable on lines 30 and 104.</p> <p>Run <code>Run_TR.jl</code> in the REPL or run <code>julia Run_TR.jl</code> from the command line to run the projections. The projections are then written to the <code>.\Data</code> directory.</p> <p>The folder contains the following files:</p> <ul> <li><code>Run_TR.jl</code>: This is the main routine that (eventually) calls all the functions to compute the projections.</li> <li><code>ConvertNCA5ToGrid.jl</code>: Converts the original NCA5 projections to a set of netCDF files that&#39;s used throughout this code</li> <li><code>ProcessObservations.jl</code>: Reads and processes the tide-gauge and altimetry observations</li> <li><code>GlobalProjections.jl</code>: Reads and processes the GMSL observations and projections, and computes the trajectory</li> <li><code>RegionalProjections.jl</code>: Reads and processes the regional projections and computes the trajectories</li> <li><code>LocalProjections.jl</code>: Reads and processes the local projections at the tide-gauge locations and computes the trajectories</li> <li><code>GriddedProjections.jl</code>: Reads the gridded NCA5 projections and add a GMSL baseline correction for the 2005 vs 2000 baseline</li> <li><code>SaveFigureData.jl</code>: Reads the results and writes text files for GMT</li> <li><code>Hector.jl</code>: Wrapper for <a href="http://segal.ubi.pt/hector/">Hector</a>, used to compute trends and uncertainties.</li> <li><code>Masks.jl</code>: Defines the region masks for each region.</li> </ul> <p><em>Data</em></p> <p>The <code>Data</code> directory contains the input data sets used during the computations. Please appropriately cite the input data if you use it. It contains the following:</p> <p>Directories:</p> <ul> <li><code>ClimIdx</code>: Map with climate indices (NAO, PDO, MEI) used to remove internal variability. All the indices come from NOAA <a href="https://psl.noaa.gov/data/climateindices/">Physical Sciences Laboratory (PSL)</a> and <a href="https://www.cpc.ncep.noaa.gov/data/teledoc/telecontents.shtml">NOAA Climate Prediction Centre (CPC)</a></li> <li><code>NCA5_projections</code> Contains the NCA5 projections for each scenario (Low, IntLow, Int, IntHigh, and High). For each scenario, the GMSL projections, projections at tide-gauge locations and on a 1-degree grid are provided.</li> </ul> <p>Files:</p> <ul> <li><code>basin_codes.nc</code>: Map with basin codes. from Eric Leuliette/NOAA. Data provided by the NOAA Laboratory for Satellite Altimetry.</li> <li><code>CDS_monthly_1993_2020.nc</code>: Monthly-mean sea level (1993-2020) from gridded altimetry. Obtained from <a href="https://cds.climate.copernicus.eu/cdsapp#!/dataset/satellite-sea-level-global">Copernicus Climate Data Store</a>. This dataset contains modified Copernicus Climate Change Service information [2020]</li> <li><code>enso_correction.mat</code>: GMSL correction for ENSO/PDO from Hamlington, B. D., Frederikse, T., Nerem, R. S., Fasullo, J. T., &amp; Adhikari, S. (2020). Investigating the Acceleration of Regional Sea‐level Rise During the Satellite Altimeter Era. Geophysical Research Letters. <a href="https://doi.org/10.1029/2019GL086528">https://doi.org/10.1029/2019GL086528</a></li> <li><code>filelist_psmsl.txt</code>: List with PSMSL file names and PSMSL IDs. Obtained from the Permanent Service for Mean Sea Level (<a href="http://www.psmsl.org/">PSMSL</a>), 2021, Retrieved 29 Nov 2021. Simon J. Holgate, Andrew Matthews, Philip L. Woodworth, Lesley J. Rickards, Mark E. Tamisiea, Elizabeth Bradshaw, Peter R. Foden, Kathleen M. Gordon, Svetlana Jevrejeva, and Jeff Pugh (2013) New Data Systems and Products at the Permanent Service for Mean Sea Level. Journal of Coastal Research: Volume 29, Issue 3: pp. 493 &ndash; 504. <a href="https://doi.org/:10.2112/JCOASTRES-D-12-00175.1">https://doi.org/:10.2112/JCOASTRES-D-12-00175.1</a>.</li> <li><code>GEBCO_bathymetry_05.nc</code>: Bathymetry map of the global oceans from the General Bathymetric Chart of the Oceans (<a href="https://www.gebco.net/">GEBCO</a>). Source: GEBCO Compilation Group (2021) GEBCO 2021 Grid (<code>doi:10.5285/c6612cbe-50b3-0cff-e053-6c86abc09f8f</code>) The source data have been re-gridded onto a 0.5 degree grid.</li> <li><code>GIA_Caron_stats_05.nc</code>: Glacial Isostatic Adjustment estimates from Caron, L., Ivins, E. R., Larour, E., Adhikari, S., Nilsson, J., &amp; Blewitt, G. (2018). GIA Model Statistics for GRACE Hydrology, Cryosphere, and Ocean Science. Geophysical Research Letters, 45(5), 2203&ndash;2212. <a href="https://doi.org/10.1002/2017GL076644">https://doi.org/10.1002/2017GL076644</a>. The source data have been re-gridded onto a 0.5 degree grid.</li> <li><code>global_timeseries_measures.nc</code>: Time series of estimated 20th-century GMSL and its components, based on Frederikse, T., Landerer, F., Caron, L., Adhikari, S., Parkes, D., Humphrey, V. W., Dangendorf, S., Hogarth, P., Zanna, L., Cheng, L., &amp; Wu, Y.-H. (2020). The causes of sea-level rise since 1900. Nature, 584(7821), 393&ndash;397. <a href="https://doi.org/10.1038/s41586-020-2591-3">https://doi.org/10.1038/s41586-020-2591-3</a></li> <li><code>GMSL_ensembles.nc</code>: Ensemble GMSL reconstruction from tide-gauges based on Frederikse, T., Landerer, F., Caron, L., Adhikari, S., Parkes, D., Humphrey, V. W., Dangendorf, S., Hogarth, P., Zanna, L., Cheng, L., &amp; Wu, Y.-H. (2020). The causes of sea-level rise since 1900. Nature, 584(7821), 393&ndash;397. <a href="https://doi.org/10.1038/s41586-020-2591-3">https://doi.org/10.1038/s41586-020-2591-3</a></li> <li><code>GMSL_TPJAOS_5.0_199209_202106.txt</code>: Global Mean Sea Level Trend from Integrated Multi-Mission Ocean Altimeters TOPEX/Poseidon, Jason-1, OSTM/Jason-2, and Jason-3 Version 5.1 [Data set]. NASA Physical Oceanography DAAC. <a href="https://doi.org/10.5067/GMSLM-TJ151">https://doi.org/10.5067/GMSLM-TJ151</a>. This altimetry dataset uses the methods as described in Beckley, B. D., Callahan, P. S., Hancock, D. W., Mitchum, G. T., &amp; Ray, R. D. (2017). On the &ldquo;Cal-Mode&rdquo; Correction to TOPEX Satellite Altimetry and Its Effect on the Global Mean Sea Level Time Series. Journal of Geophysical Research: Oceans, 122(11), 8371&ndash;8384. <a href="https://doi.org/10.1002/2017JC013090">https://doi.org/10.1002/2017JC013090</a></li> <li><code>grd_1992_2020.nc</code>: Seafloor deformation due to contemporary GRD effects based on Frederikse, T., Landerer, F., Caron, L., Adhikari, S., Parkes, D., Humphrey, V. W., Dangendorf, S., Hogarth, P., Zanna, L., Cheng, L., &amp; Wu, Y.-H. (2020). The causes of sea-level rise since 1900. Nature, 584(7821), 393&ndash;397. <a href="https://doi.org/10.1038/s41586-020-2591-3">https://doi.org/10.1038/s41586-020-2591-3</a></li> <li><code>region_mask.nc</code>: Mask with the definition of all regions.</li> <li><code>US_tg_monthly.xlsx</code>: Tide gauge observations from the NOAA tide gauge network</li> </ul> <p><em>GMT</em></p> <p>This directory contains the <a href="https://www.generic-mapping-tools.org/">GMT</a> scripts to make Figures 1.2, 2.1, 2.2, 2.6, and A.1.2 from the report. To generate the figures, make sure GMT is installed and run the Shell script in each directory.</p>

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

Datatset from "Coastal flooding in the Maldives induced by mean sea-level rise and wind-waves: from global to local coastal modelling"

<p>Resulting downscaled wave fields from the WaveWatch III simulations for the four main wave directions identified and six return periods (10, 20, 50, 100, 500, and 1000 years).</p>

opencc-by-4.0Jun 2020View details →
zenodo20/100

Global Mean Sea-Level Rise Projections to 2150 and 2300 (PROTECT)

<p>Full-track projections of global mean sea-level rise from PROTECT. Please check the deliverable text for details regarding these data.</p>

restrictedmit-licenseMar 2024View 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