-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path04_cpue_maps.R
46 lines (32 loc) · 1.01 KB
/
04_cpue_maps.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
library(esrindex)
library(akgfmaps)
ebs_files <- list.files(path = here::here("output", "EBS"),
full.names = TRUE,
pattern = "gapindex")
for(jj in 1:length(ebs_files)) {
group_cpue <- readRDS(file = ebs_files[jj])$cpue
plot_cpue_maps(
gapindex_cpue = group_cpue,
crs = "EPSG:3338",
fig_res = 300)
}
ai_files <- list.files(path = here::here("output", "AI"),
full.names = TRUE,
pattern = "gapindex")
for(jj in 1:length(ai_files)) {
group_cpue <- readRDS(file = ai_files[jj])$cpue
plot_cpue_maps(
gapindex_cpue = group_cpue,
crs = "EPSG:3338",
fig_res = 300)
}
goa_files <- list.files(path = here::here("output", "GOA"),
full.names = TRUE,
pattern = "gapindex")
for(jj in 1:length(goa_files)) {
group_cpue <- readRDS(file = goa_files[jj])$cpue
plot_cpue_maps(
gapindex_cpue = group_cpue,
crs = "EPSG:3338",
fig_res = 300)
}