Provenance
Freshness & coverage
Methods (4)
getClimatology
readLong-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
readDaily 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
readMonthly 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
readStatic API overview — endpoints, key RE parameters, communities, date formats
Input schema
{ "type": "object", "properties": {}, "additionalProperties": false }
