Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.rst → README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ post-process the results.
First, create a new conda environment with the required dependencies:

```bash
conda create -f environment.yaml
conda env create -f environment.yaml
conda activate module_integration
```

Expand Down
1 change: 0 additions & 1 deletion config/modules/module_geo_boundaries_NUTS0.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
module_geo_boundaries_NUTS0:
buffer: 1
crs:
projected: "epsg:3857"
geographic: "epsg:4326"
Expand Down
1 change: 0 additions & 1 deletion config/modules/module_geo_boundaries_NUTS2.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
module_geo_boundaries_NUTS2:
buffer: 1
crs:
projected: "epsg:3857"
geographic: "epsg:4326"
Expand Down
1 change: 0 additions & 1 deletion config/modules/module_geo_boundaries_NUTS3.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
module_geo_boundaries_NUTS3:
buffer: 1
crs:
projected: "epsg:3857"
geographic: "epsg:4326"
Expand Down
2 changes: 1 addition & 1 deletion config/modules/module_powerplants.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ module_powerplants:
pumped_storage: 80
gas_pp: 20
reservoir: 80
pv_rooftop: 5
pv_rooftop: 25
run_of_river: 80
pv_open_field: 25
retirement_delay_yr:
Expand Down
3 changes: 2 additions & 1 deletion environment.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
name: module_integration
channels:
- conda-forge/label/calliope_dev
- conda-forge
- bioconda
dependencies:
- python=3.12
- flake8=3.8.3
- snakemake-minimal=8.18
# - graphviz=2.50.0
- calliope=0.7.0.dev5
- calliope=0.7.0dev5
- pandas
- numpy<2.0.0
- xlrd
Expand Down
2 changes: 1 addition & 1 deletion rules/0_module_geo_boundaries.smk
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ module module_geo_boundaries:
github(
"calliope-project/module_geo_boundaries",
path="workflow/Snakefile",
tag="main",
tag="v0.1.5",
)
config:
config["module_geo_boundaries_NUTS3"]
Expand Down
12 changes: 5 additions & 7 deletions rules/0_module_pv_wind.smk
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,11 @@ configfile: "config/modules/module_pv_wind.yaml"

module module_pv_wind:
snakefile:
"../../module_pv_wind/workflow/Snakefile"

# github(
# "calliope-project/module_pv_wind",
# path="workflow/Snakefile",
# tag="cd3c2b4",
# )
github(
"calliope-project/module_pv_wind",
path="workflow/Snakefile",
branch="feature-module-setup",
)
config: config["module_pv_wind"]
prefix: "results/module_pv_wind"

Expand Down