From a63eeb9aa9673823b154e3821484f2493f4e2bff Mon Sep 17 00:00:00 2001 From: Bryn Pickering <17178478+brynpickering@users.noreply.github.com> Date: Fri, 7 Jun 2024 17:17:42 +0100 Subject: [PATCH] Rename file --- rules/heat.smk | 4 ++-- ...ed_unscaled_heat_profiles.py => unscaled_heat_profiles.py} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename scripts/heat/{gridded_unscaled_heat_profiles.py => unscaled_heat_profiles.py} (100%) diff --git a/rules/heat.smk b/rules/heat.smk index ecb4579c..52e07c1a 100644 --- a/rules/heat.smk +++ b/rules/heat.smk @@ -101,7 +101,7 @@ rule population_per_weather_gridbox: script: "../scripts/heat/population_per_gridbox.py" -rule gridded_unscaled_heat_profiles: +rule unscaled_heat_profiles: message: "Generate gridded heat demand profile shapes for {wildcards.year} from weather and population data" input: population = rules.population_per_weather_gridbox.output[0], @@ -113,4 +113,4 @@ rule gridded_unscaled_heat_profiles: lon_name = "lon", conda: "../envs/default.yaml" output: "build/data/{resolution}/gridded_hourly_unscaled_heat_demand_{year}.nc" - script: "../scripts/heat/gridded_unscaled_heat_profiles.py" + script: "../scripts/heat/unscaled_heat_profiles.py" diff --git a/scripts/heat/gridded_unscaled_heat_profiles.py b/scripts/heat/unscaled_heat_profiles.py similarity index 100% rename from scripts/heat/gridded_unscaled_heat_profiles.py rename to scripts/heat/unscaled_heat_profiles.py