# Downloading and including customs data ----------------------------------
# Go to https://tools.sars.gov.za/tradestatsportal/data_download.aspx
# Then click on Imports and download three months at a time, then do the same for exports
# Save as csv with filename SARS_imports_20211012.csv
library(data.table)
library(arrow)
library(piggyback)
library(dplyr)
library(duckdb)
# Imports
files_to_import <- list.files(path = "data-raw/SARS/Trade_data", pattern = "SARS_imports_2023.*.csv")
files_to_import <- paste0("data-raw/SARS/Trade_data/", files_to_import)
SARS_imports_2023 <- rbindlist(lapply(files_to_import, fread))
SARS_imports_2023 <- SARS_imports_2023 %>%
mutate(CountryOfOriginName = iconv(CountryOfOriginName, to = 'ASCII//TRANSLIT'),
CountryOfDestinationName = iconv(CountryOfDestinationName, to = 'ASCII//TRANSLIT'),
TariffAndDescription = iconv(CountryOfDestinationName, to = 'ASCII//TRANSLIT'))
SARS_imports_2023 <- SARS_imports_2023 %>% mutate_if(is.character, as.factor)
SARS_imports_2023 <- SARS_imports_2023 %>% mutate(CustomsValue = as.numeric(CustomsValue))
write_parquet(SARS_imports_2023, "data-raw/SARS/Trade_data/SARS_imports_2023.parquet")
# Check
read_parquet("data-raw/SARS/Trade_data/SARS_imports_2023.parquet")
con <- dbConnect(duckdb())
tbl(con, "'data-raw/SARS/Trade_data/SARS_imports_2023.parquet'")
pb_upload("data-raw/SARS/Trade_data/SARS_imports_2023.parquet",
repo = "chrisaxelson/tax4sa",
tag = "v0.0.1")
# Exports
files_to_import <- list.files(path = "data-raw/SARS/Trade_data", pattern = "SARS_exports_2023.*.csv")
files_to_import <- paste0("data-raw/SARS/Trade_data/", files_to_import)
SARS_exports_2023 <- rbindlist(lapply(files_to_import, fread))
SARS_exports_2023 <- SARS_exports_2023 %>%
mutate(CountryOfOriginName = iconv(CountryOfOriginName, to = 'ASCII//TRANSLIT'),
CountryOfDestinationName = iconv(CountryOfDestinationName, to = 'ASCII//TRANSLIT'),
TariffAndDescription = iconv(CountryOfDestinationName, to = 'ASCII//TRANSLIT'))
SARS_exports_2023 <- SARS_exports_2023 %>% mutate_if(is.character, as.factor)
SARS_exports_2023 <- SARS_exports_2023 %>% mutate(CustomsValue = as.numeric(CustomsValue))
write_parquet(SARS_exports_2023, "data-raw/SARS/Trade_data/SARS_exports_2023.parquet")
# Check
tbl(con, "'data-raw/SARS/Trade_data/SARS_exports_2023.parquet'")
pb_upload("data-raw/SARS/Trade_data/SARS_exports_2023.parquet",
repo = "chrisaxelson/tax4sa",
tag = "v0.0.1")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.