Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/OpenEnergyPlatform/open-MaStR
A collaborative software to download the energy database Marktstammdatenregister (MaStR)
https://github.com/OpenEnergyPlatform/open-MaStR
dataset datasets energy energy-data marktstammdatenregister oep open-energy-family python solar
Last synced: 3 months ago
JSON representation
A collaborative software to download the energy database Marktstammdatenregister (MaStR)
- Host: GitHub
- URL: https://github.com/OpenEnergyPlatform/open-MaStR
- Owner: OpenEnergyPlatform
- License: agpl-3.0
- Created: 2019-08-21T14:11:11.000Z (about 5 years ago)
- Default Branch: production
- Last Pushed: 2024-06-07T10:56:31.000Z (5 months ago)
- Last Synced: 2024-06-11T16:01:10.562Z (5 months ago)
- Topics: dataset, datasets, energy, energy-data, marktstammdatenregister, oep, open-energy-family, python, solar
- Language: Python
- Homepage: https://open-mastr.readthedocs.io/en/latest/
- Size: 31.4 MB
- Stars: 77
- Watchers: 8
- Forks: 15
- Open Issues: 18
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Citation: CITATION.cff
Awesome Lists containing this project
- open-sustainable-technology - open-MaStR - Download and process German energy data from BNetzA database Marktstammdatenregister. (Energy Systems / Energy Data Accessibility and Integration)
README
.. image:: https://user-images.githubusercontent.com/14353512/199113556-4b53660f-c628-4138-8d01-3719595ecda1.png
:align: left
:target: https://github.com/OpenEnergyPlatform/open-MaStR
:alt: MaStR logo==========
open-mastr
==========**A package that provides an interface for downloading and processing the Marktstammdatenregister (MaStR)**
.. list-table::
:widths: 10, 50* - License
- |badge_license|
* - Documentation
- |badge_rtd|
* - Tests
- |badge_ci|
* - Publication
- |badge_pypi| |badge_joss|
* - Data Publication
- |badge_zenodo|
* - Development
- |badge_issue_open| |badge_issue_closes| |badge_pr_open| |badge_pr_closes|
* - Community
- |badge_contributing| |badge_contributors| |badge_repo_counts| |PyPI download month| |Total PyPI downloads|
.. contents::
:depth: 2
:local:
:backlinks: topIntroduction
============The `Marktstammdatenregister (MaStR) `_ is a German register
provided by the German Federal Network Agency (Bundesnetzagentur / BNetza) that keeps track of all power and gas units located in Germany.The MaStR data can be
#. browsed and filtered `online `_
#. taken from `daily provided dumps `_
#. be accessed via the `web service `_| The python package ``open-mastr`` provides an interface for accessing the data.
| It contains methods to download and parse the xml files (bulk) and the SOAP web service (API).
| In this repository we are developing methods to analyze, validate and enrich the data.
| We want to collect and compile post processing scripts to improve data quality.Documentation
=============| The documentation is in `Material for Mkdocs `_ markdown format in the ``doc`` sub-folder of the repository.
| Find the `documentation `_ hosted on ReadTheDocs.| The original API documentation can be found on the `Webhilfe des Marktstammdatenregisters `_.
| If you are interested in browsing the MaStR online, check out the privately hosted `Marktstammdatenregister.dev `_.
| Also see the `bundesAPI/Marktstammdaten-API `_ for another implementation.Installation
============| It is recommended to use a virtual python environment, for example `conda `_ or `virtualenv `_.
| The package is intended to be used with ``Python >=3.8``.PyPI
----Install the current release of ``open-mastr`` with ``pip``:
.. code-block:: python
pip install open-mastr
GitHub
------For development, clone this repository manually.
.. code-block:: python
git clone [email protected]:OpenEnergyPlatform/open-MaStR.git
cd open-MaStRSetup the conda environment with
.. code-block:: python
conda env create -f environment.yml
Install the package with
.. code-block:: python
pip install "open_mastr[dev]"
Examples of Usage
==================
If you want to see your project in this list, write an
`Issue `_ or add
changes in a `Pull Request `_.- `PV- und Windflächenrechner `_
- `Wasserstoffatlas `_
- `EE-Status App `_
- `Digiplan Anhalt `_Collaboration
=============
| Everyone is invited to develop this repository with good intentions.
| Please follow the workflow described in the `CONTRIBUTING.md `_.License and Citation
====================Software
--------| This repository is licensed under the **GNU Affero General Public License v3.0 or later** (AGPL-3.0-or-later).
| See `LICENSE.md `_ for rights and obligations.
| See the *Cite this repository* function or `CITATION.cff `_ for citation of this repository.
| Copyright: `open-MaStR `_ © `Reiner Lemoine Institut `_ © `fortiss `_ | `AGPL-3.0-or-later `_Data
----
| The data has the license **Datenlizenz Deutschland – Namensnennung – Version 2.0** (DL-DE-BY-2.0)
| Copyright: `Marktstammdatenregister `_ - © Bundesnetzagentur für Elektrizität, Gas, Telekommunikation, Post und Eisenbahnen | `DL-DE-BY-2.0 `_.. |badge_license| image:: https://img.shields.io/github/license/OpenEnergyPlatform/open-MaStR
:target: LICENSE.txt
:alt: License.. |badge_rtd| image:: https://readthedocs.org/projects/open-mastr/badge/?style=flat
:target: https://open-mastr.readthedocs.io/en/latest/
:alt: Read the Docs.. |badge_ci| image:: https://github.com/OpenEnergyPlatform/open-MaStR/workflows/CI/badge.svg
:target: https://github.com/OpenEnergyPlatform/open-MaStR/actions?query=workflow%3ACI
:alt: GitHub Actions.. |badge_pypi| image:: https://img.shields.io/pypi/v/open-mastr.svg
:target: https://pypi.org/project/open-mastr/
:alt: PyPI.. |badge_zenodo| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.6807426.svg
:target: https://doi.org/10.5281/zenodo.6807425
:alt: zenodo.. |badge_issue_open| image:: https://img.shields.io/github/issues-raw/OpenEnergyPlatform/open-MaStR
:alt: open issues.. |badge_issue_closes| image:: https://img.shields.io/github/issues-closed-raw/OpenEnergyPlatform/open-MaStR
:alt: closes issues.. |badge_pr_open| image:: https://img.shields.io/github/issues-pr-raw/OpenEnergyPlatform/open-MaStR
:alt: closes issues.. |badge_pr_closes| image:: https://img.shields.io/github/issues-pr-closed-raw/OpenEnergyPlatform/open-MaStR
:alt: closes issues.. |badge_contributing| image:: https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat
:alt: contributions.. |badge_contributors| image:: https://img.shields.io/badge/all_contributors-1-orange.svg?style=flat-square
:alt: contributors.. |badge_repo_counts| image:: https://hits.dwyl.com/OpenEnergyPlatform/open-MaStR.svg
:alt: counter
.. |PyPI download month| image:: https://img.shields.io/pypi/dm/open-mastr?label=PyPi%20Downloads
:target: https://pypistats.org/packages/open-mastr.. |Total PyPI downloads| image:: https://static.pepy.tech/badge/open-mastr
:target: https://pepy.tech/project/open-mastr.. |badge_joss| image:: https://joss.theoj.org/papers/dc0d33e7dc74f7233e15a7b6fe0c7a3e/status.svg
:target: https://joss.theoj.org/papers/dc0d33e7dc74f7233e15a7b6fe0c7a3e