Full catalog/WV04_MSI_L1B
WV04_MSI_L1B·v1·dataset

High-resolution 4-color satellite photos (WorldView-4)

WorldView-4 Level 1B Multispectral 4-Band Satellite Imagery
land NASA CSDA Level 1B NITF21NCDRDGeoTIFF
In plain English

What it measures. Very high-resolution satellite photos in four colors: blue, green, red, and near-infrared. At its sharpest each pixel is about 1.24 meters across, fine enough to pick out detailed features on the ground.

How it's made. Captured by the commercial WorldView-4 satellite between late 2016 and early 2019; this is raw, sensor-corrected imagery that hasn't yet been map-projected.

How & where you'd use it. Serves many applications that need very detailed imagery; access is restricted under a commercial license and requires approval through NASA's commercial data program.

What's measured

LAND SURFACE › SURFACE RADIATIVE PROPERTIES › REFLECTANCESPECTRAL/ENGINEERING › VISIBLE WAVELENGTHS › VISIBLE IMAGERYSPECTRAL/ENGINEERING › VISIBLE WAVELENGTHS › VISIBLE RADIANCESPECTRAL/ENGINEERING › INFRARED WAVELENGTHS › INFRARED IMAGERYSPECTRAL/ENGINEERING › INFRARED WAVELENGTHS › INFRARED RADIANCE

Coverage & cadence

  • Time span2016-12-01 → 2019-01-07
  • Measured byWORLDVIEW-4 (WV110)
  • Processing levelLevel 1B
  • Spatial extent-180, -90, 180, 90
  • FormatsNITF21NCDRD, GeoTIFF
  • StatusCOMPLETE

What you can do with it

  • Track deforestation, fire scars and land-cover change
  • Monitor crop and vegetation health (NDVI/EVI)
  • Map how built-up vs. green an area is over time
Official description

The WorldView-4 Multispectral 4-Band Imagery collection contains satellite imagery acquired from Vantor, Inc. (formerly known as Maxar Technologies) by the Commercial Satellite Data Acquisition (CSDA) Program. Imagery was collected by the WorldView-4 satellite using the SpaceView-110 camera across the global land surface from December 2016 to January 2019. This satellite imagery is in the visible and near-infrared waveband range with data in the blue, green, red, and near-infrared wavelengths. The multispectral imagery has a spatial resolution of 1.24m at nadir and has a temporal resolution of approximately 1.1 days. The data are provided in National Imagery Transmission Format (NITF) and GeoTIFF formats. This level 1B data is sensor corrected and is an un-projected (raw) product. The data potentially serve a wide variety of applications that require high resolution imagery. Data access is restricted based on a Maxar End User License Agreement for Worldview 4 imagery and investigators must be approved by the CSDA Program.

Get the data

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

results = earthaccess.search_data(
    short_name="WV04_MSI_L1B",
    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 CSDA
Browsing CMR needs no login. Downloading or streaming bytes needs a free Earthdata Login + the earthaccess package.