Skip to content

Commit a0a4d6d

Browse files
committed
Ported repo from internal source
1 parent a0186b0 commit a0a4d6d

38 files changed

+3013
-1
lines changed

.gitignore

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# directories
2+
env/*
3+
*.egg-info/
4+
.ipynb_checkpoints
5+
*/.ipynb_checkpoints/*
6+
__pycache__/
7+
analysis/regions/*
8+
9+
# file types to ignore
10+
#*.ipynb
11+
*.aux.xml
12+
13+
# Remove things in testing results dir
14+
testing/results/*.tif
15+
testing/results/*.shp
16+
testing/results/*.dbf
17+
testing/results/*.shx
18+
testing/results/*.prj
19+
testing/results/*.cpg
20+
testing/results/*.csv
21+
testing/results/eligibility_plots

Examples/00_basic_workflow.ipynb

Lines changed: 299 additions & 0 deletions
Large diffs are not rendered by default.

LICENSE.txt

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2017 David Severin Ryberg (FZJ IEK-3), Jochen Linßen (FZJ IEK-3), Martin Robinius (FZJ IEK-3), Detlef Stolten (FZJ IEK-3)
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 128 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,128 @@
1-
glaes-public
1+
<a href="http://www.fz-juelich.de/iek/iek-3/EN/Forschung/_Process-and-System-Analysis/_node.html"><img src="http://www.fz-juelich.de/SharedDocs/Bilder/IBG/IBG-3/DE/Plant-soil-atmosphere%20exchange%20processes/INPLAMINT%20(BONARES)/Bild3.jpg?__blob=poster" alt="Forschungszentrum Juelich Logo" width="230px"></a>
2+
3+
# Geospatial Land Availability for Energy Systems (GLAES)
4+
5+
GLAES is a framework for conducting land eligibility analyses and is designed to easily incorporate disparate geospatial information from a variety of sources into a unified solution.
6+
Currently, the main purpose of GLAES is performing land eligibility (LE) analyses which, in short, are used to determine which areas within a region are deemed 'eligible' for some purpose (such as placing a wind turbine).
7+
Although initially intended to operate in the context of distributed renewable energy systems, such as onshore wind and open-field solar parks, the work flow of GLAES is applicable to any context where a constrained indication of land is desired.
8+
Except in the context of Europe, GLAES only provides a framework for conducting these types of analyses, and so the underlying data sources which are used will need to be provided.
9+
Fortunately, GLAES is built on top of the Geospatial Data Abstraction Library (<a href="https://www.gdal.org">GDAL</a>) and so is capable of incorporating information from any geospatial dataset which GDAL can interpret; including common GIS formats such as .shp and .tif files.
10+
In this way, GLAES affords a high degree of flexibility such that very specific considerations, while still maintaining a consistent application method between studies.
11+
12+
13+
## Features
14+
* Standardized approach to land eligibility analyses
15+
* Applicable in any geographic region and at any resolution
16+
* Can flexibly incorporate most geospatial datasets: including the common .shp and .tif formats
17+
* Simple visualization and storage of results as common image or raster dataset
18+
* Simple integration of results into other analysis (via numpy array)
19+
20+
21+
## European Priors
22+
23+
A number of precomputed (Prior) datasets which constitute the most commonly considered criteria used for LE analyses have been constructed for the European context.
24+
These datasets are formatted to be used directly with the GLAES framework and, in doing so, drastically reduce the time requirements, data management, and overall complexity of conducting these analyses.
25+
The Priors also have the added benefit of providing a common data source to all LE researchers, which further promotes consistency between independent LE evaluations.
26+
Most important, usage of these datasets is just as easy as applying exclusions from other geospatial datasources.
27+
Although the Prior datasets are not included when cloning this repository, they can be downloaded and installed using the process detailed in the "Installation" section.
28+
29+
---
30+
## Example
31+
32+
### A simple LE work flow using GLAES would go as follows:
33+
Objective:
34+
35+
* Determine land eligibility for photovoltaic (PV) modules in the <a href="https://en.wikipedia.org/wiki/Aachen_(district)">Aachen administration region</a> considering that...
36+
1. PV modules should not cover agricultural areas (because people need to eat)
37+
2. PV modules should not be within 200 meters of a major road way (because they may get dirty)
38+
3. PV modules should not be within 1000 meters of a settlement area (because they are too shiny)
39+
40+
41+
```python
42+
ec = ExclusionCalculator(aachenRegion, srs=3035, pixelSize=100)
43+
44+
ec.excludePrior("agriculture_proximity", value=0)
45+
ec.excludePrior("settlement_proximity", value=(None,1000))
46+
ec.excludePrior("roads_main_proximity", value=(None,200))
47+
48+
ec.draw()
49+
```
50+
51+
<img src="images/example_04.png" alt="Final eligibility result" width="700px">
52+
53+
### More Examples
54+
[Basic Workflow](Examples/00_basic_workflow.ipynb)
55+
56+
---
57+
## Installation
58+
59+
Be sure the <a href="https://github.com/FZJ-IEK3-VSA/geokit">GeoKit</a> package is installed
60+
61+
Clone a local copy of the repository to your computer
62+
63+
$ git clone https://github.com/FZJ-IEK3-VSA/glaes.git
64+
65+
Then install GLAES via pip as follow
66+
67+
$ cd <path>/glaes
68+
$ pip install -e .
69+
70+
If you would like to install the Prior datasets:
71+
* For now, contact the main author of this package for a download link (s.ryberg@fz-juelich.de)
72+
* Download the zipped file
73+
* Unzip the files directly into the glaes->data->priors directory
74+
* For instance...
75+
76+
$ cp <path>/glaes/data/priors
77+
$ unzip priors.zip
78+
79+
---
80+
81+
## Associated papers
82+
83+
If you would like to see a **much** more detailed discussion on land eligibility analysis and see why a framework such as GLAES is not only helpful, but a requirement, please see:
84+
85+
<a href="the-background-paper">The Background Paper</a>
86+
87+
Examples of Land Eligibility evaluation and applications:
88+
89+
* [Determining the Land Eligibility of Renewable Energy Technologies with Application to European Wind Energy](link-will-go-here)
90+
91+
* [Spatio-Temporal Optimization of a Future Energy System for Power-to-Hydrogen Applications in Germany](link-will-go-here)
92+
93+
* [Linking the Power and Transport Sectors—Part 2: Modelling a Sector Coupling Scenario for Germany](http://www.mdpi.com/1996-1073/10/7/957/htm)
94+
95+
---
96+
## Citation
97+
98+
If you decide to use GLAES anywhere in a published work, please kindly cite us using the following
99+
100+
```bibtex
101+
@article{ryberg_land_eligibility_2017,
102+
title={Determining the Land Eligibility of Renewable Energy Technologies with Application to European Wind Energy},
103+
author={David Severin Ryberg, Zena Tulemat, Martin Robinius, Detlef Stolten},
104+
year={2017},
105+
}
106+
```
107+
108+
---
109+
## License
110+
111+
MIT License
112+
113+
Copyright (c) 2017 David Severin Ryberg (FZJ IEK-3), Jochen Linßen (FZJ IEK-3), Martin Robinius (FZJ IEK-3), Detlef Stolten (FZJ IEK-3)
114+
115+
You should have received a copy of the MIT License along with this program.
116+
If not, see <https://opensource.org/licenses/MIT>
117+
118+
## About Us
119+
<a href="http://www.fz-juelich.de/iek/iek-3/EN/Forschung/_Process-and-System-Analysis/_node.html"><img src="http://fz-juelich.de/SharedDocs/Bilder/IEK/IEK-3/Abteilungen2015/VSA_DepartmentPicture_2017.jpg?__blob=normal" alt="Abteilung VSA"></a>
120+
121+
We are the [Process and Systems Analysis](http://www.fz-juelich.de/iek/iek-3/EN/Forschung/_Process-and-System-Analysis/_node.html) department at the [Institute of Energy and Climate Research: Electrochemical Process Engineering (IEK-3)](http://www.fz-juelich.de/iek/iek-3/EN/Home/home_node.html) belonging to the Forschungszentrum Jülich. Our interdisciplinary department's research is focusing on energy-related process and systems analyses. Data searches and system simulations are used to determine energy and mass balances, as well as to evaluate performance, emissions and costs of energy systems. The results are used for performing comparative assessment studies between the various systems. Our current priorities include the development of energy strategies, in accordance with the German Federal Government’s greenhouse gas reduction targets, by designing new infrastructures for sustainable and secure energy supply chains and by conducting cost analysis studies for integrating new technologies into future energy market frameworks.
122+
123+
124+
## Acknowledgment
125+
126+
This work was supported by the Helmholtz Association under the Joint Initiative ["Energy System 2050 – A Contribution of the Research Field Energy"](https://www.helmholtz.de/en/research/energy/energy_system_2050/).
127+
128+
<a href="https://www.helmholtz.de/en/"><img src="https://www.helmholtz.de/fileadmin/user_upload/05_aktuelles/Marke_Design/logos/HG_LOGO_S_ENG_RGB.jpg" alt="Helmholtz Logo" width="200px" style="float:right"></a>

contributors.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
David Severin Ryberg
2+
Zena Tulemat

0 commit comments

Comments
 (0)