Skip to content

Commit

Permalink
use only SECDIR for sector output (#1193)
Browse files Browse the repository at this point in the history
  • Loading branch information
yerbol-akhmetov authored Nov 14, 2024
1 parent 4e8ab04 commit 6ac7038
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ run = config.get("run", {})
RDIR = run["name"] + "/" if run.get("name") else ""
CDIR = RDIR if not run.get("shared_cutouts") else ""
SECDIR = run["sector_name"] + "/" if run.get("sector_name") else ""
SDIR = config["summary_dir"].strip("/") + f"/{RDIR}{SECDIR}"
RESDIR = config["results_dir"].strip("/") + f"/{RDIR}{SECDIR}"
SDIR = config["summary_dir"].strip("/") + f"/{SECDIR}"
RESDIR = config["results_dir"].strip("/") + f"/{SECDIR}"
COSTDIR = config["costs_dir"]

load_data_paths = get_load_paths_gegis("data", config)
Expand Down

0 comments on commit 6ac7038

Please sign in to comment.