GLAES (Geospatial Land Availability for Energy Systems) is a geospatial framework for land eligibility analyses (LEA) to incorporate various geodata into one assessment. It also allows to optimally distribute placements. The workflow is applicable to any context where land constraints are needed.
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.
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).
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.
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.
Fortunately, GLAES is built on top of the Geospatial Data Abstraction Library (GDAL) 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.
In this way, GLAES affords a high degree of flexibility such that very specific considerations, while still maintaining a consistent application method between studies.
A number of precomputed (Prior) datasets which constitute the most commonly considered criteria used for LE analyses have been constructed for the European context.
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.
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.
Most important, usage of these datasets is just as easy as applying exclusions from other geospatial datasources.
Although the Prior datasets are not included when cloning this repository, they can be downloaded from Mendeley Data and installed by unzipping (or placing if downloaded one-by-one) the files in the repo directory glaes/data/priors
.
Objective:
ec = ExclusionCalculator(aachenRegion, srs=3035, pixelSize=100)
ec.excludePrior("agriculture_proximity", value=0)
ec.excludePrior("settlement_proximity", value=(None,1000))
ec.excludePrior("roads_main_proximity", value=(None,200))
ec.draw()
The primary dependancies of GLAES are:
If you can install these modules on you own, then the glaes module should be easily installable with:
pip install git+https://github.com/FZJ-IEK3-VSA/glaes.git#egg=glaes
If, on the otherhand, you prefer an automated installation using Anaconda, then you should be able to follow these steps:
git clone https://github.com/FZJ-IEK3-VSA/glaes.git
cd glaes
git checkout dev
conda env create --file requirements.yml
conda env update --file requirements.yml -n <ENVIRONMENT-NAME>
conda env create --file requirements-dev.yml
We are trying to get GLAES to work within a Docker container. Try it out!
docker pull sevberg/glaes:latest
docker run -it sevberg/glaes:latest -c "python"
docker run -it \
-p 8888:8888 \
sevberg/glaes:latest \
-c "jupyter notebook --ip='*' --port=8888 --no-browser --allow-root"
docker run -it \
--mount target=/notebooks,type=bind,src=<PATH-TO-DIRECTORY> \
-p 8888:8888 \
sevberg/glaes:latest \
-c "jupyter notebook --notebook-dir=/notebooks --ip='*' --port=8888 --no-browser --allow-root"
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:
The Background Paper
Examples of Land Eligibility evaluation and applications:
Uniformly constrained land eligibility for onshore European wind power
Linking the Power and Transport Sectors—Part 2: Modelling a Sector Coupling Scenario for Germany
If you decide to use GLAES anywhere in a published work, please kindly cite us using the following
@article{Ryberg2018,
author = {Ryberg, David and Robinius, Martin and Stolten, Detlef},
doi = {10.3390/en11051246},
issn = {1996-1073},
journal = {Energies},
month = {may},
number = {5},
pages = {1246},
title = {{Evaluating Land Eligibility Constraints of Renewable Energy Sources in Europe}},
url = {http://www.mdpi.com/1996-1073/11/5/1246},
volume = {11},
year = {2018}
}
MIT License
Copyright (c) 2017-2022 David Severin Ryberg (FZJ IEK-3), Jochen Linßen (FZJ IEK-3), Martin Robinius (FZJ IEK-3), Detlef Stolten (FZJ IEK-3)
You should have received a copy of the MIT License along with this program.
If not, see https://opensource.org/licenses/MIT
This work was supported by the Helmholtz Association under the Joint Initiative "Energy System 2050 – A Contribution of the Research Field Energy".