Full catalog/HAWKEYE_L1
HAWKEYE_L1·v1·dataset

Raw ocean-color imagery from a small satellite (SeaHawk-1)

SeaHawk-1 HawkEye Level-1A Data, version 1
ocean NASA OB_CLOUD Level 1 netCDF-4
In plain English

What it measures. Raw, full-resolution ocean-color imagery straight from the instrument, time-stamped and tagged with calibration and location information but not yet processed into finished measurements.

How it's made. Captured by the HawkEye camera aboard the small SeaHawk-1 satellite, packaged at the earliest (Level-1A) stage.

How & where you'd use it. A building-block input rather than a ready-to-read map; scientists process it into higher-level ocean-color products that show things like water quality and ocean plant life.

What's measured

OCEANS › OCEAN OPTICSSPECTRAL/ENGINEERING › PLATFORM CHARACTERISTICS › CALIBRATIONSPECTRAL/ENGINEERING › INFRARED WAVELENGTHSSPECTRAL/ENGINEERING › SENSOR CHARACTERISTICSSPECTRAL/ENGINEERING › VISIBLE WAVELENGTHS

Coverage & cadence

  • Time span2018-12-03 → 2023-10-27
  • Measured bySeaHawk-1 (HawkEye)
  • Processing levelLevel 1
  • Spatial extent-180, -90, 180, 90
  • FormatsnetCDF-4
  • StatusCOMPLETE

What you can do with it

  • Watch sea-surface temperature and marine heatwaves
  • Spot algal blooms and ocean-colour shifts
  • Support fisheries and coastal monitoring
Official description

Level 1A (L1A) data are reconstructed, unprocessed instrument data at full resolution, time-referenced, and annotated with ancillary information. This ancillary information can include radiometric and geometric calibration coefficients and georeferencing parameters (e.g., platform ephemeris).

Get the data

hawkeye_l1_access.py
import earthaccess
earthaccess.login(strategy="netrc")          # free Earthdata Login

results = earthaccess.search_data(
    short_name="HAWKEYE_L1",
    version="1",
    bounding_box=(-122.5, 37.2, -121.8, 37.9),  # your area (W,S,E,N)
    temporal=("2024-01-01", "2024-12-31"),       # your dates
)
files = earthaccess.open(results)   # stream straight from OB_CLOUD
Browsing CMR needs no login. Downloading or streaming bytes needs a free Earthdata Login + the earthaccess package.