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