I am a student doing research using MODIS products. I would like to download MOD07_L2 products. I tried running it as it appears on this site(text), but MOD07_L2 did not exist in the list of products that can be downloaded. Is there any other way to download MOD07_L2 products? Any help is welcome.
Attached is the result obtained by executing the code below.
enter image description here
import requests
import json
import pandas as pd
url = “https://modis.ornl.gov/rst/api/v1/”
header = {‘Accept’: ‘application/json’}
response = requests.get(‘https://modis.ornl.gov/rst/api/v1/products?tool=GlobalSubset’, headers=header) meta = json.loads(response.text)[‘products’]
products = pd.DataFrame(meta)[‘product’]
print(products)
전수빈 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.