Draws great-circle arcs between country pairs from an origin-destination table (trade, migration, flights, remittances), resolving both endpoints to centroids automatically.
Examples
# \donttest{
od <- data.frame(from = c("China", "Germany"),
to = c("United States", "France"),
value = c(500, 200))
if (requireNamespace("maps", quietly = TRUE)) {
flow_map(od, from, to, value)
}
# }
