-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.R
More file actions
22 lines (18 loc) · 803 Bytes
/
script.R
File metadata and controls
22 lines (18 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
################################################################################
### WORKFLOW FOR SPATIAL DATA SCIENCE ###
################################################################################
# ---- Load required libraries -------------------------------------------------
library(readr)
library(sf)
library(dplyr)
library(ggplot2)
library(tmap)
library(ggspatial)
library(mapview)
library(scales)
# ---- Data wrangling ----------------------------------------------------------
source("scripts/read-data-set-crs.R")
# ---- Making maps -------------------------------------------------------------
source("scripts/make-maps.R")
# ---- Spatial operations -----------------------------------------------------
source("scripts/spatial-operations.R")