@@ -290,21 +290,20 @@ function mizoguchi1990_soil_freezing_data(; context = nothing)
290
290
end
291
291
292
292
"""
293
- cesm2_albedo_dataset_folder( )
293
+ sw_albedo_dataset_folder(; context = nothing )
294
294
295
- Triggers the download of the CESM2 albedo folder, if not
295
+ Triggers the download of the sw_albedo folder, if not
296
296
already downloaded, using Julia Artifacts, and returns the path to
297
297
this file.
298
298
299
- This dataset contains monthly albedo data from 15/01/1850
300
- to 15/12/2014.
299
+ This dataset contains surface shortwave albedo calculated from CESM2 and CERES data.
301
300
"""
302
- function cesm2_albedo_dataset_folder (; context = nothing )
303
- return artifact_path = @clima_artifact (" cesm2_albedo " , context)
301
+ function sw_albedo_dataset_folder (; context = nothing )
302
+ return artifact_path = @clima_artifact (" sw_albedo " , context)
304
303
end
305
304
306
305
"""
307
- cesm2_albedo_dataset_path()
306
+ cesm2_albedo_dataset_path(; context = nothing )
308
307
309
308
Triggers the download of the CESM2 land albedo dataset, if not
310
309
already downloaded, using Julia Artifacts, and returns the path to
@@ -315,13 +314,13 @@ to 15/12/2014.
315
314
"""
316
315
function cesm2_albedo_dataset_path (; context = nothing )
317
316
return joinpath (
318
- cesm2_albedo_dataset_folder (; context),
317
+ sw_albedo_dataset_folder (; context),
319
318
" sw_albedo_Amon_CESM2_historical_r1i1p1f1_gn_185001-201412_v2_no-nans.nc" ,
320
319
)
321
320
end
322
321
323
322
"""
324
- bareground_albedo_dataset_path()
323
+ bareground_albedo_dataset_path(; context = nothing )
325
324
326
325
Triggers the download of the average bareground land albedo dataset, if not
327
326
already downloaded, using Julia Artifacts, and returns the path to
@@ -330,9 +329,24 @@ this file.
330
329
This dataset does not contain a time component.
331
330
"""
332
331
function bareground_albedo_dataset_path (; context = nothing )
332
+ return joinpath (sw_albedo_dataset_folder (; context), " bareground_albedo.nc" )
333
+ end
334
+
335
+ """
336
+ ceres_albedo_dataset_path(; context = nothing)
337
+
338
+ Triggers the download of the CERES land albedo dataset, if not
339
+ already downloaded, using Julia Artifacts, and returns the path to
340
+ this file.
341
+
342
+ This dataset contains the monthly average shortwave albedo in the
343
+ `sw_alb` variable, and the monthly average clear-sky shortwave albedo in the
344
+ `sw_alb_clr` variable. Both variables cover from 15/03/2000 to 15/10/2019.
345
+ """
346
+ function ceres_albedo_dataset_path (; context = nothing )
333
347
return joinpath (
334
- cesm2_albedo_dataset_folder (; context),
335
- " bareground_albedo .nc" ,
348
+ sw_albedo_dataset_folder (; context),
349
+ " sw_albedo_Amon_CERES_EBAF_Ed4.2_Subset_200003-201910 .nc" ,
336
350
)
337
351
end
338
352
0 commit comments