LANDSAT/LC08/C01/T1_8DAY_NDVI下载
时间: 2023-08-13 12:05:53 浏览: 190
LANDSAT 卫星数据下载方法
您可以使用以下代码来下载LANDSAT 8的8天间隔的NDVI数据:
```python
import requests
# 设置LANDSAT 8的场景ID和日期
scene_id = "LC08_L1TP_XXXYYY_ZZZZZZ"
start_date = "YYYY-MM-DD"
end_date = "YYYY-MM-DD"
# 构建API请求URL
url = f"https://earthexplorer.usgs.gov/inventory/json/v/1.4.0/timedownload?dataset=LANDSAT_8_C1&node=EE&node=EE&dataset_id=LANDSAT_8_C1&entity_id={scene_id}&product_id=NDVI&start_date={start_date}&end_date={end_date}&hierarchical=true"
# 发送API请求
response = requests.get(url)
data = response.json()
# 获取下载链接
download_url = data["data"][0]["url"]
# 下载数据
response = requests.get(download_url)
with open("NDVI.zip", "wb") as file:
file.write(response.content)
```
请将代码中的`scene_id`替换为您想要下载的LANDSAT 8场景的ID,`start_date`和`end_date`替换为您想要下载的时间范围。此代码将从USGS Earth Explorer API获取下载链接,并将NDVI数据保存在名为"NDVI.zip"的文件中。
阅读全文