|
| 1 | +# Create data directory if not there & start time |
| 2 | +if(!dir.exists(file.path(path_outputs_regional_Rsmall, purpose))) { dir.create(file.path(path_outputs_regional_Rsmall, purpose)) } |
| 3 | +if(!dir.exists(file.path(path_outputs_regional_Rsmall, purpose, geography))) { dir.create(file.path(path_outputs_regional_Rsmall, purpose, geography)) } |
| 4 | +if(!dir.exists(file.path(path_outputs_regional_Rsmall, purpose, geography, region))) { dir.create(file.path(path_outputs_regional_Rsmall, purpose, geography, region)) } |
| 5 | + |
| 6 | +########################### |
| 7 | +### MAKE R SMALL OBJECTS |
| 8 | +########################### |
| 9 | + |
| 10 | +c <- readRDS(file.path(path_outputs_regional_R, purpose, geography, region, "c.Rds")) |
| 11 | +c <- c[c_codebook_small$`Variable name`] |
| 12 | +saveRDS(c, (file.path(path_outputs_regional_Rsmall, purpose, geography, region, "c.Rds")) , version = 2) |
| 13 | + |
| 14 | +l <- readRDS(file.path(path_outputs_regional_R, purpose, geography, region, "l.Rds")) |
| 15 | +l <- l[l@data$rf_dist_km<=rsmall_maxdist,] |
| 16 | +l <- l[od_l_rf_codebook_small$`Variable name`] |
| 17 | +saveRDS(l, (file.path(path_outputs_regional_Rsmall, purpose, geography, region, "l.Rds")) , version = 2) |
| 18 | + |
| 19 | +rf <- readRDS(file.path(path_outputs_regional_R, purpose, geography, region, "rf.Rds")) |
| 20 | +rf <- rf[rf@data$rf_dist_km<=rsmall_maxdist,] |
| 21 | +rf <- rf[od_l_rf_codebook_small$`Variable name`] |
| 22 | +saveRDS(rf, (file.path(path_outputs_regional_Rsmall, purpose, geography, region, "rf.Rds")) , version = 2) |
| 23 | + |
| 24 | +rq <- readRDS(file.path(path_outputs_regional_R, purpose, geography, region, "rq.Rds")) |
| 25 | +rq <- rq[rq@data$rf_dist_km<=rsmall_maxdist,] |
| 26 | +rq <- rq[rq_codebook_small$`Variable name`] |
| 27 | +saveRDS(rq, (file.path(path_outputs_regional_Rsmall, purpose, geography, region, "rq.Rds")) , version = 2) |
| 28 | + |
| 29 | +z <- readRDS(file.path(path_outputs_regional_R, purpose, geography, region, "z.Rds")) |
| 30 | +z <- z[z_codebook_small$`Variable name`] |
| 31 | +saveRDS(z, (file.path(path_outputs_regional_Rsmall, purpose, geography, region, "z.Rds")) , version = 2) |
| 32 | + |
| 33 | +## Can remove this code...could also delete those files locally |
| 34 | +if(file.exists(file.path(path_outputs_regional_R, purpose, geography, region, "rnet.Rds"))) { |
| 35 | + rnet <- readRDS(file.path(path_outputs_regional_R, purpose, geography, region, "rnet.Rds")) |
| 36 | + saveRDS(rnet, (file.path(path_outputs_regional_Rsmall, purpose, geography, region, "rnet.Rds")) , version = 2) |
| 37 | + # file.remove(file.path(path_outputs_regional_R, purpose, geography, region, "rnet.Rds")) |
| 38 | +} |
| 39 | + |
| 40 | + |
| 41 | + |
0 commit comments