Get list of links to IATF resolutions from Department of Health website

get_iatf_links(base = base_urls[[1]])

Arguments

base

URL to the Department of Health IATF resolutions webpage. This is currently at http://www.doh.gov.ph/COVID-19/IATF-Resolutions/

Value

A tibble containing absolute links to all the current IATF resolutions at time of extraction. The tibble contains the following information:

  • idResolution number

  • titleTitle of resolution

  • dateDate (in <YYYY-MM-DD> format) resolution was issued

  • sourceSource of resolution. This is by default from IATF

  • typeType of document. This is by default a resolution

  • urlAbsolute URL for PDF of resolution

  • checkedDate (in <YYYY-MM-DD format) table was extracted. This is by default provided by Sys.Date

Examples

base <- system.file("extdata", "iatf.html", package = "covidphtext") get_iatf_links(base = base)
#> Warning: NAs introduced by coercion
#> # A tibble: 74 x 7 #> id title date source type url checked #> <dbl> <chr> <date> <chr> <chr> <chr> <date> #> 1 9 Recommendations f… 2020-03-03 IATF reso… https://doh.gov.… 2020-08-12 #> 2 10 Recommendations f… 2020-03-09 IATF reso… https://doh.gov.… 2020-08-12 #> 3 11 Recommendations f… 2020-03-12 IATF reso… https://doh.gov.… 2020-08-12 #> 4 12 Recommendations f… 2020-03-13 IATF reso… https://doh.gov.… 2020-08-12 #> 5 13 Recommendations f… 2020-03-17 IATF reso… https://doh.gov.… 2020-08-12 #> 6 14 Resolutions Relat… 2020-03-20 IATF reso… https://doh.gov.… 2020-08-12 #> 7 15 Resolutions Relat… 2020-03-25 IATF reso… https://doh.gov.… 2020-08-12 #> 8 16 Additional Guidel… 2020-03-30 IATF reso… https://doh.gov.… 2020-08-12 #> 9 17 Recommendations R… 2020-03-30 IATF reso… https://doh.gov.… 2020-08-12 #> 10 18 Recommendations R… 2020-04-01 IATF reso… https://doh.gov.… 2020-08-12 #> # … with 64 more rows