Global bare soil, photosynthetic and non-photosynthetic vegetation fraction annual at 500 m resolution
Description
Annual mean and std for (1) bare soil fraction, and (2) photosynthetic and (3) non-photosynthetic vegetation annual at 500 m resolution for 2001–2023. The dataset was obtained from: https://thredds.nci.org.au/thredds/catalog/tc43/modis-fc/v310/tiles/monthly/cover/catalog.html (monthly values; 320GB in total). Mean and std was derived using terra package in R using functions "mean" and "std" from 12 monthly values; missing values were ignored during derivation.
Note: the Global Vegetation Fractional Cover Product (GVFCP) v3.1 (Hill and Guerschman, 2022) is derived from spectral unmixing of all seven optical bands from the 500 m MODIS (Moderate Resolution Imaging Spectroradiometer) Nadir BRDF (Bidirectional Reflectance Distribution Function)-adjusted Reflectance Product (NBAR, MCD43A4 Collection 6). A similar dataset has been produced by Sun et al., (2024), covering period 2001–2022. Below is the sample code explaining how were the mean, max and std derived.
## Download from: https://thredds.nci.org.au/thredds/catalog/tc43/modis-fc/v310/tiles/monthly/cover/catalog.html
## wget -e robots=off -nH --cut-dirs 4 -nc -r -l5 -A '*.nc' -R 'catalog*' -I /thredds/fileServer/,/thredds/catalog/ 'https://thredds.nci.org.au/thredds/catalog/tc43/modis-fc/v310/tiles/monthly/cover/catalog.html'
## 6857 tiles
library(terra)
modis.tiles = list.files("/mnt/lacus/raw/modis-fc/v310/tiles/monthly/cover/", pattern = glob2rx("*.nc"))
mod.lst = unique(sapply(modis.tiles, function(i){strsplit(i, "\\.")[[1]][4]}))
str(mod.lst)
## 272
## aggregate per year per tile
nc_tile <- function(i, year, dir.x="/mnt/lacus/raw/modis-fc/v310/tiles/monthly/cover/", mc.cores=parallel::detectCores()){
require(terra)
if(year == 2023 | year == 2024){
in.filename = paste0(dir.x, "FC_Monthly_Medoid.v310.MCD43A4.", i, ".", year, ".061.nc")
} else {
in.filename = paste0(dir.x, "FC_Monthly_Medoid.v310.MCD43A4.", i, ".", year, ".006.nc")
}
bs.filenames = paste0("./modis-fc/bs_", c("mean", "max", "std"), "/FC_Monthly_Medoid.v310.MCD43A4.", i, ".", year, ".006.tif")
dg = terra::rast(in.filename)
if(any(!file.exists(bs.filenames))){
bs = dg["bare_soil"] ## 12 months
dg.m = app(bs, fun=mean, na.rm=TRUE,
filename=bs.filenames[1],
wopt=list(gdal=c("COMPRESS=DEFLATE"), datatype='INT1S'),
overwrite=TRUE, cores = mc.cores)
dg.x = app(bs, fun=max, na.rm=TRUE,
filename=bs.filenames[2],
wopt=list(gdal=c("COMPRESS=DEFLATE"), datatype='INT1S'),
overwrite=TRUE, cores = mc.cores)
dg.s = app(bs, fun=sd, na.rm=TRUE,
filename=bs.filenames[3],
wopt=list(gdal=c("COMPRESS=DEFLATE"), datatype='INT1S'),
overwrite=TRUE, cores = mc.cores)
}
}
## run in parallel
for(year in 2001:2024){
x = parallel::mclapply(sample(mod.lst), function(i){try( nc_tile(i, year=year, mc.cores = 2) )}, mc.cores = 40)
tmpFiles(remove=TRUE)
}
Files
00_preview_bare_soil_timeseries.png
Files
(40.9 GB)
| Name | Size | Download all |
|---|---|---|
|
md5:db2dec080793dd7c3143310cc8363625
|
2.7 MB | Preview Download |
|
md5:eea94c329f71e90751767f6ae6f03d8a
|
471.6 MB | Preview Download |
|
md5:65a35c8907fcbec3dc7bfc026645dfa9
|
474.0 MB | Preview Download |
|
md5:a4cb3ed4a61dfb6d9467df6e99b2c8a1
|
481.7 MB | Preview Download |
|
md5:d17d249cad2212b551355d58d25f34ff
|
481.9 MB | Preview Download |
|
md5:bf3d64ba497fbc77ad54e7b06d1844a5
|
480.7 MB | Preview Download |
|
md5:1bfa6afb37a2c6545cbb842e9398c7ba
|
478.8 MB | Preview Download |
|
md5:0597ef142e5e34e676b1fe93e0c4b941
|
481.1 MB | Preview Download |
|
md5:a5a3239f7338e13537ddcfa7a4de424e
|
480.4 MB | Preview Download |
|
md5:9860e25c48456011315cfc8a25b806f7
|
477.5 MB | Preview Download |
|
md5:92f84d9ae6930644c6844dd95441f693
|
477.2 MB | Preview Download |
|
md5:6a56a4eb5068b8dd478bb5b62316a0a9
|
478.7 MB | Preview Download |
|
md5:4d03ca20cd0b09a93b939d7c8619bbaf
|
479.7 MB | Preview Download |
|
md5:ef6f333ec61287472c5da31439f4e2fd
|
482.5 MB | Preview Download |
|
md5:2b2fdf4d62543e9e64d3d850ee5a5b6f
|
480.9 MB | Preview Download |
|
md5:4479190fbacdf723b1f8fe1b5790791a
|
482.3 MB | Preview Download |
|
md5:f053ddec15cc2372f0d051f3cfca081d
|
481.5 MB | Preview Download |
|
md5:f1ef85eb7286e8123a79121e7f39d9fb
|
484.0 MB | Preview Download |
|
md5:97bed5cfab12302e8518dbb893c34ac5
|
484.3 MB | Preview Download |
|
md5:82b7955cbc8a01827a74961375d8edb8
|
487.3 MB | Preview Download |
|
md5:3b83f31c597c42e95e8dfd771dd9bbc4
|
483.5 MB | Preview Download |
|
md5:8b032e19b10fda38a83cf1e7b1a995be
|
485.1 MB | Preview Download |
|
md5:fd2f571be29ecd1c2c57a5060a253a30
|
493.1 MB | Preview Download |
|
md5:df897458f1b455a7ba726cf24b98138e
|
486.5 MB | Preview Download |
|
md5:c6fd5f93d12af6b8287bdaed612d83c5
|
362.3 MB | Preview Download |
|
md5:e1495a0ff3deb2523e09a2abfd4ea027
|
362.5 MB | Preview Download |
|
md5:da8dc82a0b07a734f63833012b818918
|
369.3 MB | Preview Download |
|
md5:c607d3dd9630a1315ff5569999fe4548
|
369.9 MB | Preview Download |
|
md5:c9df6e05f67052ef97346123186b6428
|
367.3 MB | Preview Download |
|
md5:a1fc80b27549ed601805effc697b559b
|
365.9 MB | Preview Download |
|
md5:f3dc860d179fbfe6bfd890060e0850de
|
367.7 MB | Preview Download |
|
md5:607039d6aa1df5d69e45c0c6cbc709ba
|
366.5 MB | Preview Download |
|
md5:a809e62f7614c10a00e3e9c14fa8bb51
|
361.0 MB | Preview Download |
|
md5:127e8601a5f9f075b580502b7f798f0e
|
364.5 MB | Preview Download |
|
md5:7934d92f2e3fca0ad8eecbcfca10bbf3
|
367.1 MB | Preview Download |
|
md5:6fd6b429840c1e7bcc92143eae4b6eb9
|
366.5 MB | Preview Download |
|
md5:a45a33aa3cea5a32b69bfaa261698d9e
|
367.9 MB | Preview Download |
|
md5:1dddef6eea84006120ca38c77f782c17
|
368.0 MB | Preview Download |
|
md5:0fe833d161516a5e2af608f1af928ced
|
369.5 MB | Preview Download |
|
md5:cf29a368c1e72a84aa9d1b258fb2c915
|
370.7 MB | Preview Download |
|
md5:6cd4782bf0be07c270bdac7160b98d82
|
374.0 MB | Preview Download |
|
md5:95ab7d2ccf0475ca1377f08afdf8af21
|
373.9 MB | Preview Download |
|
md5:a455e5e3293c89aaeeef002ef9dfe387
|
374.3 MB | Preview Download |
|
md5:a212462bcfe3b1ac5db46af92b42d17d
|
372.8 MB | Preview Download |
|
md5:0424378dfa6c793f49f4c6b505d5c989
|
370.8 MB | Preview Download |
|
md5:60f0913d28e2a43e016fccefaf53c5c5
|
383.3 MB | Preview Download |
|
md5:6292f4a771c3496a867f467b369d8731
|
373.6 MB | Preview Download |
|
md5:f44b8596ed7ab5aa348b15834d5e5160
|
4.9 MB | Preview Download |
|
md5:8ffe55a04796e79bbc3e997494e111a1
|
544.4 MB | Preview Download |
|
md5:f188321cb8266780733e14b8d0ec91c4
|
543.3 MB | Preview Download |
|
md5:3e22107795362c8ea3d600f23dfbdd3b
|
545.7 MB | Preview Download |
|
md5:a5cfefad8daf9b7be17ee827e9a95870
|
547.5 MB | Preview Download |
|
md5:77f5f05325b09bf82fb2b026aa000b3d
|
544.1 MB | Preview Download |
|
md5:4967637fda5d538d122a990808de3195
|
545.7 MB | Preview Download |
|
md5:547e0b4e74e1dde019037c76300a7740
|
546.2 MB | Preview Download |
|
md5:7ab38d05644a22d8baf8c344901f095e
|
547.0 MB | Preview Download |
|
md5:31e93f8fcee2ae3315dc0bea369e1ab0
|
545.5 MB | Preview Download |
|
md5:b14b04912478d4eba4321256542dd360
|
546.2 MB | Preview Download |
|
md5:1c02611cd6349ebc3f23e817a0c29d01
|
547.5 MB | Preview Download |
|
md5:9729f7b37a581eb12c5f9ce29c778174
|
547.3 MB | Preview Download |
|
md5:42176121c1c4534ece6cc59d370153c8
|
549.4 MB | Preview Download |
|
md5:e9eeabcb83f35633e3c759d1ece3e6b5
|
548.7 MB | Preview Download |
|
md5:3758897bcc0cc122ca69f992c071b2b9
|
549.7 MB | Preview Download |
|
md5:b968bde2f10532947cca652bd09e108c
|
547.7 MB | Preview Download |
|
md5:9eee2ba0b8f9c855db84953448c83cbf
|
550.5 MB | Preview Download |
|
md5:e25051663e36558ec052a66e7c6c0a84
|
548.5 MB | Preview Download |
|
md5:9bdfd65253547db13c7f1df833fe91e8
|
552.0 MB | Preview Download |
|
md5:a95de4322e44a25219261ffb1b5e5be1
|
547.4 MB | Preview Download |
|
md5:1ae7d910cb7319849c7aeefc7fcb2a69
|
546.7 MB | Preview Download |
|
md5:6562237df48925aa1294029133ba41b3
|
553.5 MB | Preview Download |
|
md5:bfccecbd629b69bf94de427f860f1c15
|
554.1 MB | Preview Download |
|
md5:b8cccb0b44ac02edd5dda28fc1f1e1e1
|
349.5 MB | Preview Download |
|
md5:0111430211eec234afc87dae6eb3aba7
|
353.4 MB | Preview Download |
|
md5:fdd286c6b2a8f94df9a1f13454a9e914
|
353.8 MB | Preview Download |
|
md5:0611ffe7e59ca0b72c82ecba26664ce1
|
353.3 MB | Preview Download |
|
md5:2ed25bd2dd5c188708111f22938a8f91
|
351.7 MB | Preview Download |
|
md5:aaa554877d7bff68ce65123aba3870d5
|
353.4 MB | Preview Download |
|
md5:713301dae378f9e13d02020b2e983066
|
351.0 MB | Preview Download |
|
md5:84536180cefeecbf453920a1afb095df
|
352.7 MB | Preview Download |
|
md5:07017b1662700529505383ff829dfd0b
|
353.3 MB | Preview Download |
|
md5:44e42c23b41b72141383d1ac04c93453
|
355.3 MB | Preview Download |
|
md5:a744348e102ce1efc4699e6b3b986264
|
354.3 MB | Preview Download |
|
md5:4857388fed00c89250e46e6675ec575f
|
355.1 MB | Preview Download |
|
md5:484921c7b6fda7beb9be6a9a5548f178
|
354.6 MB | Preview Download |
|
md5:76f2e81414cd74ffdeb10f96a7568f6a
|
356.5 MB | Preview Download |
|
md5:6203d61c80688c972e0692cc8a651262
|
357.1 MB | Preview Download |
|
md5:e9b5baa22e4d41763c836cebcdc45eb3
|
359.7 MB | Preview Download |
|
md5:cb44b9cdc942d1751f0e1913fe79454d
|
356.0 MB | Preview Download |
|
md5:2f51a6bf04ba46cbfbdee7f3041e0b1e
|
356.8 MB | Preview Download |
|
md5:fb6c752f783962f6bfb537d5dc3f7925
|
363.1 MB | Preview Download |
|
md5:4ea9b391d6067d05b4029933b6d95b40
|
358.7 MB | Preview Download |
|
md5:d540effe45e77aa4599b5315193c71d1
|
533.0 MB | Preview Download |
|
md5:a14d8db64167064df84c506c1828636d
|
545.8 MB | Preview Download |
|
md5:d311604d312e915110f48dc812188e7b
|
546.1 MB | Preview Download |
Additional details
Funding
References
- Hill, M. J., & Guerschman, J. P. (2022). Global trends in vegetation fractional cover: Hotspots for change in bare soil and non-photosynthetic vegetation. Agriculture, Ecosystems & Environment, 324, 107719. https://doi.org/10.1016/j.agee.2021.107719