From the PO.DAAC Cookbook, to access the GitHub version of the notebook, follow this link.

MUR Sea Surface Temperature Analysis of Washington State

Requirement:

  1. Compute environment

This tutorial can only be run in an AWS cloud instance running in us-west-2: NASA Earthdata Cloud data in S3 can be directly accessed via temporary credentials; this access is limited to requests made within the US West (Oregon) (code: us-west-2) AWS region.

  1. Earthdata Login

An Earthdata Login account is required to access data, as well as discover restricted data, from the NASA Earthdata system. Thus, to access NASA data, you need Earthdata Login. Please visit https://urs.earthdata.nasa.gov to register and manage your Earthdata Login account. This account is free to create and only takes a moment to set up.

Learning Objectives:

  • Access cloud-stored MUR Global SST data within AWS cloud, without downloading it to your local machine
  • Visualize and analyze data in a use case example
  • Use earthaccess library to search for, access, and download the data

GHRSST Level 4 MUR Global Foundation Sea Surface Temperature Analysis (v4.1) Dataset:

  1. MUR-JPL-L4-GLOB-v4.1

DOI: https://doi.org/10.5067/GHGMR-4FJ04

Notebook Author: Zoë Walschots, NASA PO.DAAC (Aug 2023)

Import Packages

import h5netcdf
import xarray as xr
import numpy as np
import matplotlib.pyplot as plt
import hvplot.xarray
import cartopy.crs as ccrs
import cartopy.feature as cfeat
import earthaccess
from earthaccess import Auth, DataCollections, DataGranules, Store