Metadata-Version: 2.4
Name: technologydata
Version: 0.2.0
Summary: Package for providing common data assumptions for energy system modelling on techno-economics and macro-economics.
Author-email: Contributors to technologydata <johannes.hampp@openenergytransition.org>, Contributors to technologydata <fabrizio.finozzi.business@gmail.com>
Project-URL: Homepage, https://github.com/open-energy-transition/technology-data
Project-URL: Source, https://github.com/open-energy-transition/technology-data
Project-URL: BugTracker, https://github.com/open-energy-transition/technology-data/issues
Project-URL: Changelog, https://github.com/open-energy-transition/technology-data/releases
Keywords: energy,modelling,techno-economics,macroeconomics
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Science/Research
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: frozendict>=2.4.6
Requires-Dist: hdx-python-country>=3.9.6
Requires-Dist: mypy>=1.15.0
Requires-Dist: pandas>=2.2.3
Requires-Dist: pint>=0.24.4
Requires-Dist: pydantic>=2.11.7
Requires-Dist: pydeflate>=2.3.3
Requires-Dist: requests>=2.32.3
Requires-Dist: savepagenow>=1.3.0
Requires-Dist: scipy>=1.16.1
Dynamic: license-file

# technologydata

<!--

TODO: Add badges
**Suggestions:**

- Use http://shields.io or a similar service to create and host the images.
- Add the [Standard Readme badge](https://github.com/RichardLitt/standard-readme#badge).

-->

A Python package to manage techno-economic assumptions for energy system models.

## Overview

`technologydata` is a Python package that supports the management of techno-economic assumptions for energy system models.
It provides a structured way to store, retrieve, and manipulate data related to various technologies used in energy systems,
including unit-ful parameters, currency conversions, inflation adjustment, and temporal modelling.

The package currently includes a pre-parsed dataset from the DEA's Technology Catalogue focusing on energy storage technologies and a dedicated parser (see [here](docs/examples/dea_storage.md)).  In the future it will include other common public data sources such NREL's ATB.

The goal of this package is to make energy system modelling easier and more efficient,
automating common tasks and transformations to reduce errors and allowing for easier data exchange between models.

## Table of Contents

1. [Background](#background)
2. [Install](#install)
3. [Usage](#usage)
4. [Maintainers](#maintainers)
5. [Thanks](#thanks)
6. [Contributing](#contributing)
7. [License](#license)

## Background

> Modelling is 10% science, 10% art, and 80% finding the right data and getting it into the right format.
> — Every energy modeller ever

Modelling energy systems requires a lot of data.
Techno-economic data, i.e. data about the costs for building operating technologies and their technical
characteristics, is a key input to many energy system models today.

Techno-economic data is usually collected from a variety of scattered sources and then manually processed
into the format required by a specific model.
This is repeated for every new modelling project, leading to a lot of duplicated effort.
The manual processing also carries a high risk of errors, which can lead to misleading results.

When projects are finished, the processed data is often discarded, leading to a loss of valuable information.
In better cases, the processed data is also published along with the model results, but usually in a
non-standardised and non-machine-readable format and without information about the data provenance and processing steps.

It sounds abstract, but if someone used cost assumptions for the US in 2015 USD, then there are many wrong ways
and a few right ways to convert these to e.g. EUR and adjust it for inflation to 2023.

## Install

The package is currently under development. A pre-release is published to `PyPI`. The package is not yet available on `conda-forge`.

To install the package

```bash
pip install technologydata
```

Alternatively, to install the package locally from GitHub, first clone the package and then use `uv` to install it in editable mode:

```bash
git clone https://github.com/open-energy-transition/technology-data/tree/prototype-2
cd technology-data
git checkout prototype-2
uv sync --group dev --group docs
```

## Usage

Detailed usage instructions and examples can be found in the available documentation. To build the documentation locally, follow the steps outlined [here](docs/contributing/instructions.md#building-the-documentation-locally).

## Maintainers

This repository is currently maintained by [Open Energy Transition](https://openenergytransition.org/) with the maintainers and developers being:

- [euronion](https://github.com/euronion)
- [finozzifa](https://github.com/finozzifa)

## Thanks

Development of this prototype package would not have been possible without the funding from [Breakthrough Energy](https://www.breakthroughenergy.org/).

## Contributing

For contributing instructions, guidelines and our code of conduct, please refer to the [contributing section](docs/contributing) in the documentation.

## License

This project is licensed under the [MIT License](LICENSES/MIT.txt).

Primary data included in the repository may be licensed under specific terms.
Processed data included in the project is licensed under [Creative Commons Attribution 4.0 International (CC BY 4.0)](LICENSES/CC-BY-4.0.txt).

To make it easier to identify which data is licensed under which terms, this repository follows the [REUSE](https://reuse.software/) specification.
This means you can find the license information for each file either located in its header or in [REUSE.toml](REUSE.toml).
