Pixel location helper file (Aqua, 1 km)
What it measures. This is a helper file that pins down exactly where each 1 km MODIS pixel sits on Earth, listing latitude, longitude, surface height, sun and satellite angles, and a land/sea flag. It does not contain images itself, only the location and geometry for them.
How it's made. It is computed for the MODIS instrument on NASA's Aqua satellite using the spacecraft's position and orientation, instrument telemetry, and a digital elevation model.
How & where you'd use it. This is a behind-the-scenes input used by many other MODIS products to place their measurements on the map. Most people use it indirectly through those finished products.
What's measured
Coverage & cadence
- Time span2002-07-03 → ongoing
- Measured byAqua (MODIS)
- Processing levelLevel 1A
- Spatial extent-180, -90, 180, 90
- FormatsHDF-EOS
- StatusACTIVE
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 MODIS/Aqua Geolocation Fields 5-Min L1A Swath 1km are calculated for each 1 km MODIS Instantaneous Field of Views (IFOV) for all orbits daily (in Collection 6 and later, information is provided to calculate 500m geolocation fields). The locations and ancillary information corresponds to the intersection of the centers of each IFOV from 10 detectors in an ideal 1 km band on the Earth's surface. A digital terrain model is used to model the Earth's surface. The main inputs are the spacecraft attitude and orbit, the instrument telemetry and the digital elevation model. The geolocation fields include geodetic Latitude, Longitude, surface height above geoid, solar zenith and azimuth angles, satellite zenith and azimuth angles, and a land/sea mask for each 1 km sample. Additional information is included in the header to enable the calculation of the approximate location of the center of the detectors of any of the 36 MODIS bands. This product is used as input by a large number of subsequent MODIS products, particularly the products produced by the Land team. The short name for this product is MYD03. Each file is roughly 30 MB in size, and the total data volume is approximately 8 GB/day. See the MODIS Science Team homepage for more data set information: https://modis.gsfc.nasa.gov/data/dataprod/
Get the data
import earthaccess
earthaccess.login(strategy="netrc") # free Earthdata Login
results = earthaccess.search_data(
short_name="MYD03",
version="6.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 LAADS Browsing CMR needs no login. Downloading or streaming bytes needs a free Earthdata Login + the earthaccess package. Official links
- MODIS Level 1A Product ATBD VIEW RELATED INFORMATION
- Search and order products from LAADS website. GET DATA
- Direct access to the https site and directory hosting the MYD03 C6.1 data set. GET DATA
- Direct access to the OPenDAP for the MYD03 C6.1 data set. USE SERVICE API
- Earthdata Search allows users to search, discover, visualize, refine, and access NASA Earth Observation data. GET DATA