Skip to content

Commit

Permalink
Update plot_impetus.R
Browse files Browse the repository at this point in the history
  • Loading branch information
ma-z-am committed Jul 29, 2024
1 parent c509685 commit a2ecf52
Showing 1 changed file with 8 additions and 16 deletions.
24 changes: 8 additions & 16 deletions inst/extdata/scripts/impetus/plot_impetus.R
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,18 @@ t_table <- read.table(
header = TRUE,
sep = ";")

# der zweite Teil der Bezeichnung von des Strangs (section) sollte in die Übersetzungstabelle eingehen
# der zweite Teil der Bezeichnung des Strangs (section) sollte in die Übersetzungstabelle eingehen
# sonst wird zum Beispiel ein Teil des WHK nicht geplotted, weil er als BSK erkannt wird
aggregated_data <- qsimVis::qsim_to_verknet_id(
aggregated_data <- qsimVis::add_qsimVis_id(
aggregated_data = ag_table,
translation_table = t_table)

rivers <- qsimVis::load_rivers(aggregated_data = aggregated_data)
# hier sollte nur "section_name" und "km" ausgegeben werden
rivers <- qsimVis::load_rivers(
aggregated_data = ag_table,
translation_table = t_table,
path_manual = system.file(package = "qsimVis", "extdata/manually_added_rivers")
)

rivers_ext <- lapply(
X = names(rivers), FUN = qsimVis::extend_riverTable,
Expand Down Expand Up @@ -47,19 +52,6 @@ qsimVis::add_coloredRivers(
LegendTitle = "Durchschnittlicher \nAbwassergehalt in %"
)

# Add CSO volume
# qsimVis::add_inflow(
# filname = file.path(
# "C:/Users/mzamzo/Documents/R/git",
# "qsimVis/inst/extdata/cso_data",
# "E2_2011_20221209_14-52_stats.csv"),
# varName = "tVol_m3",
# sizeMax = 100000)


# Add flow (average during time period or before event)

# Path for saving
saving_path <- file.path(scenario_path, "5_assessment_output")


0 comments on commit a2ecf52

Please sign in to comment.