#' Load and format catch data of fukuoka
#'
#' @param path File path to process
#' @param spcs Romaji spcs name one of
#' \itemize{
#' \item{"maaji"}
#' \item{"maiwashi"}
#' \item{"sabarui"}
#' \item{"katakuchi"}
#' \item{"urume"}
#' }
#' @param type Character value either "maki" or "bouuke", and "others".
fmtcatch.fukuoka <- function(path, spcs, type) {
spcs_jp <- switch(spcs,
"maaji" = "マアジ",
"maiwashi" = "マイワシ",
"masaba" = "マサバ",
"gomasaba" = "ゴマサバ",
"katakuchi" = "カタクチ",
"urume" = "ウルメ")
sheet <- switch(type,
"maki" = "まき網 ",
"bouuke" = "棒受網",
"others" = "その他漁業")
alldata <- load_alldata(path, sheet)
ycol <- 2
mcol <- 3
mstr <- alldata[[mcol]]
startrow <- get_row(mstr, "ツキ", offset = 1)
endrow <- get_row(mstr, "KEI") %>% max()
rows <- startrow:endrow
datrow <- stringr::str_count(mstr[rows], "KEI") == 0
spcs_col <- get_spcscol(alldata, spcs_jp)
out <- NULL
out$year <- col2data(col = ycol, row = rows,
row.pick = datrow, df = alldata) %>%
jpyr2ad(start = "showa")
out$month <- col2data(col = mcol, row = rows,
row.pick = datrow, df = alldata)
out$type <- type
out$catch <- col2data(col = spcs_col, row = rows,
row.pick = datrow, df = alldata) / 1000
out$prefecture <- "fukuoka"
tibble::as_tibble(out)
}
col2data <- function(col, rows, row.pick, df) {
out <- df[[col]][rows][row.pick] %>%
as.numeric()
out
}
get_spcscol <- function(df, spcs_jp) {
out <- NULL
for (i in 2:5) {
str <- df[i, ] %>%
unlist() %>%
as.vector()
out <- stringr::str_which(str, spcs_jp)
if (length(out) > 0)
break
}
out
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.