Bad Kreuznach, Germany – CC-BY-NC by Billy Wilson

Day 4 of 30DayMapChallenge: « Bad map » (previously).
A map of all populated places containing the word “Bad” from Geonames.

library(tidyverse)
library(leaflet)
library(httr)
library(fs)

gn_file
leaflet() |
addCircleMarkers(popup = ~ name) |

addTiles()

Figure 1: Bad map

So we have 471 “Bad” populated places…

<div …