https://github.com/ladybug-tools/honeybee-radiance
🐝 ⚡️ Radiance extension for Honeybee
https://github.com/ladybug-tools/honeybee-radiance
Last synced: about 2 months ago
JSON representation
🐝 ⚡️ Radiance extension for Honeybee
- Host: GitHub
- URL: https://github.com/ladybug-tools/honeybee-radiance
- Owner: ladybug-tools
- License: agpl-3.0
- Created: 2019-05-29T01:41:50.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2026-02-06T00:35:38.000Z (4 months ago)
- Last Synced: 2026-02-06T10:48:03.089Z (4 months ago)
- Language: Python
- Homepage: https://www.ladybug.tools/honeybee-radiance/docs/
- Size: 22.1 MB
- Stars: 17
- Watchers: 3
- Forks: 12
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# honeybee-radiance

[](https://github.com/ladybug-tools/honeybee-radiance/actions)
[](https://coveralls.io/github/ladybug-tools/honeybee-radiance)
[](https://www.python.org/downloads/release/python-3100/)
[](https://www.python.org/downloads/release/python-370/)
[](https://www.python.org/downloads/release/python-270/)
[](https://github.com/IronLanguages/ironpython2/releases/tag/ipy-2.7.8/)
Radiance extension for honeybee.
Honeybee-radiance adds Radiance simulation functionalities to honeybee for daylight/radiation simulation.
## Installation
`pip install -U honeybee-radiance`
To check if the command line interface is installed correctly use `honeybee-radiance --help`.
## Documentation
[API documentation](https://www.ladybug.tools/honeybee-radiance/docs/)
## Local Development
1. Clone this repo locally
```console
git clone git@github.com:ladybug-tools/honeybee-radiance
# or
git clone https://github.com/ladybug-tools/honeybee-radiance
```
2. Install dependencies:
```console
cd honeybee-radiance
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_radiance
sphinx-build -b html ./docs ./docs/_build/docs
```