Hello, I want to integrate matlab with the api of power nasa. I search but I didn'f find information.
The link is this
I want to put the data in a matrix, so if someone know how tell me please.
Thank you.

답변 (1개)

Rik
Rik 2021년 4월 19일

2 개 추천

You're in luck: NASA decided to provide the data in JSON, and Matlab can parse that JSON output for you:
url='https://power.larc.nasa.gov/cgi-bin/v1/DataAccess.py?&request=execute&tempAverage=CLIMATOLOGY&identifier=SinglePoint&parameters=T2M&userCommunity=SB&lon=0&lat=0&outputList=JSON&user=DOCUMENTATION';
data=webread(url);
data.header
ans = struct with fields:
api_version: '1.1.0' fillValue: '-999' range: '30-year Meteorological and Solar Monthly & Annual Climatologies (January 1984 - December 2013), 22-year Additional Solar Parameter Monthly & Annual Climatologies (July 1983 - June 2005)' title: 'NASA/POWER SRB/MERRA2 0.5 x 0.5 Degree Climatologies'

카테고리

태그

답변:

Rik
2021년 4월 19일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by