Developer Network NREL NREL Developer Network

Physical Solar Model (PSM) v3.1 TMY (/api/nsrdb/v2/solar/psm3-tmy-download)

This service has been replaced by a V3.2.2 version of the API. See PSM v3.2.2 TMY.

Request URL

GET|POST /api/nsrdb/v2/solar/psm3-tmy-download.format?parameters

Request Parameters

NOTE: when using POST to submit a request the api_key must still be included as a query parameter in the url. All other parameters may be included in a POST request as part of the payload.

Parameter Required Value Description
api_key Yes
Type: string
Default: None

Your developer API key. See API keys for more information.

wkt Yes
Type: well-known text string
Default: None
A well-known text (WKT) representation of the geometry for which to extract data. May be a point, multipoint, or polygon geometry. When a point is passed the site nearest to that point is used. When a multipoint is passed the site nearest each point is used. This can be useful for downloading multiple sites in a single request when those sites are geographically distant from each other. When a polygon is passed all sites that intersect with the given polygon are used.
attributes No
Type: comma delimited string array
Default: Returns ALL
Options: dhi, dni, ghi, dew_point, air_temperature, surface_pressure, wind_direction, wind_speed, surface_albedo
Each specified attribute(*) will be returned as a column in the resultant CSV download.
names Yes
Type: comma delimited string array
Default: None
Options: tmy-2017, tdy-2017, tgy-2017. tmy-2018, tdy-2018, tgy-2018, tmy-2019, tdy-2019, tgy-2019, tmy-2020, tdy-2020, tgy-2020
The TMY dataset for which data should be extracted.
utc No
Type: true or false
Default: true
Pass true to retrieve data with timestamps in UTC. Pass false to retrieve data with timestamps converted to local time of data point (without daylight savings time).
full_name No
Type: string
Default: None
The full name of the user requesting data.
email Yes
Type: email string
Default: None
An active email for the user requesting data. This email will be used to deliver the extracted data.
affiliation No
Type: string
Default: None
The organization with which the user requesting the data is affiliated.
reason No
Type: string
Default: None
The reason that the user is requesting the data.
mailing_list No
Type: true or false
Default: false
Pass true to add the email address to our list of recipients for the NSRDB mailing list.

Response Fields

The response is composed of service-related informational fields and the results of the data query.

Field Value Description
errors
Type: string array

A list of error messages

inputs
Type: Object Hash
Key: Value pairs representing all input parameters
outputs
Type: Object Hash
Upon successful completion a message will be returned informing the user that file generation is in progress and an email will be sent to the address provided in the email input field when the download is ready

Data File Format

Generated data files are formatted in accordance with the Standard Time Series Data File Format. This file format has been developed to support SAM and other NREL models and is documented fully in this PDF. More information on SAM file formats available on the SAM weather page.

Examples

JSON Output Format

GET /api/nsrdb/v2/solar/psm3-tmy-download.json?wkt=POINT(-99.49218%2043.83452)&attributes=dhi%2Cdni%2Cghi%2Cdew_point%2Cair_temperature%2Csurface_pressure%2Cwind_direction%2Cwind_speed%2Csurface_albedo%2C%2C%2C&names=tmy-2017%2Ctdy-2017%2Ctgy-2017&full_name=Louis%20Bourbon&email=user@company.com&affiliation=NREL&mailing_list=false&reason=test&utc=true
{
  "errors": [],
  "inputs": {
    "wkt": "POINT(-99.49218 43.83452)",
    "attributes": [
      "dhi",
      "dni",
      "ghi",
      "dew_point",
      "air_temperature",
      "surface_pressure",
      "wind_direction",
      "wind_speed",
      "surface_albedo"
    ],
    "names": [
      "tmy-2017",
      "tdy-2017",
      "tgy-2017"
    ],
    "full_name": "Louis Bourbon",
    "email": "user@company.com",
    "affiliation": "NREL",
    "mailing_list": false,
    "reason": "test",
    "utc": true
  },
  "outputs": {
    "message": "File generation in progress. An email will be sent to user@company.com when the download is ready."
  }
}

CSV Output Format

Direct streaming of CSV data is supported for single location, single year only. The following response example is truncated after the first few rows of data.

GET /api/nsrdb/v2/solar/psm3-tmy-download.csv?wkt=POINT(-99.49218%2043.83452)&attributes=dhi%2Cdni%2Cghi%2Cdew_point%2Cair_temperature%2Csurface_pressure%2Cwind_direction%2Cwind_speed%2Csurface_albedo%2C%2C%2C&names=tmy-2017%2Ctdy-2017%2Ctgy-2017&full_name=Louis%20Bourbon&email=user@company.com&affiliation=NREL&mailing_list=false&reason=test&utc=true
Source,Location ID,City,State,Country,Latitude,Longitude,Time Zone,Elevation,Local Time Zone,Dew Point Units,DHI Units,DNI Units,GHI Units,Temperature Units,Pressure Units,Wind Direction Units,Wind Speed,Surface Albedo Units,Version
NSRDB,629434,-,-,-,43.85,-99.5,0,507,-6,c,w/m2,w/m2,w/m2,c,mbar,Degrees,m/s,N/A,v3.0.0
Year,Month,Day,Hour,Minute,DHI,DNI,GHI,Dew Point,Temperature,Pressure,Wind Direction,Wind Speed,Surface Albedo
1998,1,1,0,0,0,0,0,0,1,950.0,43.2,3.3000000000000003,0.18508000671863556
1998,1,1,1,0,0,0,0,-1,1,940.0,54.1,3.4000000000000004,0.18508000671863556
1998,1,1,2,0,0,0,0,-1,1,940.0,58.0,3.5,0.18508000671863556
1998,1,1,3,0,0,0,0,-1,1,940.0,59.1,3.7,0.18508000671863556
1998,1,1,4,0,0,0,0,-1,1,940.0,60.1,3.8000000000000003,0.18508000671863556
1998,1,1,5,0,0,0,0,-1,1,940.0,62.0,3.7,0.18508000671863556
1998,1,1,6,0,0,0,0,-1,0,940.0,62.800000000000004,3.6,0.18508000671863556

sd

POST request example in Python

import requests

url = "http://developer.nrel.gov/api/nsrdb/v2/solar/psm3-tmy-download.json?api_key=yourapikeygoeshere"

payload = "wkt=POINT(-99.49218%2043.83452)&attributes=dhi%2Cdni%2Cghi%2Cdew_point%2Cair_temperature%2Csurface_pressure%2Cwind_direction%2Cwind_speed%2Csurface_albedo%2C%2C%2C&names=tmy-2017%2Ctdy-2017%2Ctgy-2017&full_name=Louis%20Bourbon&email=user@company.com&affiliation=NREL&mailing_list=false&reason=test&utc=true"

headers = {
    'content-type': "application/x-www-form-urlencoded",
    'cache-control': "no-cache"
}

response = requests.request("POST", url, data=payload, headers=headers)

print(response.text)

Rate Limits

Rate limits for this application are significantly less than the standard rate limits for developer.nrel.gov. This decrease in the limit is required as the data provided through this service is significantly more computationally intensive to generate and provide. These rate limits are carefully calculated to allow all users the maximum throughput that our servers can sustain.

There are several levels of rate limiting for this service. The first limit determines how many requests a given user can make per 24 hour period. For requests utilizing the .csv format this rate limit is set at 5000 a day at a frequency of no more than 1 per second. For all other requests this limit is set at 1000 requests per day at a frequency of no more than 1 every 2 seconds.

Secondly each user is limited to 20 in-flight requests at any given time.

In addition, the service has a fail-safe mechanism to prevent significant performance decreases that can be caused by unexpectedly high usage of the service. This limit will cause the service to stop accepting requests when the queue reaches a point where additional requests will significantly lower server performance. When this limit is hit, the service will error with a message describing that the request queue is full.

For some tips and tricks to maximize data downloads please read the guide here.

Contact

For questions about the API or the data models please contact nsrdb@nrel.gov

Errors

Standard errors may be returned. In addition, the following service-specific errors may be returned:

HTTP Status Code Description
400 Bad Request: When required parameters are missing.
Help Improve this Content