allow disabling max_depth through config overwrite
This commit is contained in:
parent
4e75d6c644
commit
67d878d1d7
@ -343,7 +343,7 @@ rule build_renewable_profiles:
|
|||||||
),
|
),
|
||||||
gebco=lambda w: (
|
gebco=lambda w: (
|
||||||
"data/bundle/GEBCO_2014_2D.nc"
|
"data/bundle/GEBCO_2014_2D.nc"
|
||||||
if "max_depth" in config["renewable"][w.technology].keys()
|
if config["renewable"][w.technology].get("max_depth")
|
||||||
else []
|
else []
|
||||||
),
|
),
|
||||||
ship_density=lambda w: (
|
ship_density=lambda w: (
|
||||||
|
@ -37,8 +37,10 @@ renewable:
|
|||||||
cutout: be-03-2013-era5
|
cutout: be-03-2013-era5
|
||||||
offwind-ac:
|
offwind-ac:
|
||||||
cutout: be-03-2013-era5
|
cutout: be-03-2013-era5
|
||||||
|
max_depth: false
|
||||||
offwind-dc:
|
offwind-dc:
|
||||||
cutout: be-03-2013-era5
|
cutout: be-03-2013-era5
|
||||||
|
max_depth: false
|
||||||
solar:
|
solar:
|
||||||
cutout: be-03-2013-era5
|
cutout: be-03-2013-era5
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user