View source: R/update-datafile.R
update_datafile | R Documentation |
Mettre à jour un les métadonnées d'un datafile.
update_datafile(datafile)
datafile |
un objet datafile retourné par |
un objet dido_job()
invisible
Other datafile:
add_datafile()
,
add_or_update_datafile()
,
delete_datafile()
,
dido_datafile()
,
get_datafile()
,
list_datafiles()
library(dplyr, warn.conflicts = FALSE)
datafile <- list_datafiles() %>%
filter(title == "Un fichier de données de test") %>%
get_datafile() %>%
clean_metadata()
datafile$temporal_coverage$start <- "2022-01-01"
datafile$temporal_coverage$end <- "2023-12-31"
update_datafile(datafile)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.