Skip to content

Commit ee9d526

Browse files
committed
fixed references to psm3
1 parent 026738e commit ee9d526

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

pvlib/iotools/goes4.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -171,10 +171,10 @@ def get_goes4(latitude, longitude, api_key, email, names='tmy', interval=60,
171171
# convert to string to accomodate integer years being passed in
172172
names = str(names)
173173

174-
# convert pvlib names in attributes to psm3 convention
174+
# convert pvlib names in attributes to psm3/goes4 convention
175175
attributes = [REQUEST_VARIABLE_MAP.get(a, a) for a in attributes]
176176

177-
# required query-string parameters for request to PSM3 API
177+
# required query-string parameters for request to GOES4 API
178178
params = {
179179
'api_key': api_key,
180180
'full_name': full_name,
@@ -189,7 +189,7 @@ def get_goes4(latitude, longitude, api_key, email, names='tmy', interval=60,
189189
'utc': 'false',
190190
'interval': interval
191191
}
192-
# request CSV download from NREL PSM3
192+
# request CSV download from NREL GOES4
193193
if url is None:
194194
# determine the endpoint that suits the user inputs
195195
if any(prefix in names for prefix in ('tmy', 'tgy', 'tdy')):

0 commit comments

Comments
 (0)