Skip to content

Commit 8a9892e

Browse files
committed
build to .github folder, resave county fib data with compress xz
1 parent f452d83 commit 8a9892e

File tree

7 files changed

+6
-6
lines changed

7 files changed

+6
-6
lines changed

build.R renamed to .github/workflows/build.R

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,24 @@ library(tbeptools)
44
cat('EPC\n')
55
xlsx <- tempfile(fileext = '.xlsx')
66
fibdata <- read_importfib(xlsx, download_latest = TRUE)
7-
save(fibdata, file = here::here('data/fibdata.RData'), compress = 'xz')
7+
save(fibdata, file = here::here('data/fibdata.RData'))
88

99
# ESC
1010
cat('ESC\n')
1111
hcesdfibdata <- read_importwqp('21FLHESD_WQX', type = 'fib')
12-
save(hcesdfibdata, file = here::here('data/hcesdfibdata.RData'), compress = 'xz')
12+
save(hcesdfibdata, file = here::here('data/hcesdfibdata.RData'))
1313

1414
# Manatee County
1515
cat('manco\n')
1616
mancofibdata <- read_importwqp('21FLMANA_WQX', type = 'fib')
17-
save(mancofibdata, file = here::here('data/mancofibdata.RData'), compress = 'xz')
17+
save(mancofibdata, file = here::here('data/mancofibdata.RData'))
1818

1919
# Pasco County
2020
cat('pasco\n')
2121
pascofibdata <- read_importwqp('21FLPASC_WQX', type = 'fib')
22-
save(pascofibdata, file = here::here('data/pascofibdata.RData'), compress = 'xz')
22+
save(pascofibdata, file = here::here('data/pascofibdata.RData'))
2323

2424
# Polk County
2525
cat('polco\n')
2626
polcofibdata <- read_importwqp('21FLPOLK_WQX', type = 'fib')
27-
save(polcofibdata, file = here::here('data/polcofibdata.RData'), compress = 'xz')
27+
save(polcofibdata, file = here::here('data/polcofibdata.RData'))

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
tbeptools
2828
2929
- name: Pull data
30-
run: Rscript -e 'source("build.R")'
30+
run: Rscript -e 'source(".github/workflows/build.R")'
3131
- name: Commit results
3232
run: |
3333
git config --local user.email "actions@github.com"

data/fibdata.RData

117 KB
Binary file not shown.

data/hcesdfibdata.RData

4 KB
Binary file not shown.

data/mancofibdata.RData

6.04 KB
Binary file not shown.

data/pascofibdata.RData

457 Bytes
Binary file not shown.

data/polcofibdata.RData

3.78 KB
Binary file not shown.

0 commit comments

Comments
 (0)