Nothing
knitr::opts_chunk$set( collapse = TRUE, comment = "#>" )
This vignette introduces the masjid
dataset included in the {bruneimap}
package, which provides spatial data for masjids (mosques) across Brunei.
The dataset includes essential information such as the name, geographic coordinates (latitude and longitude), and district of each masjid.
library(tidyverse) library(bruneimap) library(sf)
glimpse(masjid)
We can visualise the locations of masjids across Brunei Below is an example where the masjids are overlaid on Brunei’s kampong boundaries:
ggplot() + geom_sf(data = kpg_sf, fill = NA) + geom_point(data = masjid, aes(latitude, longitude), inherit.aes = FALSE) + theme_bw()
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.