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
17 changes: 11 additions & 6 deletions .copier-answers.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
# Changes here will be overwritten by Copier
# !!!!! DO NOT MANUALLY MODIFY THIS FILE !!!!!
_commit: v1.0.2
_commit: v1.0.3
_src_path: https://github.com/modelblocks-org/data-module-template.git
author_email: i.ruizmanuel@tudelft.nl
author_family_name: Ruiz Manuel
author_given_name: Ivan
authors:
- email: i.ruizmanuel@tudelft.nl
family_name: Ruiz Manuel
given_name: Ivan
github_org: modelblocks-org
license: Apache-2.0
maintainers:
- email: i.ruizmanuel@tudelft.nl
family_name: Ruiz Manuel
given_name: Ivan
module_code_name: module_co2stop_cdr
module_description: A module to aggregate CDR potential in Europe into flexible spatial
resolutions, using the CO2Stop dataset.
module_long_name: Module CO2Stop - Carbon Dioxide Removal in Europe
module_short_name: module_co2stop_cdr
module_human_name: CO2Stop Carbon Dioxide Removal
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ This is the list of contributors for copyright purposes.

This does not necessarily list everyone who has contributed to this software's
code or documentation. For a full contributor list, see:
<https://github.com/modelblocks-org/module_co2stop_cdr/blob/main/.all-contributorsrc>
<https://github.com/modelblocks-org/module_co2stop_cdr/graphs/contributors>

Ivan Ruiz Manuel, <i.ruizmanuel@tudelft.nl>
7 changes: 4 additions & 3 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
# https://citation-file-format.github.io/
cff-version: 1.2.0
message: If you use this software or data produced by it, please cite it using the metadata from this file.
title: "Modelblocks - module_co2stop_cdr: Module CO2Stop - Carbon Dioxide Removal in Europe"
title: "Modelblocks - module_co2stop_cdr: CO2Stop Carbon Dioxide Removal"
repository: "https://github.com/modelblocks-org/module_co2stop_cdr"
license: Apache-2.0
authors:
- given-names: Ivan
family-names: Ruiz Manuel
- given-names: "Ivan"
family-names: "Ruiz Manuel"
email: "i.ruizmanuel@tudelft.nl"
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright 2026 AUTHORS
Copyright [yyyy] [name of copyright owner]

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Module CO2Stop - Carbon Dioxide Removal in Europe
# CO2Stop Carbon Dioxide Removal

A module to aggregate CDR potential in Europe into flexible spatial resolutions, using the CO2Stop dataset.

Expand Down
16 changes: 10 additions & 6 deletions pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,13 @@ cmd = "pixi workspace export conda-environment --environment '{{ env }}' '{{ out

[tasks._export-snakemake-pin]
description = "Export one Pixi environment/platform as a Snakemake-compatible pin file"
args = ["env", "platform", { arg = "outdir", default = "workflow/envs" }]
cmd = """
set -e
pixi workspace export conda-explicit-spec --environment '{{ env }}' --platform '{{ platform }}' '{{ outdir }}'
mv '{{ outdir }}/{{ env }}_{{ platform }}_conda_spec.txt' '{{ outdir }}/{{ env }}.{{ platform }}.pin.txt'
"""
args = ["env", "platform", "outdir"]
depends-on = [
{ task = "_export-conda-explicit-spec", args = ["{{ env }}", "{{ platform }}", "{{ outdir }}"] },
]
cmd = "mv '{{ outdir }}/{{ env }}_{{ platform }}_conda_spec.txt' '{{ outdir }}/{{ env }}.{{ platform }}.pin.txt'"

[tasks._export-conda-explicit-spec]
description = "Export one Pixi environment/platform as an explicit conda spec file"
args = ["env", "platform", "outdir"]
cmd = "pixi workspace export conda-explicit-spec --environment '{{ env }}' --platform '{{ platform }}' '{{ outdir }}'"
Loading