INMET RSS alerts

Introduction

INMET is the Brazilian official source of meteorological forecasts. It also maintains the ALERT-AS, an weather alert center for the Brazilian territory.

The alerts are broadcasted in the RSS format and there is no official record history of alerts available. Thus, I started to run a daily script to record those alerts and made them available to the public. The record started on September 29, 2025 at 4pm.

Data

The alerts are fetched daily at 1am using the inmetrss R package. After fetching new alerts and updating the database, a parquet file is exported to an S3 storage, available at the link bellow:

https://inmetalerts.nyc3.cdn.digitaloceanspaces.com/inmetalerts.parquet

Data usage

The parquet data present the alerts in the original structure from INMET. The package inmetrss presents a function to parse the alerts by municipality.

suppressMessages({
  library(arrow)
  library(DT)
  library(inmetrss)
})

res <- read_parquet(
  "https://inmetalerts.nyc3.cdn.digitaloceanspaces.com/inmetalerts.parquet"
)

res_mun <- parse_mun(head(res, 10))

datatable(res_mun)

Session info

sessioninfo::session_info()
─ Session info ───────────────────────────────────────────────────────────────
 setting  value
 version  R version 4.3.3 (2024-02-29)
 os       Ubuntu 24.04.3 LTS
 system   x86_64, linux-gnu
 ui       X11
 language (EN)
 collate  en_US.UTF-8
 ctype    pt_BR.UTF-8
 tz       America/Sao_Paulo
 date     2025-09-29
 pandoc   3.6.3 @ /usr/share/positron/resources/app/quarto/bin/tools/x86_64/ (via rmarkdown)
 quarto   1.6.42 @ /opt/quarto/bin/quarto

─ Packages ───────────────────────────────────────────────────────────────────
 package     * version  date (UTC) lib source
 arrow       * 21.0.0.1 2025-08-18 [1] CRAN (R 4.3.3)
 assertthat    0.2.1    2019-03-21 [1] CRAN (R 4.3.3)
 bit           4.6.0    2025-03-06 [1] CRAN (R 4.3.3)
 bit64         4.6.0-1  2025-01-16 [1] CRAN (R 4.3.3)
 bslib         0.9.0    2025-01-30 [1] CRAN (R 4.3.3)
 cachem        1.1.0    2024-05-16 [1] CRAN (R 4.3.3)
 cli           3.6.5    2025-04-23 [1] CRAN (R 4.3.3)
 crosstalk     1.2.2    2025-08-26 [1] CRAN (R 4.3.3)
 digest        0.6.37   2024-08-19 [1] CRAN (R 4.3.3)
 DT          * 0.34.0   2025-09-02 [1] CRAN (R 4.3.3)
 evaluate      1.0.5    2025-08-27 [1] CRAN (R 4.3.3)
 fastmap       1.2.0    2024-05-15 [1] CRAN (R 4.3.3)
 glue          1.8.0    2024-09-30 [1] CRAN (R 4.3.3)
 htmltools     0.5.8.1  2024-04-04 [1] CRAN (R 4.3.3)
 htmlwidgets   1.6.4    2023-12-06 [1] CRAN (R 4.3.3)
 inmetrss    * 0.0.1    2025-09-29 [1] local
 jquerylib     0.1.4    2021-04-26 [1] CRAN (R 4.3.3)
 jsonlite      2.0.0    2025-03-27 [1] CRAN (R 4.3.3)
 knitr         1.50     2025-03-16 [1] CRAN (R 4.3.3)
 lifecycle     1.0.4    2023-11-07 [1] CRAN (R 4.3.3)
 magrittr      2.0.4    2025-09-12 [1] CRAN (R 4.3.3)
 pillar        1.11.1   2025-09-17 [1] CRAN (R 4.3.3)
 pkgconfig     2.0.3    2019-09-22 [1] CRAN (R 4.3.3)
 purrr         1.1.0    2025-07-10 [1] CRAN (R 4.3.3)
 R6            2.6.1    2025-02-15 [1] CRAN (R 4.3.3)
 rlang         1.1.6    2025-04-11 [1] CRAN (R 4.3.3)
 rmarkdown     2.30     2025-09-28 [1] CRAN (R 4.3.3)
 sass          0.4.10   2025-04-11 [1] CRAN (R 4.3.3)
 sessioninfo   1.2.3    2025-02-05 [1] CRAN (R 4.3.3)
 stringi       1.8.7    2025-03-27 [1] CRAN (R 4.3.3)
 stringr       1.5.2    2025-09-08 [1] CRAN (R 4.3.3)
 tibble        3.3.0    2025-06-08 [1] CRAN (R 4.3.3)
 tidyselect    1.2.1    2024-03-11 [1] CRAN (R 4.3.3)
 vctrs         0.6.5    2023-12-01 [1] CRAN (R 4.3.3)
 xfun          0.53     2025-08-19 [1] CRAN (R 4.3.3)
 yaml          2.3.10   2024-07-26 [1] CRAN (R 4.3.3)

 [1] /home/raphaelsaldanha/R/x86_64-pc-linux-gnu-library/4.3
 [2] /usr/local/lib/R/site-library
 [3] /usr/lib/R/site-library
 [4] /usr/lib/R/library
 * ── Packages attached to the search path.

──────────────────────────────────────────────────────────────────────────────
Back to top