All data sources

NASA POWER

No authnasa-power

NASA POWER (Prediction Of Worldwide Energy Resources) — global solar, wind, and meteorological resource data for renewable-energy siting. Satellite + reanalysis climate data via point (lat/lon) queries. Long-term climatology (monthly + annual averages — the siting workhorse), plus daily and monthly time series. 152 RE-community parameters; defaults cover solar GHI/DNI/clear-sky, wind at 50 m and 10 m, and temperature. No auth.

Provenance

PublisherNASA POWER

Freshness & coverage

FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationNo credentials required

Methods (4)

  • getClimatology

    read

    Long-term monthly + annual averages — the workhorse for renewable siting

    Input schema
    {
      "type": "object",
      "properties": {
        "parameters": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          ]
        },
        "community": {
          "type": "string"
        },
        "start": {
          "type": "string"
        },
        "end": {
          "type": "string"
        },
        "lat": {
          "type": "number",
          "examples": [
            32
          ]
        },
        "lon": {
          "type": "number",
          "examples": [
            -102
          ]
        }
      },
      "additionalProperties": false
    }

    Args: lat, lon, parameters? (<=20, comma-separated), community? (RE|SB|AG)

  • getDailyResource

    read

    Daily solar/wind/temperature time series for a point

    Input schema
    {
      "type": "object",
      "properties": {
        "parameters": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          ]
        },
        "community": {
          "type": "string"
        },
        "start": {
          "type": "string",
          "examples": [
            "20240101"
          ]
        },
        "end": {
          "type": "string",
          "examples": [
            "20240131"
          ]
        },
        "lat": {
          "type": "number",
          "examples": [
            32
          ]
        },
        "lon": {
          "type": "number",
          "examples": [
            -102
          ]
        }
      },
      "additionalProperties": false
    }

    start/end in YYYYMMDD

  • getMonthlyResource

    read

    Monthly means for a point across a year range

    Input schema
    {
      "type": "object",
      "properties": {
        "parameters": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          ]
        },
        "community": {
          "type": "string"
        },
        "start": {
          "type": "string",
          "examples": [
            "2020"
          ]
        },
        "end": {
          "type": "string",
          "examples": [
            "2023"
          ]
        },
        "lat": {
          "type": "number",
          "examples": [
            32
          ]
        },
        "lon": {
          "type": "number",
          "examples": [
            -102
          ]
        }
      },
      "additionalProperties": false
    }

    start/end in YYYY

  • getServiceInfo

    read

    Static API overview — endpoints, key RE parameters, communities, date formats

    Input schema
    {
      "type": "object",
      "properties": {},
      "additionalProperties": false
    }