From b4c502f90162c30112056a5e0243772066866bb3 Mon Sep 17 00:00:00 2001 From: Jan Frederick Date: Fri, 3 Apr 2020 12:12:27 +0200 Subject: [PATCH] Updated description --- scripts/build_renewable_profiles.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build_renewable_profiles.py b/scripts/build_renewable_profiles.py index 7c00e4f0..d694114b 100644 --- a/scripts/build_renewable_profiles.py +++ b/scripts/build_renewable_profiles.py @@ -289,7 +289,7 @@ if __name__ == '__main__': potentials = config['capacity_per_sqkm'] * vlanduse._cutout_cell_areas(cutout) potmatrix = matrix * spdiag(potentials.ravel()) - if config.get('keep_all_available_areas', False) != True: # check config file if user wants to use all availbe areas for renewable potentials + if config.get('keep_all_available_areas', False) != True: # check config file whether user wants to use all availbe weather cells for renewable profile and potential generation potmatrix.data[potmatrix.data < 1.] = 0 # ignore weather cells where only less than 1 MW can be installed potmatrix.eliminate_zeros()