Masjids in Brunei

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()


Try the bruneimap package in your browser

Any scripts or data that you put into this service are public.

bruneimap documentation built on April 3, 2025, 10:57 p.m.