@@ -143,6 +143,12 @@ def get_cams(latitude, longitude, start, end, email, identifier='mcclear',
143
143
e.g. `sza` becomes `solar_zenith`. See variable :const:`VARIABLE_MAP` for
144
144
the complete mapping.
145
145
146
+ For large geospatial areas, CAMS offers a pre-calculated
147
+ gridded dataset [4]_ over land and coastal areas. This dataset
148
+ may not include the most recent data coverage and may not be
149
+ based on the most recent CAMS version. This dataset is not available
150
+ through pvlib.
151
+
146
152
See Also
147
153
--------
148
154
pvlib.iotools.read_cams, pvlib.iotools.parse_cams
@@ -155,13 +161,15 @@ def get_cams(latitude, longitude, start, end, email, identifier='mcclear',
155
161
156
162
References
157
163
----------
158
- .. [1] `CAMS solar radiation documentation
159
- <https://atmosphere.copernicus.eu/solar-radiation>`_
164
+ .. [1] `CAMS solar radiation time-series documentation. Climate Data Store.
165
+ <https://ads. atmosphere.copernicus.eu/datasets/cams- solar-radiation-timeseries >`_
160
166
.. [2] `CAMS Radiation Automatic Access (SoDa)
161
167
<https://www.soda-pro.com/help/cams-services/cams-radiation-service/automatic-access>`_
162
168
.. [3] A. R. Jensen et al., pvlib iotools — Open-source Python functions
163
169
for seamless access to solar irradiance data. Solar Energy. 2023. Vol
164
170
266, pp. 112092. :doi:`10.1016/j.solener.2023.112092`
171
+ .. [4] `CAMS gridded solar radiation documentation.
172
+ <https://ads.atmosphere.copernicus.eu/datasets/cams-gridded-solar-radiation>`_
165
173
"""
166
174
try :
167
175
time_step_str = TIME_STEPS_MAP [time_step ]
@@ -268,8 +276,8 @@ def parse_cams(fbuf, integrated=False, label=None, map_variables=True):
268
276
269
277
References
270
278
----------
271
- .. [1] `CAMS solar radiation documentation
272
- <https://atmosphere.copernicus.eu/solar-radiation>`_
279
+ .. [1] `CAMS solar radiation time-series documentation. Climate Data Store.
280
+ <https://ads. atmosphere.copernicus.eu/datasets/cams- solar-radiation-timeseries >`_
273
281
"""
274
282
metadata = {}
275
283
# Initial lines starting with # contain metadata
@@ -370,8 +378,8 @@ def read_cams(filename, integrated=False, label=None, map_variables=True):
370
378
371
379
References
372
380
----------
373
- .. [1] `CAMS solar radiation documentation
374
- <https://atmosphere.copernicus.eu/solar-radiation>`_
381
+ .. [1] `CAMS solar radiation time-series documentation. Climate Data Store.
382
+ <https://ads. atmosphere.copernicus.eu/datasets/cams- solar-radiation-timeseries >`_
375
383
"""
376
384
with open (str (filename ), 'r' ) as fbuf :
377
385
content = parse_cams (fbuf , integrated , label , map_variables )
0 commit comments