Skip to content

Commit

Permalink
Retain outputs of electricity_grid_damages rule
Browse files Browse the repository at this point in the history
Previously these were marked as temporary files to reduce disk usage.
This change may be reverted in the future.
  • Loading branch information
thomas-fred committed Dec 20, 2023
1 parent a4da621 commit c08517f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions workflow/rules/exposure/electricity_grid/intersection.smk
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,8 @@ rule electricity_grid_damages:
resources:
mem_mb = lambda wildcards: threads_for_country(wildcards) * 1_024 * 2.5
output:
exposure = temp(directory("{OUTPUT_DIR}/power/by_country/{COUNTRY_ISO_A3}/exposure/{STORM_SET}/{SAMPLE}/")),
disruption = temp(directory("{OUTPUT_DIR}/power/by_country/{COUNTRY_ISO_A3}/disruption/{STORM_SET}/{SAMPLE}/")),
exposure = protected(directory("{OUTPUT_DIR}/power/by_country/{COUNTRY_ISO_A3}/exposure/{STORM_SET}/{SAMPLE}/")),
disruption = protected(directory("{OUTPUT_DIR}/power/by_country/{COUNTRY_ISO_A3}/disruption/{STORM_SET}/{SAMPLE}/")):we,
script:
"../../../scripts/intersect/grid_disruption.py"

Expand Down

0 comments on commit c08517f

Please sign in to comment.