Tous les jeux de données

NASA POWER daily weather & solar/wind energy — 54 world cities

Daily solar and meteorological parameters for 54 world cities from NASA's POWER API (sources: SYN1deg, MERRA-2), 2020-01-01 to yesterday: air temperature (mean/max/min), precipitation, relative humidity, wind speed (10 m and 50 m) and direction, surface pressure, and all-sky / clear-sky surface solar irradiance plus total photosynthetically active radiation.

Source: NASA POWER132,570 lignesMis à jour: 21/09/2026Licence: CC0-1.0
nasaweatherclimatesolar-energywind-energytemperatureprecipitation

Qualité

99.9

Attribution

The data was obtained from the National Aeronautics and Space Administration (NASA) Langley Research Center (LaRC) Prediction of Worldwide Energy Resource (POWER) Project funded through the NASA Earth Science/Applied Science Program.

Schéma

ColonneTypeDescription
datestringObservation date from the POWER API response keys. Daily temporal keys are YYYYMMDD; monthly temporal keys are YYYYMM, stored as the first day of that month.
citystringName of the world city the point location represents (curated by the connector; not part of the POWER API response).
countrystringCountry of the world city (curated by the connector; not part of the POWER API response).
latitudefloatLatitude of the requested POWER point in decimal degrees (curated by the connector). (unit: decimal degrees)
longitudefloatLongitude of the requested POWER point in decimal degrees (curated by the connector). (unit: decimal degrees)
t2mfloatTemperature at 2 Meters — POWER API parameter T2M (community RE). (unit: C)
t2m_maxfloatTemperature at 2 Meters Maximum — POWER API parameter T2M_MAX (community RE). (unit: C)
t2m_minfloatTemperature at 2 Meters Minimum — POWER API parameter T2M_MIN (community RE). (unit: C)
prectotcorrfloatPrecipitation Corrected — POWER API parameter PRECTOTCORR (community RE). (unit: mm/day)
rh2mfloatRelative Humidity at 2 Meters — POWER API parameter RH2M (community RE). (unit: %)
ws10mfloatWind Speed at 10 Meters — POWER API parameter WS10M (community RE). (unit: m/s)
psfloatSurface Pressure — POWER API parameter PS (community RE). (unit: kPa)
allsky_sfc_sw_dwnfloatAll Sky Surface Shortwave Downward Irradiance — POWER API parameter ALLSKY_SFC_SW_DWN (community RE). (unit: kW-hr/m^2/day)
clrsky_sfc_sw_dwnfloatClear Sky Surface Shortwave Downward Irradiance — POWER API parameter CLRSKY_SFC_SW_DWN (community RE). (unit: kW-hr/m^2/day)
allsky_sfc_par_totfloatAll Sky Surface Total PAR — POWER API parameter ALLSKY_SFC_PAR_TOT (community RE). (unit: kW-hr/m^2/day)
ws50mfloatWind Speed at 50 Meters — POWER API parameter WS50M (community RE). (unit: m/s)
wd50mfloatWind Direction at 50 Meters — POWER API parameter WD50M (community RE). (unit: Degrees)

Exemple de lignes

datecitycountrylatitudelongitudet2mt2m_maxt2m_minprectotcorrrh2mws10mpsallsky_sfc_sw_dwnclrsky_sfc_sw_dwnallsky_sfc_par_totws50mwd50m
2020-01-01Addis AbabaEthiopia9.0338.7514.6123.667.410.0171.212.8677.095.92086.58852.6034.2392.3
2020-01-02Addis AbabaEthiopia9.0338.7515.0523.257.80.1773.513.6277.145.39146.39482.38635.4390.6
2020-01-03Addis AbabaEthiopia9.0338.7515.0523.058.140.0771.234.1677.194.80266.4322.17156.0481.5
2020-01-04Addis AbabaEthiopia9.0338.7515.1623.67.670.0468.823.9477.085.72596.60312.51985.8686.2
2020-01-05Addis AbabaEthiopia9.0338.7515.424.688.07059.53.5177.016.54946.78312.88075.1286.8

Utiliser avec un LLM

Dirigez n’importe quel LLM vers le point d’accès des métadonnées — la documentation ci-dessus est aussi lisible par machine (JSON-LD + Croissant).

cURL

curl "https://datazimuts.com/v1/datasets/nasa_power/nasa_power_daily_weather_energy" | jq '{title, rows, columns_count, license}'

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/nasa_power/nasa_power_daily_weather_energy").json()
print(ds["title"], ds["rows"], "rows")

# Sample rows for an LLM context window
for row in ds.get("sample_rows", [])[:5]:
    print(row)

Point d’accès API: https://datazimuts.com/v1/datasets/nasa_power/nasa_power_daily_weather_energy

Astuce : récupérez /llms.txt pour le catalogue complet lisible par machine.