generated from OxfordIHTM/ihtm-targets-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #68 from panukatan/dev
add forecasts data targets; fix #59
- Loading branch information
Showing
8 changed files
with
430 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,3 +11,5 @@ data-raw/cyclones | |
!data-raw/heat_index | ||
data | ||
!data/.gitkeep | ||
README.html | ||
README_files |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# | ||
# PAGASA forecast regions | ||
# | ||
|
||
pagasa_forecast_regions <- list( | ||
Mindanao = data.frame( | ||
geographic_unit = c( | ||
"Laguindingan", "Cagayan de Oro City", "Malaybalay City", | ||
"Metro Davao", "Zamboanga City", "Surigao City", "Butuan City", | ||
"Cotabato City", "General Santos City", "Dipolog City", "Tagum City", | ||
"Marawi City", "Iligan City", "Pagadian City" | ||
) | ||
), | ||
`National Capital Region` = data.frame( | ||
geographic_unit = c( | ||
"Metro Manila", "Tarlac", "Nueva Ecija", "Zambales", "Bataan", "Pampanga", | ||
"Bulacan", "Cavite", "Laguna", "Batangas", "Rizal", "Quezon" | ||
) | ||
), | ||
`Northern Luzon` = data.frame( | ||
geographic_unit = c( | ||
"Ilocos Norte", "Ilocos Sur", "La Union", "Pangasinan", "Batanes", | ||
"Cagayan", "Isabela", "Quirino", "Nueva Vizcaya", "Abra", "Benguet", | ||
"Mountain Province", "Ifugao", "Kalinga", "Apayao", "Aurora" | ||
) | ||
), | ||
`Southern Luzon` = data.frame( | ||
geographic_unit = c( | ||
"Albay", "Camarines Norte", "Camarines Sur", "Catanduanes", "Sorsogon", | ||
"Masbate", "Northern Samar", "Oriental Mindoro", "Marinduque", "Romblon" | ||
) | ||
), | ||
Visayas = data.frame( | ||
geographic_unit = c( | ||
"Cebu", "Bohol", "Negros Occidental", "Negros Oriental", "Siquijor", | ||
"Leyte", "Southern Leyte", "Biliran", "Samar", "Eastern Samar", "Iloilo", | ||
"Guimaras", "Capiz", "Aklan", "Antique", "Palawan", "Occidental Mindoro" | ||
) | ||
) | ||
) |> | ||
dplyr::bind_rows(.id = "regional_grouping") |
Oops, something went wrong.