-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into features/#1014-load-areas
- Loading branch information
Showing
16 changed files
with
824 additions
and
151 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
"""The central module containing all code dealing with gas neighbours | ||
""" | ||
|
||
from egon.data.datasets import Dataset | ||
from egon.data.datasets.gas_neighbours.eGon2035 import tyndp_gas_generation, tyndp_gas_demand, grid | ||
from egon.data.datasets.gas_neighbours.eGon100RE import insert_gas_neigbours_eGon100RE | ||
|
||
|
||
class GasNeighbours(Dataset): | ||
def __init__(self, dependencies): | ||
super().__init__( | ||
name="GasNeighbours", | ||
version="0.0.1", | ||
dependencies=dependencies, | ||
tasks=({tyndp_gas_generation, tyndp_gas_demand, grid}, insert_gas_neigbours_eGon100RE), | ||
) |
Oops, something went wrong.