AgriculturalLand Use
USDA Cropland Data Layer
USDA National Agricultural Statistics Service. Crop-specific 30 m land cover for the United States.
More than 100 crop and land-cover classes mapped yearly from satellite imagery and farm-level ground truth. National coverage starts in 2008; some states go back to 1997.
- Source
- U.S. Department of Agriculture
- Resolution
- 30 m
- Data type
- Raster
- Time span
- 2008–present
- Temporal
- Annual
- Access type
- Direct download (external)
- Formats
- GeoTIFF
- Coverage
- Conterminous United States (-125, 24, -66, 50)
- Licence
- Public domain (U.S. Government work)
- Provider page
- www.nass.usda.gov/Research_and_Science/Cropland/SARS1a.php
Access
linkCropScape (select an area and download)
linkNational and state downloads
https://www.nass.usda.gov/Research_and_Science/Cropland/Release/index.php
curl "https://hydrological.org/api/v1/datasets/usda-cdl/links?bbox=-96.5,36,-94.5,38" \
-H "Accept: application/json"
import requests
r = requests.get("https://hydrological.org/api/v1/datasets/usda-cdl/links",
params={"bbox": "-96.5,36,-94.5,38"})
for group in r.json()["groups"]:
for link in group["links"]:
print(link["url"])
const res = await fetch("https://hydrological.org/api/v1/datasets/usda-cdl/links?bbox=-96.5,36,-94.5,38");
const { groups } = await res.json();
for (const g of groups) g.links.forEach(l => console.log(l.url));
Also available as JSON: links · manifest · dataset record