Skip to contents

[Experimental]

Usage

read_kishou_feed(frequency, type)

Arguments

frequency

Release frequency. Select either high frequency ("high") or long term ("low")

type

Feed type. Specify the item to be retrieved as a string. See details for the items.

Value

a tbl object

Details

The following items can be specified in the type argument.

  • regular: It will be announced on time.

  • extra: It will be announced at any time.

  • eqvol: Earthquakes and Volcanoes.

  • other: Other informations.

Examples

# \donttest{
read_kishou_feed("high", type = "regular")
#> # A tibble: 528 × 6
#>    title                        id      updated             author content link 
#>    <chr>                        <chr>   <dttm>              <chr>  <chr>   <chr>
#>  1 大雨危険度通知               https:… 2024-03-04 01:49:44 気象庁 【大雨… http…
#>  2 府県天気概況                 https:… 2024-03-04 01:47:26 鹿児…  【天気… http…
#>  3 警報級の可能性(明後日以降) https:… 2024-03-04 01:47:16 沖縄…  【沖縄… http…
#>  4 府県週間天気予報             https:… 2024-03-04 01:47:16 福岡…  【福岡… http…
#>  5 警報級の可能性(明後日以降) https:… 2024-03-04 01:47:16 南大…  【大東… http…
#>  6 警報級の可能性(明後日以降) https:… 2024-03-04 01:47:16 宮古…  【宮古… http…
#>  7 警報級の可能性(明後日以降) https:… 2024-03-04 01:47:16 鹿児…  【鹿児… http…
#>  8 警報級の可能性(明後日以降) https:… 2024-03-04 01:47:16 松山…  【愛媛… http…
#>  9 警報級の可能性(明後日以降) https:… 2024-03-04 01:47:16 長崎…  【長崎… http…
#> 10 警報級の可能性(明後日以降) https:… 2024-03-04 01:47:16 宮崎…  【宮崎… http…
#> # ℹ 518 more rows
read_kishou_feed("low", "other")
#> # A tibble: 580 × 6
#>    title                  id            updated             author content link 
#>    <chr>                  <chr>         <dttm>              <chr>  <chr>   <chr>
#>  1 地方海上予報(H28) https://www.… 2024-03-03 21:14:21 沖縄…  【沖縄… http…
#>  2 地方海上予報(H28) https://www.… 2024-03-03 21:14:21 札幌…  【札幌… http…
#>  3 地方海上予報(H28) https://www.… 2024-03-03 21:14:21 札幌…  【函館… http…
#>  4 地方海上予報(H28) https://www.… 2024-03-03 21:14:21 仙台…  【仙台… http…
#>  5 地方海上予報(H28) https://www.… 2024-03-03 21:14:21 気象庁 【東京… http…
#>  6 地方海上予報(H28) https://www.… 2024-03-03 21:14:21 新潟…  【新潟… http…
#>  7 地方海上予報(H28) https://www.… 2024-03-03 21:14:21 名古…  【名古… http…
#>  8 地方海上予報(H28) https://www.… 2024-03-03 21:14:21 大阪…  【舞鶴… http…
#>  9 地方海上予報(H28) https://www.… 2024-03-03 21:14:21 高松…  【神戸… http…
#> 10 地方海上予報(H28) https://www.… 2024-03-03 21:14:21 福岡…  【福岡… http…
#> # ℹ 570 more rows
# }