-
Notifications
You must be signed in to change notification settings - Fork 0
/
01_load.R
74 lines (62 loc) · 1.98 KB
/
01_load.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# Copyright 2022 Province of British Columbia
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and limitations under the License.
library(tidyverse)
rd <- sf::st_read(here::here("data", "rd-polygon.shp"))[-c(33, 35), ] %>%
mutate(
id = row_number(),
regional_district = c(
"capital",
"cowichan_valley",
"alberni_clayoquot",
"nanaimo",
"metro_vancouver",
"fraser_valley",
"okanagan_similkameen",
"kootenay_boundary",
"central_kootenay",
"sunshine_coast",
"comox_valley",
"east_kootenay",
"strathcona",
"squamish_lillooet",
"qathet",
"thompson_nicola",
"central_okanagan",
"mount_waddington",
"strathcona",
"north_okanagan",
"mount_waddington",
"columbia_shuswap",
"cariboo",
"central_coast",
"north_coast",
"kitimat_stikine",
"fraser_fort_george",
"bulkley_nechako",
"north_coast",
"north_coast",
"peace_river",
"stikine",
"northern_rockies"
)
)%>%
select(id, regional_district, geometry)
write_rds(rd, here::here("out", "bc_regional_districts_sf.rds"))
# download sf file from github---------
bc_regional_districts <- read_rds("https://github.com/bcgov/bc_regional_districts_sf/raw/main/out/bc_regional_districts_sf.rds")
#example usage----------
plt <- ggplot(bc_regional_districts) +
geom_sf(aes(fill = regional_district), lwd = 0) +
theme_void() +
theme(legend.position = "none")
plotly::ggplotly(plt) %>%
plotly::style(hoveron = "fill")