Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/PyPSA/atlite

Atlite: A Lightweight Python Package for Calculating Renewable Power Potentials and Time Series
https://github.com/PyPSA/atlite

csp dynamic-line-rating energy energy-system energy-systems era5 gis heat-pump potentials pv python reanalysis renewable-energy renewable-timeseries solar wind

Last synced: 4 days ago
JSON representation

Atlite: A Lightweight Python Package for Calculating Renewable Power Potentials and Time Series

Awesome Lists containing this project

README

        

.. SPDX-FileCopyrightText: 2016 - 2023 The Atlite Authors

.. SPDX-License-Identifier: CC-BY-4.0

======
Atlite
======

|PyPI version| |Conda version| |Documentation Status| |ci| |codecov| |standard-readme compliant| |MIT-image| |reuse| |black| |pre-commit.ci| |joss| |discord| |stackoverflow|

Atlite is a `free software`_, `xarray`_-based Python library for
converting weather data (like wind speeds, solar influx) into energy systems data.
It is designed to be lightweight, keeping computing resource requirements (CPU, RAM) usage low.
It is therefore well suited to be used with big weather datasets.

.. Atlite is designed to be modular, so that it can work with any weather
.. datasets. It currently has modules for the following datasets:

.. * `NCEP Climate Forecast System `_ hourly
.. historical reanalysis weather data available on a 0.2 x 0.2 degree global grid
.. * `ECMWF ERA5
.. `_ hourly
.. historical reanalysis weather data on an approximately 0.25 x 0.25 deg global
.. grid
.. * `EURO-CORDEX Climate Change Projection `_
.. three-hourly up until 2100, available on a 0.11 x 0.11 degree grid for Europe
.. * `CMSAF SARAH-2
.. `_
.. half-hourly historical surface radiation on a 0.05 x 0.05 deg grid available
.. for Europe and Africa (automatically interpolated to a 0.2 deg grid and
.. combined with ERA5 temperature).

Atlite can process the following weather data fields and can convert them into following power-system relevant time series for any subsets of a full weather database.

.. image:: doc/workflow_chart.png

.. * Temperature
.. * Downward short-wave radiation
.. * Upward short-wave radiation
.. * Wind
.. * Runoff
.. * Surface roughness
.. * Height maps
.. * Soil temperature
.. * Dewpoint temperature

.. * Wind power generation for a given turbine type
.. * Solar PV power generation for a given panel type
.. * Solar thermal collector heat output
.. * Hydroelectric inflow (simplified)
.. * Heating demand (based on the degree-day approximation)

Atlite was initially developed by the `Renewable Energy Group
`_
at `FIAS `_ to carry out simulations
for the `CoNDyNet project `_, financed by the
`German Federal Ministry for Education and Research (BMBF)
`_ as part of the `Stromnetze
Research Initiative
`_.

Installation
============

To install you need a working installation running Python 3.6 or above
and we strongly recommend using either miniconda or anaconda for package
management.

To install the current stable version:

with ``conda`` from `conda-forge`_

.. code:: shell

conda install -c conda-forge atlite

with ``pip`` from `pypi`_

.. code:: shell

pip install atlite

to install the most recent upstream version from GitHub

.. code:: shell

pip install git+https://github.com/pypsa/atlite.git

Documentation
===============
.. * Install atlite from conda-forge or pypi.
.. * Download one of the weather datasets listed above (ERA5 is downloaded
.. automatically on-demand after the ECMWF
.. `cdsapi` client is
.. properly installed)
.. * Create a cutout, i.e. a geographical rectangle and a selection of
.. times, e.g. all hours in 2011 and 2012, to narrow down the scope -
.. see `examples/create_cutout.py `_
.. * Select a sparse matrix of the geographical points inside the cutout
.. you want to aggregate for your time series, and pass it to the
.. appropriate converter function - see `examples/ `_

Please check the `documentation `_.

Support & Contributing
======================
* In case of code-related **questions**, please post on `stack overflow `_.
* For non-programming related and more general questions please refer to the `pypsa mailing list `_.
* To **discuss** with other PyPSA and atlite users, organise projects, share news, and get in touch with the community you can use the `discord server `_.
* For **bugs and feature requests**, please use the `issue tracker `_.
* We strongly welcome anyone interested in providing **contributions** to this project. If you have any ideas, suggestions or encounter problems, feel invited to file issues or make pull requests on the `Github repository `_.

Authors and Copyright
---------------------

Copyright (C) 2016 - 2023 The Atlite Authors.

See the `AUTHORS`_ for details.

Licence
=======

|MIT-image|

This work is licensed under multiple licences:

- All original source code is licensed under `MIT`_
- Auxiliary code from SPHINX is licensed under `BSD-2-Clause`_.
- The documentation is licensed under `CC-BY-4.0`_.
- Configuration and data files are mostly licensed under `CC0-1.0`_.

See the individual files for license details.

.. _free software: http://www.gnu.org/philosophy/free-sw.en.html
.. _xarray: http://xarray.pydata.org/en/stable/

.. _conda-forge: https://anaconda.org/conda-forge/atlite
.. _pypi: https://pypi.org/project/atlite/%3E
.. _GitHub: https://github.com/pypsa/atlite

.. _documentation on getting started: https://atlite.readthedocs.io/en/latest/getting-started.html

.. _AUTHORS: AUTHORS.rst

.. _MIT: LICENSES/MIT.txt
.. _BSD-2-Clause: LICENSES/BSD-2-Clause.txt
.. _CC-BY-4.0: LICENSES/CC-BY-4.0.txt
.. _CC0-1.0: LICENSES/CC0-1.0.txt

.. |PyPI version| image:: https://img.shields.io/pypi/v/atlite.svg
:target: https://pypi.python.org/pypi/atlite
.. |Conda version| image:: https://img.shields.io/conda/vn/conda-forge/atlite.svg
:target: https://anaconda.org/conda-forge/atlite
.. |Documentation Status| image:: https://readthedocs.org/projects/atlite/badge/?version=master
:target: https://atlite.readthedocs.io/en/master/?badge=master
.. |standard-readme compliant| image:: https://img.shields.io/badge/readme%20style-standard-brightgreen.svg?style=flat
:target: https://github.com/RichardLitt/standard-readme
.. |MIT-image| image:: https://img.shields.io/pypi/l/atlite.svg
:target: LICENSES/MIT.txt
.. |codecov| image:: https://codecov.io/gh/PyPSA/atlite/branch/master/graph/badge.svg?token=TEJ16CMIHJ
:target: https://codecov.io/gh/PyPSA/atlite
.. |ci| image:: https://github.com/PyPSA/atlite/actions/workflows/CI.yaml/badge.svg
:target: https://github.com/PyPSA/atlite/actions/workflows/CI.yaml
.. |reuse| image:: https://api.reuse.software/badge/github.com/pypsa/atlite
:target: https://api.reuse.software/info/github.com/pypsa/atlite
.. |black| image:: https://img.shields.io/badge/code%20style-black-000000.svg
:target: https://github.com/psf/black
:alt: Code style: black
.. |pre-commit.ci| image:: https://results.pre-commit.ci/badge/github/PyPSA/atlite/master.svg
:target: https://results.pre-commit.ci/latest/github/PyPSA/atlite/master
:alt: pre-commit.ci status
.. |joss| image:: https://joss.theoj.org/papers/10.21105/joss.03294/status.svg
:target: https://doi.org/10.21105/joss.03294
.. |discord| image:: https://img.shields.io/discord/911692131440148490?logo=discord
:target: https://discord.gg/AnuJBk23FU
.. |stackoverflow| image:: https://img.shields.io/stackexchange/stackoverflow/t/pypsa
:target: https://stackoverflow.com/questions/tagged/pypsa
:alt: Stackoverflow