Title: | Maps and Spatial Data of Brunei |
---|---|
Description: | Provides spatial data for mapping Brunei, including boundaries for districts, mukims, and kampongs, as well as locations of key infrastructure such as masjids, hospitals, clinics, and schools. The package supports researchers, analysts, and developers working with Brunei’s geographic and demographic data, offering a quick and accessible foundation for creating maps and conducting spatial studies. |
Authors: | Haziq Jamil [aut, cre, cph] , Hafeezul Raziq [ctb], Alvin Bong [ctb], Aniq Najwa Ariffin [ctb], Danish Ikhwan Mohamad Zainin [ctb], Muhammad Rayme Hijazi Jassrie [ctb], Angela Chan [ctb], Irdina Batrisyia Norharddyman [ctb], Nursyafiqah Mohammad Yusuf [ctb], Ahmad Syafi Mohammad Hilmy [ctb], Mohammad Syahir Deedat Al Jufri [ctb], Nadi.BN [cph] (CC BY 4.0 <https://www.nadi.bn/>) |
Maintainer: | Haziq Jamil <[email protected]> |
License: | GPL (>= 3) |
Version: | 0.3.1.9001 |
Built: | 2024-12-26 01:19:55 UTC |
Source: | https://github.com/bruneiverse/bruneimap |
Brunei kampong data
bnkpg_df
bnkpg_df
An object of class tbl_df
(inherits from tbl
, data.frame
) with 438 rows and 4 columns.
A tibble containing kampong, mukim, district information. All rows correspond to an area on the map. Useful to combine with other unit-level information for plotting.
Simple feature objects to plot Brunei maps
dis_sf mkm_sf kpg_sf brn_sf
dis_sf mkm_sf kpg_sf brn_sf
An object of class sf
(inherits from tbl_df
, tbl
, data.frame
) with 4 rows and 7 columns.
An object of class sf
(inherits from tbl_df
, tbl
, data.frame
) with 39 rows and 8 columns.
An object of class sf
(inherits from tbl_df
, tbl
, data.frame
) with 438 rows and 9 columns.
An object of class sf
(inherits from tbl_df
, tbl
, data.frame
) with 17 rows and 2 columns.
There are three simple feature objects in this package that can be used to plot Brunei maps:
dis_sf
: District-level boundaries
mkm_sf
: Mukim-level boundaries
kpg_sf
: Kampong-level boundaries
brn_sf
: A sillhouette of Brunei
library(ggplot2) # District-level boundaries ggplot(dis_sf) + geom_sf() # Mukim-level boundaries ggplot(mkm_sf) + geom_sf() # Kampong-level boundaries ggplot(kpg_sf) + geom_sf()
library(ggplot2) # District-level boundaries ggplot(dis_sf) + geom_sf() # Mukim-level boundaries ggplot(mkm_sf) + geom_sf() # Kampong-level boundaries ggplot(kpg_sf) + geom_sf()
Brunei census data 2021
census2021
census2021
An object of class tbl_df
(inherits from tbl
, data.frame
) with 365 rows and 11 columns.
A tibble containing the population, split into male/female or Bruneian/PR/foreigners for each kampong. Also contains number of households and occupied living quarters.
DEPS. “The Population and Housing Census Report (BPP) 2021: Demographic, Household and Housing Characteristics.” Department of Economic Planning and Statistics, Ministry of Finance and Economy, Brunei Darussalam, October 2022. URL: https://deps.mofe.gov.bn/SitePages/Population.aspx
library(tidyverse) census2021 |> summarise( population = sum(population), .by = district )
library(tidyverse) census2021 |> summarise( population = sum(population), .by = district )
Forest reserve areas in Brunei
fr_sf
fr_sf
An object of class sf
(inherits from tbl_df
, tbl
, data.frame
) with 20 rows and 6 columns.
Forestry Dept., . “The 5th National Report to the Convention on Biological Diversity.” Bandar Seri Begawan, Brunei: The Forestry Department, Ministry of Industry and Primary Resources, 2014.
library(ggplot2) ggplot(fr_sf) + geom_sf()
library(ggplot2) ggplot(fr_sf) + geom_sf()
Hospitals and Clinics (Health Centres) in Brunei
healthcare
healthcare
A tibble containing the name, type, and lat/long coordinates of hospitals and clinics in Brunei.
nrow(healthcare) ncol(healthcare)
nrow(healthcare) ncol(healthcare)
Masjid (mosques) in Brunei
masjid
masjid
A tibble containing the name and lat/long coordinates of masjids in Brunei
Ministry of Religious Affairs Annual Statistics 2021. URL: https://www.mora.gov.bn/SiteCollectionDocuments/Statistik/Perangkaan%20Tahunan%20KHEU%202021.pdf
Senarai Masjid di Negara Brunei Darussalam. URL: <https://www.mora.gov.bn/senaraimasjid/forms/viewall.aspx
dplyr::glimpse(masjid)
dplyr::glimpse(masjid)
Data sets relating to schools in Brunei
sch_sf tchr enrolment enrolment_MOE
sch_sf tchr enrolment enrolment_MOE
An object of class sf
(inherits from tbl_df
, tbl
, data.frame
) with 252 rows and 14 columns.
An object of class tbl_df
(inherits from tbl
, data.frame
) with 48 rows and 5 columns.
An object of class tbl_df
(inherits from tbl
, data.frame
) with 48 rows and 5 columns.
An object of class tbl_df
(inherits from tbl
, data.frame
) with 84 rows and 5 columns.
There are four datasets related to schools in Brunei:
sch_sf
: A spatial object of schools in Brunei
tchr
: A tibble of the number of teachers in schools in Brunei
enrolment
: A tibble of the number of students in schools in Brunei
enrolment_MOE
: A tibble of the number of students in schools in Brunei
Education Statistics and Indicators Handbook. Ministry of Education, Brunei.
library(ggplot2) ggplot() + geom_sf(data = brn_sf) + geom_sf(data = sch_sf)
library(ggplot2) ggplot() + geom_sf(data = brn_sf) + geom_sf(data = sch_sf)