ladybug
Ladybug is a Python library to analyze, modify, and visualize EnergyPlus Weather files (epw). You can download epw files from EPWMap.
This repository is the core library that is the base for the Ladybug Grasshopper Plugin. For plugin-specific questions and comments refer to ladybug-grasshopper.
Note
For the Legacy Ladybug Grasshopper Plugin see this repository.
API Documentation
Installation
To install the library use:
pip install ladybug-core
To check if Honeybee command line interface is installed correctly use ladybug viz and you
should get a viiiiiiiiiiiiizzzzzzzzz! back in response!
Usage
# load epw weather data
from ladybug.epw import EPW
epw_data = EPW('path_to_epw_file')
dry_bulb_temp = epw_data.dry_bulb_temperature
# Get altitude and longitude
from ladybug.location import Location
from ladybug.sunpath import Sunpath
# Create location. You can also extract location data from an epw file.
sydney = Location('Sydney', 'AUS', latitude=-33.87, longitude=151.22, time_zone=10)
# Initiate sunpath
sp = Sunpath.from_location(sydney)
sun = sp.calculate_sun(month=11, day=15, hour=11.0)
print('altitude: {}, azimuth: {}'.format(sun.altitude, sun.azimuth))
>>> altitude: 72.26, azimuth: 32.37
Local Development
- Clone this repo locally
git clone git@github.com:ladybug-tools/ladybug.git
# or
git clone https://github.com/ladybug-tools/ladybug.git
- Install dependencies:
cd ladybug
pip install -r dev-requirements.txt
pip install -r requirements.txt
- Run Tests:
python -m pytest ./tests
- Generate Documentation:
sphinx-apidoc -f -e -d 4 -o ./docs ./ladybug
sphinx-build -b html ./docs ./docs/_build/docs
Derivative Work
Ladybug is a derivative work of the following software projects:
- PVLib-python for solar irradiance calculations. Available under BSD 3-clause.
- PsychroLib for psychrometric calculations. Available under MIT License.
Applicable copyright notices for these works can be found within the relevant .py files.
Release files for ladybug-core 0.44.61
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| ladybug_core-0.44.61.tar.gz | 246.5 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| ladybug_core-0.44.61-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 521.6 kB
Release files / ladybug_core-0.44.61.tar.gz
| Download URL | ladybug_core-0.44.61.tar.gz |
|---|---|
| Size | 246.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
9204a4862b59b3b3ed5a58a03bdfaa67224bea13d0c9cede583904fafdfd7ee4
|
|
BLAKE2b-256 checksum How to use checksums |
0a0e903c601c460f2846cc0b91ae5ad6daf2dc353c448d39ee647139a2e56373
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.14
|
Release files / ladybug_core-0.44.61-py3-none-any.whl
| Download URL | ladybug_core-0.44.61-py3-none-any.whl |
|---|---|
| Size | 275.2 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
08becf7e6698184d19b7ce7e932c536eadd4edf6c976bf04ed4a2cc301822b39
|
|
BLAKE2b-256 checksum How to use checksums |
cb708c4adef3d7b4ac8f31f6a3edb95bcfee4b2655716f3afc2901b562bd539e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.14
|