https://github.com/ladybug-tools/dragonfly-uwg
:dragon: :city_sunrise: Dragonfly extension for urban heat island modeling.
https://github.com/ladybug-tools/dragonfly-uwg
Last synced: 9 months ago
JSON representation
:dragon: :city_sunrise: Dragonfly extension for urban heat island modeling.
- Host: GitHub
- URL: https://github.com/ladybug-tools/dragonfly-uwg
- Owner: ladybug-tools
- License: agpl-3.0
- Created: 2018-07-08T16:59:19.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2025-08-19T23:47:35.000Z (10 months ago)
- Last Synced: 2025-08-20T01:22:27.515Z (10 months ago)
- Language: Python
- Homepage: https://www.ladybug.tools/dragonfly-uwg/docs/
- Size: 1.91 MB
- Stars: 8
- Watchers: 6
- Forks: 7
- 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/dragonfly-uwg/actions)
[](https://coveralls.io/github/ladybug-tools/dragonfly-uwg)
[](https://www.python.org/downloads/release/python-3100/) (https://www.python.org/downloads/release/python-360/) [](https://www.python.org/downloads/release/python-270/) [](https://github.com/IronLanguages/ironpython2/releases/tag/ipy-2.7.8/)
# dragonfly-uwg
Dragonfly extension for urban heat island modeling.
Dragonfly-uwg uses the [Urban Weather Generator (uwg)](https://github.com/ladybug-tools/uwg)
to morph EPW files to account for the [urban heat island effect](https://en.wikipedia.org/wiki/Urban_heat_island).
## Installation
`pip install -U dragonfly-uwg`
## QuickStart
```console
import dragonfly_uwg
```
## [API Documentation](http://ladybug-tools.github.io/dragonfly-uwg/docs)
## Local Development
1. Clone this repo locally
```console
git clone git@github.com:ladybug-tools/dragonfly-uwg
# or
git clone https://github.com/ladybug-tools/dragonfly-uwg
```
2. Install dependencies:
```
cd dragonfly-uwg
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 ./dragonfly_uwg
sphinx-build -b html ./docs ./docs/_build/docs
```