generated from matsim-scenarios/matsim-scenario-template
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/policy_analysis'
# Conflicts: # src/main/java/org/matsim/prepare/MexicoCityUtils.java
- Loading branch information
Showing
10 changed files
with
1,342 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
library(tidyverse) | ||
library(matsim) | ||
library(ggalluvial) | ||
library(ggplot2) | ||
|
||
setwd("Y:/net/ils/matsim-mexico-city/case-studies/lane-repurposing/output/output-mexico-city-v1.0-1pct-lane-repurposing") | ||
|
||
baseTripsFile <- list.files(path = "../../../baseCase/output/output-mexico-city-v1.0-1pct", pattern = "output_trips.csv.gz", full.names = TRUE) | ||
repurposeLanesTripsFile <- list.files(pattern = "output_trips.csv.gz") | ||
|
||
|
||
|
||
# not using matsim read trips table function because right now it cannot handle delimiters different from ";" | ||
trips_base <- read_delim(baseTripsFile, | ||
locale = locale(decimal_mark = "."), | ||
n_max = Inf, | ||
col_types = cols( | ||
start_x = col_character(), | ||
start_y = col_character(), | ||
end_x = col_character(), | ||
end_y = col_character(), | ||
end_link = col_character(), | ||
start_link = col_character() | ||
)) | ||
|
||
trips_base <- trips_base %>% | ||
mutate( | ||
start_x = as.double(start_x), | ||
start_y = as.double(start_y), | ||
end_x = as.double(end_x), | ||
end_y = as.double(end_y) | ||
) | ||
attr(trips_base,"table_name") <- baseTripsFile | ||
|
||
trips_repurpose_lanes <- read_delim(repurposeLanesTripsFile, | ||
locale = locale(decimal_mark = "."), | ||
n_max = Inf, | ||
col_types = cols( | ||
start_x = col_character(), | ||
start_y = col_character(), | ||
end_x = col_character(), | ||
end_y = col_character(), | ||
end_link = col_character(), | ||
start_link = col_character() | ||
)) | ||
|
||
trips_repurpose_lanes <- trips_repurpose_lanes %>% | ||
mutate( | ||
start_x = as.double(start_x), | ||
start_y = as.double(start_y), | ||
end_x = as.double(end_x), | ||
end_y = as.double(end_y) | ||
) | ||
attr(trips_repurpose_lanes,"table_name") <- repurposeLanesTripsFile | ||
|
||
analysisDir <- "analysis/repurposeLanes" | ||
|
||
full_path <- file.path(getwd(), analysisDir) | ||
if (!dir.exists(full_path)) { | ||
dir.create(full_path, recursive = TRUE) | ||
cat("Created directory:", full_path, "\n") | ||
} else { | ||
cat("Directory already exists:", full_path, "\n") | ||
} | ||
|
||
plotModalShiftSankey(trips_base, trips_repurpose_lanes, dump.output.to = analysisDir) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
library(tidyverse) | ||
library(matsim) | ||
library(ggalluvial) | ||
library(ggplot2) | ||
library(sf) | ||
library(optparse) | ||
|
||
option_list <- list( | ||
make_option(c("-d", "--runDir"), type="character", default=NULL, | ||
help="Path of run directory. Avoid using '/', use '/' instead", metavar="character")) | ||
|
||
opt_parser <- OptionParser(option_list=option_list) | ||
opt <- parse_args(opt_parser) | ||
|
||
# if you want to run code without run args -> comment out the following if condition + setwd() manually | ||
if (is.null(opt$runDir)){ | ||
print_help(opt_parser) | ||
stop("At least 1 argument must be supplied. Use -h for help.", call.=FALSE) | ||
} | ||
|
||
setwd(opt$runDir) | ||
# setwd("C:/Users/Simon/Desktop/wd/2024-04-01/modalShiftAnalysis/roadPricing-avenidas-principales/output/relative-income-fare0.001") | ||
analysisDir <- "analysis/roadpricing" | ||
|
||
crs <- "EPSG:4485" | ||
|
||
shp <- st_read(paste0("./",analysisDir,"/roadPricing_area.shp"), crs=crs) | ||
|
||
baseTripsFile <- list.files(path = "../../../baseCase/output/output-mexico-city-v1.0-1pct", pattern = "output_trips.csv.gz", full.names = TRUE) | ||
roadPricingTripsFile <- list.files(pattern = "output_trips.csv.gz") | ||
|
||
###################################################### policy case trips ##################################################################### | ||
|
||
# not using matsim read trips table function because right now it cannot handle delimiters different from ";" | ||
trips_roadPricing <- read_delim(roadPricingTripsFile, | ||
locale = locale(decimal_mark = "."), | ||
n_max = Inf, | ||
col_types = cols( | ||
start_x = col_character(), | ||
start_y = col_character(), | ||
end_x = col_character(), | ||
end_y = col_character(), | ||
end_link = col_character(), | ||
start_link = col_character() | ||
)) | ||
|
||
trips_roadPricing <- trips_roadPricing %>% | ||
mutate( | ||
start_x = as.double(start_x), | ||
start_y = as.double(start_y), | ||
end_x = as.double(end_x), | ||
end_y = as.double(end_y)) | ||
attr(trips_roadPricing,"table_name") <- roadPricingTripsFile | ||
|
||
points_start <- st_as_sf(trips_roadPricing, coords = c('start_x', 'start_y'), crs = crs) %>% | ||
mutate(start_within = as.integer(st_within(geometry, shp))) | ||
|
||
points_end <- st_as_sf(trips_roadPricing, coords = c('end_x', 'end_y'), crs = crs) %>% | ||
mutate(end_within = as.integer(st_within(geometry, shp))) | ||
|
||
trips_roadPricing <- merge(trips_roadPricing, points_start[, c("trip_id", "start_within")], by="trip_id", all.x=TRUE) %>% | ||
merge(points_end[, c("trip_id", "end_within")], by="trip_id", all.x=TRUE) %>% | ||
filter(!is.na(start_within) | !is.na(end_within)) %>% | ||
select(-geometry.x, -geometry.y, -start_within, -end_within) | ||
|
||
###################################################### base case trips ##################################################################### | ||
|
||
# not using matsim read trips table function because right now it cannot handle delimiters different from ";" | ||
trips_base <- read_delim(baseTripsFile, | ||
locale = locale(decimal_mark = "."), | ||
n_max = Inf, | ||
col_types = cols( | ||
start_x = col_character(), | ||
start_y = col_character(), | ||
end_x = col_character(), | ||
end_y = col_character(), | ||
end_link = col_character(), | ||
start_link = col_character() | ||
)) | ||
|
||
trips_base <- trips_base %>% | ||
mutate( | ||
start_x = as.double(start_x), | ||
start_y = as.double(start_y), | ||
end_x = as.double(end_x), | ||
end_y = as.double(end_y)) | ||
attr(trips_base,"table_name") <- baseTripsFile | ||
|
||
points_start <- st_as_sf(trips_base, coords = c('start_x', 'start_y'), crs = crs) %>% | ||
mutate(start_within = as.integer(st_within(geometry, shp))) | ||
|
||
points_end <- st_as_sf(trips_base, coords = c('end_x', 'end_y'), crs = crs) %>% | ||
mutate(end_within = as.integer(st_within(geometry, shp))) | ||
|
||
trips_base <- merge(trips_base, points_start[, c("trip_id", "start_within")], by="trip_id", all.x=FALSE, all.y=FALSE) %>% | ||
merge(points_end[, c("trip_id", "end_within")], by="trip_id", all.x=TRUE) %>% | ||
filter(!is.na(start_within) | !is.na(end_within)) %>% | ||
select(-geometry.x, -geometry.y, -start_within, -end_within) | ||
|
||
plotModalShiftSankey(trips_base, trips_roadPricing, dump.output.to = analysisDir) | ||
write.csv(trips_roadPricing, file=paste0(analysisDir, "/output_trips.roadPricing-area.csv.gz"), quote=FALSE) |
Oops, something went wrong.