https://github.com/ladybug-tools/honeybee-ies
đ âšī¸ Honeybee extension for importing and exporting IES GEM files
https://github.com/ladybug-tools/honeybee-ies
Last synced: 9 months ago
JSON representation
đ âšī¸ Honeybee extension for importing and exporting IES GEM files
- Host: GitHub
- URL: https://github.com/ladybug-tools/honeybee-ies
- Owner: ladybug-tools
- License: agpl-3.0
- Created: 2021-12-09T19:45:00.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2025-06-05T21:01:41.000Z (about 1 year ago)
- Last Synced: 2025-07-10T21:00:03.147Z (11 months ago)
- Language: Python
- Homepage: https://www.ladybug.tools/honeybee-ies/docs/
- Size: 945 KB
- Stars: 5
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
[](https://github.com/ladybug-tools/honeybee-ies/actions)
[](https://www.python.org/downloads/release/python-3100/)
[](https://www.python.org/downloads/release/python-370/)
# honeybee-ies
Honeybee extension for translating an HBJSON file to IES-VE GEM file format and vice versa.
## Sydney Opera House


## Revit sample model

## Installation
```console
pip install honeybee-ies
```
## QuickStart
```python
import pathlib
from honeybee.model import Model
path_to_hbjson = './tests/assets/sample_model_45.hbjson'
path_to_out_folder = pathlib.Path('./tests/assets/temp')
path_to_out_folder.mkdir(parents=True, exist_ok=True)
model = Model.from_hbjson(path_to_hbjson)
# the to_gem method is added to model by honeybee-ies library
gem_file = model.to_gem(path_to_out_folder.as_posix(), name='sample_model_45')
```
You can also run the command from CLI
```honeybee-ies translate model-to-gem ./tests/assets/revit_sample_model.hbjson --name revit-sample-model```
## [API Documentation](http://ladybug-tools.github.io/honeybee-ies/docs)
## Local Development
1. Clone this repo locally
```console
git clone git@github.com:ladybug-tools/honeybee-ies
# or
git clone https://github.com/ladybug-tools/honeybee-ies
```
2. Install dependencies:
```console
cd honeybee-ies
pip install -r dev-requirements.txt
pip install -r requirements.txt
```
3. Run Tests:
```console
python -m pytest tests/
```
4. Generate Documentation:
```console
sphinx-apidoc -f -e -d 4 -o ./docs ./honeybee_ies
sphinx-build -b html ./docs ./docs/_build/docs
```