20. HyperCoast#

Open In Colab

20.1. Environment setup#

Uncomment and run the following cell to install the required packages.

# %pip install "hypercoast[extra]"

Import library.

import hypercoast

To download and access the data, you will need to create an Earthdata login. You can register for an account at urs.earthdata.nasa.gov. Once you have an account, run the following cell and enter your NASA Earthdata login credentials.

hypercoast.nasa_earth_login()

20.2. Search for EMIT data#

Search for EMIT data programmatically. Specify the bounding box and time range of interest. Set count=-1 to return all results or set count=10 to return the first 10 results.

results, gdf = hypercoast.search_emit(
    bbox=(-83, 25, -81, 28),
    temporal=("2024-04-01", "2024-05-16"),
    count=10,  # use -1 to return all datasets
    return_gdf=True,
)

Plot the footprints of the returned datasets on a map.

gdf.explore()

Uncomment the following cell to download the first dataset from the search results. Note that the download may take some time.

# hypercoast.download_emit(results[:1], out_dir="data")

Search for EMIT data interactively. Specify pan and zoom to the area of interest. Specify the time range of interest from the search dialog, then click on the Search button.

m = hypercoast.Map(center=[30.0262, -90.1345], zoom=8)
m.search_emit()
m

Uncomment the following cell to display the GeoDataFrame of the search results.

# m._NASA_DATA_GDF.head()

Similarly, you can download the first dataset from the search results by uncommenting the following cell.

# hypercoast.download_emit(results[:1], out_dir="data")

20.3. Download a sample EMIT dataset#

Let’s download a sample EMIT dataset for the demonstration.

url = "https://github.com/opengeos/datasets/releases/download/hypercoast/EMIT_L2A_RFL_001_20240404T161230_2409511_009.nc"
filepath = "../examples/data/EMIT_L2A_RFL_001_20240404T161230_2409511_009.nc"
hypercoast.download_file(url, filepath, quiet=True)

20.4. Read EMIT data#

Read the downloaded EMIT data and process it as an xarray.Dataset. Note that the dataset has 285 bands.

dataset = hypercoast.read_emit(filepath)
# dataset

20.5. Visualize EMIT data#

Visualize the EMIT data on an interactive map. You can change the band combination and extract spectral profiles interactively. You can also export the spectral profiles as a CSV file.

m = hypercoast.Map()
m.add_basemap("SATELLITE")
m.add_emit(dataset, wavelengths=[1000, 600, 500], vmin=0, vmax=0.3, layer_name="EMIT")
m.add("spectral")
m

20.6. Create an image cube#

First, select a subset of the data to avoid nodata areas.

ds = dataset.sel(longitude=slice(-90.1482, -89.7321), latitude=slice(30.0225, 29.7451))

Visualize the EMIT data in 3D with an RGB image overlaid on top of the 3D plot.

p = hypercoast.image_cube(
    ds,
    variable="reflectance",
    cmap="jet",
    clim=(0, 0.4),
    rgb_wavelengths=[1000, 700, 500],
    rgb_gamma=2,
    title="EMIT Reflectance",
)

Uncomment the following cell to create an image cube. Note that this function does not work in the Google Colab environment.

# p.show()

20.7. Interactive slicing#

First, select a subset of the data for demonstration purposes.

ds = dataset.sel(longitude=slice(-90.05, -89.99), latitude=slice(30.00, 29.93))

Drag the plane up and down to slice the data in 3D.

p = hypercoast.image_cube(
    ds,
    variable="reflectance",
    cmap="jet",
    clim=(0, 0.5),
    rgb_wavelengths=[1000, 700, 500],
    rgb_gamma=2,
    title="EMIT Reflectance",
    widget="plane",
)
p.add_text("Band slicing", position="upper_right", font_size=14)

Uncomment the following cell to display the interactive slicing widget. Note that this function does not work in the Google Colab environment.

# p.show()

20.8. Interactive thresholding#

Drag the threshold slider to threshold the data in 3D.

p = hypercoast.image_cube(
    ds,
    variable="reflectance",
    cmap="jet",
    clim=(0, 0.5),
    rgb_wavelengths=[1000, 700, 500],
    rgb_gamma=2,
    title="EMIT Reflectance",
    widget="threshold",
)
p.add_text("Thresholding", position="upper_right", font_size=14)

Uncomment the following cell to display the thresholded data. Note that this function does not work in the Google Colab environment.

# p.show()