honeybee-vtk


Namehoneybee-vtk JSON
Version 0.39.1 PyPI version JSON
download
home_pagehttps://github.com/ladybug-tools/honeybee-vtk
SummaryHoneybee extension for translating HBJSON to VTK
upload_time2023-05-31 20:36:08
maintainer
docs_urlNone
authorLadybug Tools
requires_python
licenseAGPL-3.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            # honeybee-vtk
🐝 VTK - Honeybee extension for viewing HBJSON in a web browser.

![HBJSON exported to web](/images/room.gif)

[![Build Status](https://github.com/ladybug-tools/honeybee-vtk/workflows/CI/badge.svg)](https://github.com/ladybug-tools/honeybee-vtk/actions)
[![Coverage Status](https://coveralls.io/repos/github/ladybug-tools/honeybee-vtk/badge.svg?branch=master)](https://coveralls.io/github/ladybug-tools/honeybee-vtk?branch=master)
[![Python 3.7](https://img.shields.io/badge/python-3.7-green.svg)](https://www.python.org/downloads/release/python-370/)

[![GitHub tag (latest by date)](https://img.shields.io/github/v/tag/ladybug-tools/honeybee-vtk)](https://github.com/ladybug-tools/honeybee-vtk/releases)
[![GitHub](https://img.shields.io/github/license/ladybug-tools/honeybee-vtk)](https://github.com/ladybug-tools/honeybee-vtk/blob/master/LICENSE)


[![GitHub last commit](https://img.shields.io/github/last-commit/ladybug-tools/honeybee-vtk)](https://github.com/ladybug-tools/honeybee-vtk/commits/master)
[![GitHub issues](https://img.shields.io/github/issues/ladybug-tools/honeybee-vtk)](https://github.com/ladybug-tools/honeybee-vtk/issues)
[![GitHub closed issues](https://img.shields.io/github/issues-closed-raw/ladybug-tools/honeybee-vtk)](https://github.com/ladybug-tools/honeybee-vtk/issues?q=is%3Aissue+is%3Aclosed)

## Installation

```console
pip install honeybee-vtk
```

## QuickStart

```python
import honeybee_vtk
```
## Translate a HBJSON file to an HTML or vtkjs file
```console
Usage: honeybee-vtk translate [OPTIONS] HBJSON_FILE

  Translate a HBJSON file to an HTML or a vtkjs file.

  Args:
      hbjson-file: Path to an HBJSON file.

Options:
  -n, --name TEXT                 Name of the output file.  [default: model]
  -f, --folder DIRECTORY          Path to target folder.  [default: .]
  -ft, --file-type [html|vtkjs|vtp|vtk]
                                  Switch between html and vtkjs formats
                                  [default: html]

  -mdm, --model-display-mode [shaded|surface|surfacewithedges|wireframe|points]
                                  Set display mode for the model.  [default:
                                  shaded]

  -gdm, --grid-display-mode [shaded|surface|surfacewithedges|wireframe|points]
                                  Set display mode for the grid.  [default:
                                  shaded]

  -go, --grid-options [ignore|points|meshes]
                                  Export sensor grids as either points or
                                  meshes.  [default: ignore]

  -sh, --show-html, --show        Open the generated HTML file in a browser.
                                  [default: False]

  -cf, --config PATH              File Path to the config json file which can
                                  be used to mount simulation data on HBJSON.

  -vd, --validate-data            Validate simulation data before loading on
                                  the model. This is recommended when using
                                  this command locally.  [default: False]

  --help                          Show this message and exit.
```

## Export images from an HBJSON file
```console
Usage: honeybee-vtk export-images [OPTIONS] HBJSON_FILE

  Export images from radiance views in a HBJSON file.

  Args:
      hbjson-file: Path to an HBJSON file.

Options:
  -f, --folder DIRECTORY          Path to target folder.  [default: .]
  -it, --image-type [png|jpg|ps|tiff|bmp|pnm]
                                  choose the type of image file.  [default:
                                  jpg]

  -iw, --image-width INTEGER      Width of images in pixels. If not set,
                                  Radiance default x dimension of view will be
                                  used.  [default: 0]

  -ih, --image-height INTEGER     Height of images in pixels.If not set,
                                  Radiance default y dimension of view will be
                                  used.  [default: 0]

  -bc, --background-color <INTEGER INTEGER INTEGER>...
                                  Set background color for images  [default:
                                  255, 255, 255]

  -mdm, --model-display-mode [shaded|surface|surfacewithedges|wireframe|points]
                                  Set display mode for the model.  [default:
                                  shaded]

  -go, --grid-options [ignore|points|meshes]
                                  Export sensor grids as either points or
                                  meshes.  [default: ignore]

  -gdm, --grid-display-mode [shaded|surface|surfacewithedges|wireframe|points]
                                  Set display mode for the Sensorgrids.
                                  [default: surfacewithedges]

  -vf, --view PATH                File Path to the Radiance view file.
                                  Multiple view files are accepted.

  -cf, --config PATH              File Path to the config json file which can
                                  be used to mount simulation data on HBJSON.

  -vd, --validate-data            Validate simulation data before loading on
                                  the model. This is recommended when using
                                  this command locally.  [default: False]

  --grid / --model                Boolean to decide whether to export the
                                  images of a whole model or only the grids.
                                  Set it to True to export the grids.
                                  [default: False]

  -gf, --grid-filter TEXT         Filter sensor grids by name. Use this option
                                  multiple times to use multiple grid
                                  identifiers as filters.  [default: ]

  --text-content TEXT             Text to be displayed on the image.
  -th, --text-height INTEGER      Set the height of the text in pixels.
                                  [default: 15]

  -tc, --text-color <INTEGER INTEGER INTEGER>...
                                  Set the text color.  [default: 0, 0, 0]
  -tp, --text-position <FLOAT FLOAT>...
                                  Set the text position in the image. The
                                  setting is applied at the lower left point
                                  of the text. (0,0) will give you the lower
                                  left corner of the image. (1,1) will give
                                  you the upper right corner of the image.
                                  [default: 0.5, 0.0]

  -tb, --text-bold                Set the text to be bold.  [default: False]
  --help                          Show this message and exit.
```

## Write a config file to be consumed by the Translate command
```console
Usage: honeybee-vtk config [OPTIONS] INPUT_FILE

  Write a config file to be consumed by honeybee-vtk.

  Args:
      input_file: A path to the input file in json format.
      folder_path: Path to the folder where the config file shall be written.
          Defaults to the current working directory.
      name: A string as the name of the config file. Defaults to 'config'.

Options:
  -fp, --folder-path PATH  Path to the folder where the config file shall be
                           written.  [default: .]

  -n, --name TEXT          Name of the config file.  [default: config]
  --help                   Show this message and exit.
```
## Create arrows and write to a vtp file and open it in a minimalist desktop [viewer](https://kitware.github.io/F3D/)

```python
from ladybug_geometry.geometry3d import Point3D, Vector3D
from honeybee_vtk.to_vtk import create_arrow

points = [Point3D(0, 0, 0), Point3D(1, 1, 0), Point3D(1, 0, 0)]
vectors = [Vector3D(0, 0, 1), Vector3D(1, 1, 1), Vector3D(2, 0, 0)]
arrows = create_arrow(points, vectors)
arrows.to_vtk('.', 'arrows')

```
![arrows](/images/arrows.png)

## Create a group of points and color them based on distance from origin, write them to a vtp file and and open it in a minimalist desktop [viewer](https://kitware.github.io/F3D/)

```python

from ladybug_geometry.geometry3d import Point3D
from honeybee_vtk.to_vtk import convert_points

points = []
for x in range(-50, 50, 5):
    for y in range(-50, 50, 5):
        for z in range(-50, 50, 5):
            points.append(Point3D(x, y, z))

origin = Point3D(0, 0, 0)
distance = [pt.distance_to_point(origin) for pt in points]

# convert points to polydata
pts = convert_points(points)
pts.add_data(distance, name='distance', cell=False)
pts.color_by('distance', cell=False)
pts.to_vtk('.', 'colored_points')

```

![arrows](/images/colored_points.png)


## Draw a sunpath

```python
from ladybug.location import Location
from ladybug.sunpath import Sunpath, Point3D, Vector3D
from honeybee_vtk.to_vtk import convert_polyline, create_polyline
from honeybee_vtk.types import JoinedPolyData
import math

# 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)

radius = 100
origin = Point3D(0, 0, 0)
polylines = sp.hourly_analemma_polyline3d(origin=origin, daytime_only=True, radius=radius)
sp_pls = [convert_polyline(pl) for pl in polylines]

# add a circle
north = origin.move(Vector3D(0, radius, 0))
plot_points = [
    north.rotate_xy(math.radians(angle), origin)
    for angle in range(0, 365, 5)
]

plot = create_polyline(plot_points)

# join polylines into a single polydata
sunpath = JoinedPolyData.from_polydata(sp_pls)
# add plot
sunpath.append(plot)

sunpath.to_vtk('.', 'sunpath')
```

![sunpath](/images/sunpath.png)


## Draw a sunpath with hourly data

```python

from ladybug.epw import EPW
from ladybug.sunpath import Sunpath, Point3D, Vector3D
from honeybee_vtk.to_vtk import convert_points, convert_polyline, create_polyline
from honeybee_vtk.types import JoinedPolyData
import math

# Get location from epw file
epw = EPW('./tests/assets/in.epw')
location = epw.location

# Initiate sunpath
sp = Sunpath.from_location(location)

radius = 100
origin = Point3D(0, 0, 0)
polylines = sp.hourly_analemma_polyline3d(origin=origin, daytime_only=True, radius=radius)
sp_pls = [convert_polyline(pl) for pl in polylines]

# add a circle
north = origin.move(Vector3D(0, radius, 0))
plot_points = [
    north.rotate_xy(math.radians(angle), origin)
    for angle in range(0, 365, 5)
]

plot = create_polyline(plot_points)

# join polylines into a single polydata
sunpath = JoinedPolyData.from_polydata(sp_pls)
# add plot
sunpath.append(plot)
sunpath.to_vtk('.', 'sunpath')

# add sun positions and color them based on radiation
day = sp.hourly_analemma_suns(daytime_only=True)
# calculate sun positions from sun vector
pts = []
hours = []
for suns in day:
    for sun in suns:
        pts.append(origin.move(sun.sun_vector.reverse() * radius))
        hours.append(sun.hoy)

radiation_data = epw.global_horizontal_radiation
filtered_radiation_data = radiation_data.filter_by_hoys(hours)

sun_positions = convert_points(pts)
sun_positions.add_data(
    filtered_radiation_data.values, name='Globale Horizontal Radiation', cell=False
)
sun_positions.color_by('Global Horizontal Radiation', cell=False)
sun_positions.to_vtk('.', 'sun_positions')

```

![sunpath with data](/images/sunpath_with_data.png)


## Load HB model

```python
from honeybee_vtk.model import Model

hbjson = r'./tests/assets/gridbased.hbjson'
model = Model.from_hbjson(hbjson)
model.to_html(folder='.', name='two-rooms', show=True)

```

![HBJSON model](/images/hbjson_model.png)


## Load HB model - change display mode and colors

```python

from honeybee_vtk.model import Model, DisplayMode
from ladybug.color import Color

hbjson = r'./tests/assets/gridbased.hbjson'
model = Model.from_hbjson(hbjson)

# update model visualization to show edges
model.update_display_mode(DisplayMode.SurfaceWithEdges)

# set shades to wireframe mode and change their color to black
model.shades.display_mode = DisplayMode.Wireframe
model.shades.color = Color(0, 0, 0, 255)

# create an HTML file with embedded visualization. You can share this HTML as is
# and it will include all the information.
model.to_html('.', name='two-rooms', show=True)

# alternatively you can write it as a vtkjs file and visualize it in ParaviewGlance
# the `to_html` method calls this method under the hood.
# model.to_vtkjs(folder='.')

```

![Modified HBJSON model](/images/hbjson_model_2.png)


## Load HB Model and daylight factor results

```python

from honeybee_vtk.model import Model, DisplayMode, SensorGridOptions
import pathlib

hbjson = r'./tests/assets/revit_model/model.hbjson'
results_folder = r'./tests/assets/revit_model/df_results'

model = Model.from_hbjson(hbjson, load_grids=SensorGridOptions.Mesh)

# load the results for each grid
# note that we load the results using the order for model to ensure the order will match
daylight_factor = []
for grid in model.sensor_grids.data:
    res_file = pathlib.Path(results_folder, f'{grid.identifier}.res')
    grid_res = [float(v) for v in res_file.read_text().splitlines()]
    daylight_factor.append(grid_res)

# add the results to sensor grids as a new field
# per face is set to True since we loaded grids as a mesh
model.sensor_grids.add_data_fields(daylight_factor, name='Daylight Factor', per_face=True)
model.sensor_grids.color_by = 'Daylight Factor'

# make it pop!
# change display mode for sensor grids to be surface with edges
model.sensor_grids.display_mode = DisplayMode.SurfaceWithEdges
# update model visualization to wireframe
model.update_display_mode(DisplayMode.Wireframe)
# make shades to be shaded with edge
model.shades.display_mode = DisplayMode.SurfaceWithEdges

# export the model to a HTML file with embedded viewer and open the page in a browser
model.to_html('c:/ladybug', name='revit-model', show=True)

# alternatively you can write it as a vtkjs file and visualize it in ParaviewGlance
# the `to_html` method calls this method under the hood.
# model.to_vtkjs(folder='.')

```

![Daylight factor results](/images/revit_model_daylight_factor.png)


## Load HB Model and annual daylight results

```python

from honeybee_vtk.model import Model, DisplayMode, SensorGridOptions
import pathlib

hbjson = r'./tests/assets/gridbased.hbjson'
results_folder = r'./tests/assets/annual_metrics'

model = Model.from_hbjson(hbjson, load_grids=SensorGridOptions.Mesh)

# load the results for each grid
# note that we load the results using the order for model to ensure the order will match
annual_metrics = [
    {'folder': 'da', 'extension': 'da', 'name': 'Daylight Autonomy'},
    {'folder': 'cda', 'extension': 'cda', 'name': 'Continuous Daylight Autonomy'},
    {'folder': 'udi', 'extension': 'udi', 'name': 'Useful Daylight Illuminance'},
    {'folder': 'udi_lower', 'extension': 'udi', 'name': 'Lower Daylight Illuminance'},
    {'folder': 'udi_upper', 'extension': 'udi', 'name': 'Excessive Daylight Illuminance'}
]
for metric in annual_metrics:
    results = []
    for grid in model.sensor_grids.data:
        res_file = pathlib.Path(
            results_folder, metric['folder'], f'{grid.identifier}.{metric["extension"]}'
        )
        grid_res = [float(v) for v in res_file.read_text().splitlines()]
        results.append(grid_res)

    # add the results to sensor grids as a new field
    # per face is set to True since we loaded grids as a mesh
    model.sensor_grids.add_data_fields(results, name=metric['name'], per_face=True)

# Set color by to Useful Daylight Illuminance
model.sensor_grids.color_by = 'Useful Daylight Illuminance'

# make it pop!
# change display mode for sensor grids to be surface with edges
model.sensor_grids.display_mode = DisplayMode.SurfaceWithEdges
# update model visualization to wireframe
model.update_display_mode(DisplayMode.Wireframe)

# export the model to a HTML file with embedded viewer and open the page in a browser
model.to_html('.', name='two-rooms', show=True)

# alternatively you can write it as a vtkjs file and visualize it in ParaviewGlance
# the `to_html` method calls this method under the hood.
# model.to_vtkjs(folder='.')

```

![Annual daylight results](/images/annual_daylight_metrics.png)


## Save model with results as an image



```python
from honeybee_vtk.model import Model, DisplayMode, SensorGridOptions
from honeybee_vtk.scene import Scene

import pathlib

hbjson = r'./tests/assets/gridbased.hbjson'
results_folder = r'./tests/assets/df_results'

model = Model.from_hbjson(hbjson, load_grids=SensorGridOptions.Mesh)

# load the results for each grid
# note that we load the results using the order for model to ensure the order will match
daylight_factor = []
for grid in model.sensor_grids.data:
    res_file = pathlib.Path(results_folder, f'{grid.identifier}.res')
    grid_res = [float(v) for v in res_file.read_text().splitlines()]
    daylight_factor.append(grid_res)

# add the results to sensor grids as a new field
# per face is set to True since we loaded grids as a mesh
model.sensor_grids.add_data_fields(
    daylight_factor, name='Daylight Factor', per_face=True, data_range=(0, 20)
)
model.sensor_grids.color_by = 'Daylight Factor'

# make it pop!
# change display mode for sensor grids to be surface with edges
model.sensor_grids.display_mode = DisplayMode.SurfaceWithEdges
# update model visualization to wireframe
model.update_display_mode(DisplayMode.Wireframe)
# make shades to be shaded with edge
model.shades.display_mode = DisplayMode.SurfaceWithEdges

# create a scene to render the model
scene = Scene()
scene.add_model(model)
# set a scale bar based on daylight factor values
color_range = model.sensor_grids.active_field_info.color_range()

# you can also save the scene as an image.
# right now you can't control the camera but camera control can be implemented.
scene.to_image('.', name='daylight_factor', image_scale=2, color_range=color_range)

# alternatively you can start an interactive window
# scene.show(color_range)

```

![Captured image](/images/captured_daylight_factor.png)

![Interactive renderer](/images/interactive_scene.png)



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/ladybug-tools/honeybee-vtk",
    "name": "honeybee-vtk",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Ladybug Tools",
    "author_email": "info@ladybug.tools",
    "download_url": "https://files.pythonhosted.org/packages/ec/45/da7ba2574cb5894300728437b15b47c81494d71958fb84a8bde49f258182/honeybee-vtk-0.39.1.tar.gz",
    "platform": null,
    "description": "# honeybee-vtk\n\ud83d\udc1d VTK - Honeybee extension for viewing HBJSON in a web browser.\n\n![HBJSON exported to web](/images/room.gif)\n\n[![Build Status](https://github.com/ladybug-tools/honeybee-vtk/workflows/CI/badge.svg)](https://github.com/ladybug-tools/honeybee-vtk/actions)\n[![Coverage Status](https://coveralls.io/repos/github/ladybug-tools/honeybee-vtk/badge.svg?branch=master)](https://coveralls.io/github/ladybug-tools/honeybee-vtk?branch=master)\n[![Python 3.7](https://img.shields.io/badge/python-3.7-green.svg)](https://www.python.org/downloads/release/python-370/)\n\n[![GitHub tag (latest by date)](https://img.shields.io/github/v/tag/ladybug-tools/honeybee-vtk)](https://github.com/ladybug-tools/honeybee-vtk/releases)\n[![GitHub](https://img.shields.io/github/license/ladybug-tools/honeybee-vtk)](https://github.com/ladybug-tools/honeybee-vtk/blob/master/LICENSE)\n\n\n[![GitHub last commit](https://img.shields.io/github/last-commit/ladybug-tools/honeybee-vtk)](https://github.com/ladybug-tools/honeybee-vtk/commits/master)\n[![GitHub issues](https://img.shields.io/github/issues/ladybug-tools/honeybee-vtk)](https://github.com/ladybug-tools/honeybee-vtk/issues)\n[![GitHub closed issues](https://img.shields.io/github/issues-closed-raw/ladybug-tools/honeybee-vtk)](https://github.com/ladybug-tools/honeybee-vtk/issues?q=is%3Aissue+is%3Aclosed)\n\n## Installation\n\n```console\npip install honeybee-vtk\n```\n\n## QuickStart\n\n```python\nimport honeybee_vtk\n```\n## Translate a HBJSON file to an HTML or vtkjs file\n```console\nUsage: honeybee-vtk translate [OPTIONS] HBJSON_FILE\n\n  Translate a HBJSON file to an HTML or a vtkjs file.\n\n  Args:\n      hbjson-file: Path to an HBJSON file.\n\nOptions:\n  -n, --name TEXT                 Name of the output file.  [default: model]\n  -f, --folder DIRECTORY          Path to target folder.  [default: .]\n  -ft, --file-type [html|vtkjs|vtp|vtk]\n                                  Switch between html and vtkjs formats\n                                  [default: html]\n\n  -mdm, --model-display-mode [shaded|surface|surfacewithedges|wireframe|points]\n                                  Set display mode for the model.  [default:\n                                  shaded]\n\n  -gdm, --grid-display-mode [shaded|surface|surfacewithedges|wireframe|points]\n                                  Set display mode for the grid.  [default:\n                                  shaded]\n\n  -go, --grid-options [ignore|points|meshes]\n                                  Export sensor grids as either points or\n                                  meshes.  [default: ignore]\n\n  -sh, --show-html, --show        Open the generated HTML file in a browser.\n                                  [default: False]\n\n  -cf, --config PATH              File Path to the config json file which can\n                                  be used to mount simulation data on HBJSON.\n\n  -vd, --validate-data            Validate simulation data before loading on\n                                  the model. This is recommended when using\n                                  this command locally.  [default: False]\n\n  --help                          Show this message and exit.\n```\n\n## Export images from an HBJSON file\n```console\nUsage: honeybee-vtk export-images [OPTIONS] HBJSON_FILE\n\n  Export images from radiance views in a HBJSON file.\n\n  Args:\n      hbjson-file: Path to an HBJSON file.\n\nOptions:\n  -f, --folder DIRECTORY          Path to target folder.  [default: .]\n  -it, --image-type [png|jpg|ps|tiff|bmp|pnm]\n                                  choose the type of image file.  [default:\n                                  jpg]\n\n  -iw, --image-width INTEGER      Width of images in pixels. If not set,\n                                  Radiance default x dimension of view will be\n                                  used.  [default: 0]\n\n  -ih, --image-height INTEGER     Height of images in pixels.If not set,\n                                  Radiance default y dimension of view will be\n                                  used.  [default: 0]\n\n  -bc, --background-color <INTEGER INTEGER INTEGER>...\n                                  Set background color for images  [default:\n                                  255, 255, 255]\n\n  -mdm, --model-display-mode [shaded|surface|surfacewithedges|wireframe|points]\n                                  Set display mode for the model.  [default:\n                                  shaded]\n\n  -go, --grid-options [ignore|points|meshes]\n                                  Export sensor grids as either points or\n                                  meshes.  [default: ignore]\n\n  -gdm, --grid-display-mode [shaded|surface|surfacewithedges|wireframe|points]\n                                  Set display mode for the Sensorgrids.\n                                  [default: surfacewithedges]\n\n  -vf, --view PATH                File Path to the Radiance view file.\n                                  Multiple view files are accepted.\n\n  -cf, --config PATH              File Path to the config json file which can\n                                  be used to mount simulation data on HBJSON.\n\n  -vd, --validate-data            Validate simulation data before loading on\n                                  the model. This is recommended when using\n                                  this command locally.  [default: False]\n\n  --grid / --model                Boolean to decide whether to export the\n                                  images of a whole model or only the grids.\n                                  Set it to True to export the grids.\n                                  [default: False]\n\n  -gf, --grid-filter TEXT         Filter sensor grids by name. Use this option\n                                  multiple times to use multiple grid\n                                  identifiers as filters.  [default: ]\n\n  --text-content TEXT             Text to be displayed on the image.\n  -th, --text-height INTEGER      Set the height of the text in pixels.\n                                  [default: 15]\n\n  -tc, --text-color <INTEGER INTEGER INTEGER>...\n                                  Set the text color.  [default: 0, 0, 0]\n  -tp, --text-position <FLOAT FLOAT>...\n                                  Set the text position in the image. The\n                                  setting is applied at the lower left point\n                                  of the text. (0,0) will give you the lower\n                                  left corner of the image. (1,1) will give\n                                  you the upper right corner of the image.\n                                  [default: 0.5, 0.0]\n\n  -tb, --text-bold                Set the text to be bold.  [default: False]\n  --help                          Show this message and exit.\n```\n\n## Write a config file to be consumed by the Translate command\n```console\nUsage: honeybee-vtk config [OPTIONS] INPUT_FILE\n\n  Write a config file to be consumed by honeybee-vtk.\n\n  Args:\n      input_file: A path to the input file in json format.\n      folder_path: Path to the folder where the config file shall be written.\n          Defaults to the current working directory.\n      name: A string as the name of the config file. Defaults to 'config'.\n\nOptions:\n  -fp, --folder-path PATH  Path to the folder where the config file shall be\n                           written.  [default: .]\n\n  -n, --name TEXT          Name of the config file.  [default: config]\n  --help                   Show this message and exit.\n```\n## Create arrows and write to a vtp file and open it in a minimalist desktop [viewer](https://kitware.github.io/F3D/)\n\n```python\nfrom ladybug_geometry.geometry3d import Point3D, Vector3D\nfrom honeybee_vtk.to_vtk import create_arrow\n\npoints = [Point3D(0, 0, 0), Point3D(1, 1, 0), Point3D(1, 0, 0)]\nvectors = [Vector3D(0, 0, 1), Vector3D(1, 1, 1), Vector3D(2, 0, 0)]\narrows = create_arrow(points, vectors)\narrows.to_vtk('.', 'arrows')\n\n```\n![arrows](/images/arrows.png)\n\n## Create a group of points and color them based on distance from origin, write them to a vtp file and and open it in a minimalist desktop [viewer](https://kitware.github.io/F3D/)\n\n```python\n\nfrom ladybug_geometry.geometry3d import Point3D\nfrom honeybee_vtk.to_vtk import convert_points\n\npoints = []\nfor x in range(-50, 50, 5):\n    for y in range(-50, 50, 5):\n        for z in range(-50, 50, 5):\n            points.append(Point3D(x, y, z))\n\norigin = Point3D(0, 0, 0)\ndistance = [pt.distance_to_point(origin) for pt in points]\n\n# convert points to polydata\npts = convert_points(points)\npts.add_data(distance, name='distance', cell=False)\npts.color_by('distance', cell=False)\npts.to_vtk('.', 'colored_points')\n\n```\n\n![arrows](/images/colored_points.png)\n\n\n## Draw a sunpath\n\n```python\nfrom ladybug.location import Location\nfrom ladybug.sunpath import Sunpath, Point3D, Vector3D\nfrom honeybee_vtk.to_vtk import convert_polyline, create_polyline\nfrom honeybee_vtk.types import JoinedPolyData\nimport math\n\n# Create location. You can also extract location data from an epw file.\nsydney = Location('Sydney', 'AUS', latitude=-33.87, longitude=151.22, time_zone=10)\n\n# Initiate sunpath\nsp = Sunpath.from_location(sydney)\n\nradius = 100\norigin = Point3D(0, 0, 0)\npolylines = sp.hourly_analemma_polyline3d(origin=origin, daytime_only=True, radius=radius)\nsp_pls = [convert_polyline(pl) for pl in polylines]\n\n# add a circle\nnorth = origin.move(Vector3D(0, radius, 0))\nplot_points = [\n    north.rotate_xy(math.radians(angle), origin)\n    for angle in range(0, 365, 5)\n]\n\nplot = create_polyline(plot_points)\n\n# join polylines into a single polydata\nsunpath = JoinedPolyData.from_polydata(sp_pls)\n# add plot\nsunpath.append(plot)\n\nsunpath.to_vtk('.', 'sunpath')\n```\n\n![sunpath](/images/sunpath.png)\n\n\n## Draw a sunpath with hourly data\n\n```python\n\nfrom ladybug.epw import EPW\nfrom ladybug.sunpath import Sunpath, Point3D, Vector3D\nfrom honeybee_vtk.to_vtk import convert_points, convert_polyline, create_polyline\nfrom honeybee_vtk.types import JoinedPolyData\nimport math\n\n# Get location from epw file\nepw = EPW('./tests/assets/in.epw')\nlocation = epw.location\n\n# Initiate sunpath\nsp = Sunpath.from_location(location)\n\nradius = 100\norigin = Point3D(0, 0, 0)\npolylines = sp.hourly_analemma_polyline3d(origin=origin, daytime_only=True, radius=radius)\nsp_pls = [convert_polyline(pl) for pl in polylines]\n\n# add a circle\nnorth = origin.move(Vector3D(0, radius, 0))\nplot_points = [\n    north.rotate_xy(math.radians(angle), origin)\n    for angle in range(0, 365, 5)\n]\n\nplot = create_polyline(plot_points)\n\n# join polylines into a single polydata\nsunpath = JoinedPolyData.from_polydata(sp_pls)\n# add plot\nsunpath.append(plot)\nsunpath.to_vtk('.', 'sunpath')\n\n# add sun positions and color them based on radiation\nday = sp.hourly_analemma_suns(daytime_only=True)\n# calculate sun positions from sun vector\npts = []\nhours = []\nfor suns in day:\n    for sun in suns:\n        pts.append(origin.move(sun.sun_vector.reverse() * radius))\n        hours.append(sun.hoy)\n\nradiation_data = epw.global_horizontal_radiation\nfiltered_radiation_data = radiation_data.filter_by_hoys(hours)\n\nsun_positions = convert_points(pts)\nsun_positions.add_data(\n    filtered_radiation_data.values, name='Globale Horizontal Radiation', cell=False\n)\nsun_positions.color_by('Global Horizontal Radiation', cell=False)\nsun_positions.to_vtk('.', 'sun_positions')\n\n```\n\n![sunpath with data](/images/sunpath_with_data.png)\n\n\n## Load HB model\n\n```python\nfrom honeybee_vtk.model import Model\n\nhbjson = r'./tests/assets/gridbased.hbjson'\nmodel = Model.from_hbjson(hbjson)\nmodel.to_html(folder='.', name='two-rooms', show=True)\n\n```\n\n![HBJSON model](/images/hbjson_model.png)\n\n\n## Load HB model - change display mode and colors\n\n```python\n\nfrom honeybee_vtk.model import Model, DisplayMode\nfrom ladybug.color import Color\n\nhbjson = r'./tests/assets/gridbased.hbjson'\nmodel = Model.from_hbjson(hbjson)\n\n# update model visualization to show edges\nmodel.update_display_mode(DisplayMode.SurfaceWithEdges)\n\n# set shades to wireframe mode and change their color to black\nmodel.shades.display_mode = DisplayMode.Wireframe\nmodel.shades.color = Color(0, 0, 0, 255)\n\n# create an HTML file with embedded visualization. You can share this HTML as is\n# and it will include all the information.\nmodel.to_html('.', name='two-rooms', show=True)\n\n# alternatively you can write it as a vtkjs file and visualize it in ParaviewGlance\n# the `to_html` method calls this method under the hood.\n# model.to_vtkjs(folder='.')\n\n```\n\n![Modified HBJSON model](/images/hbjson_model_2.png)\n\n\n## Load HB Model and daylight factor results\n\n```python\n\nfrom honeybee_vtk.model import Model, DisplayMode, SensorGridOptions\nimport pathlib\n\nhbjson = r'./tests/assets/revit_model/model.hbjson'\nresults_folder = r'./tests/assets/revit_model/df_results'\n\nmodel = Model.from_hbjson(hbjson, load_grids=SensorGridOptions.Mesh)\n\n# load the results for each grid\n# note that we load the results using the order for model to ensure the order will match\ndaylight_factor = []\nfor grid in model.sensor_grids.data:\n    res_file = pathlib.Path(results_folder, f'{grid.identifier}.res')\n    grid_res = [float(v) for v in res_file.read_text().splitlines()]\n    daylight_factor.append(grid_res)\n\n# add the results to sensor grids as a new field\n# per face is set to True since we loaded grids as a mesh\nmodel.sensor_grids.add_data_fields(daylight_factor, name='Daylight Factor', per_face=True)\nmodel.sensor_grids.color_by = 'Daylight Factor'\n\n# make it pop!\n# change display mode for sensor grids to be surface with edges\nmodel.sensor_grids.display_mode = DisplayMode.SurfaceWithEdges\n# update model visualization to wireframe\nmodel.update_display_mode(DisplayMode.Wireframe)\n# make shades to be shaded with edge\nmodel.shades.display_mode = DisplayMode.SurfaceWithEdges\n\n# export the model to a HTML file with embedded viewer and open the page in a browser\nmodel.to_html('c:/ladybug', name='revit-model', show=True)\n\n# alternatively you can write it as a vtkjs file and visualize it in ParaviewGlance\n# the `to_html` method calls this method under the hood.\n# model.to_vtkjs(folder='.')\n\n```\n\n![Daylight factor results](/images/revit_model_daylight_factor.png)\n\n\n## Load HB Model and annual daylight results\n\n```python\n\nfrom honeybee_vtk.model import Model, DisplayMode, SensorGridOptions\nimport pathlib\n\nhbjson = r'./tests/assets/gridbased.hbjson'\nresults_folder = r'./tests/assets/annual_metrics'\n\nmodel = Model.from_hbjson(hbjson, load_grids=SensorGridOptions.Mesh)\n\n# load the results for each grid\n# note that we load the results using the order for model to ensure the order will match\nannual_metrics = [\n    {'folder': 'da', 'extension': 'da', 'name': 'Daylight Autonomy'},\n    {'folder': 'cda', 'extension': 'cda', 'name': 'Continuous Daylight Autonomy'},\n    {'folder': 'udi', 'extension': 'udi', 'name': 'Useful Daylight Illuminance'},\n    {'folder': 'udi_lower', 'extension': 'udi', 'name': 'Lower Daylight Illuminance'},\n    {'folder': 'udi_upper', 'extension': 'udi', 'name': 'Excessive Daylight Illuminance'}\n]\nfor metric in annual_metrics:\n    results = []\n    for grid in model.sensor_grids.data:\n        res_file = pathlib.Path(\n            results_folder, metric['folder'], f'{grid.identifier}.{metric[\"extension\"]}'\n        )\n        grid_res = [float(v) for v in res_file.read_text().splitlines()]\n        results.append(grid_res)\n\n    # add the results to sensor grids as a new field\n    # per face is set to True since we loaded grids as a mesh\n    model.sensor_grids.add_data_fields(results, name=metric['name'], per_face=True)\n\n# Set color by to Useful Daylight Illuminance\nmodel.sensor_grids.color_by = 'Useful Daylight Illuminance'\n\n# make it pop!\n# change display mode for sensor grids to be surface with edges\nmodel.sensor_grids.display_mode = DisplayMode.SurfaceWithEdges\n# update model visualization to wireframe\nmodel.update_display_mode(DisplayMode.Wireframe)\n\n# export the model to a HTML file with embedded viewer and open the page in a browser\nmodel.to_html('.', name='two-rooms', show=True)\n\n# alternatively you can write it as a vtkjs file and visualize it in ParaviewGlance\n# the `to_html` method calls this method under the hood.\n# model.to_vtkjs(folder='.')\n\n```\n\n![Annual daylight results](/images/annual_daylight_metrics.png)\n\n\n## Save model with results as an image\n\n\n\n```python\nfrom honeybee_vtk.model import Model, DisplayMode, SensorGridOptions\nfrom honeybee_vtk.scene import Scene\n\nimport pathlib\n\nhbjson = r'./tests/assets/gridbased.hbjson'\nresults_folder = r'./tests/assets/df_results'\n\nmodel = Model.from_hbjson(hbjson, load_grids=SensorGridOptions.Mesh)\n\n# load the results for each grid\n# note that we load the results using the order for model to ensure the order will match\ndaylight_factor = []\nfor grid in model.sensor_grids.data:\n    res_file = pathlib.Path(results_folder, f'{grid.identifier}.res')\n    grid_res = [float(v) for v in res_file.read_text().splitlines()]\n    daylight_factor.append(grid_res)\n\n# add the results to sensor grids as a new field\n# per face is set to True since we loaded grids as a mesh\nmodel.sensor_grids.add_data_fields(\n    daylight_factor, name='Daylight Factor', per_face=True, data_range=(0, 20)\n)\nmodel.sensor_grids.color_by = 'Daylight Factor'\n\n# make it pop!\n# change display mode for sensor grids to be surface with edges\nmodel.sensor_grids.display_mode = DisplayMode.SurfaceWithEdges\n# update model visualization to wireframe\nmodel.update_display_mode(DisplayMode.Wireframe)\n# make shades to be shaded with edge\nmodel.shades.display_mode = DisplayMode.SurfaceWithEdges\n\n# create a scene to render the model\nscene = Scene()\nscene.add_model(model)\n# set a scale bar based on daylight factor values\ncolor_range = model.sensor_grids.active_field_info.color_range()\n\n# you can also save the scene as an image.\n# right now you can't control the camera but camera control can be implemented.\nscene.to_image('.', name='daylight_factor', image_scale=2, color_range=color_range)\n\n# alternatively you can start an interactive window\n# scene.show(color_range)\n\n```\n\n![Captured image](/images/captured_daylight_factor.png)\n\n![Interactive renderer](/images/interactive_scene.png)\n\n\n",
    "bugtrack_url": null,
    "license": "AGPL-3.0",
    "summary": "Honeybee extension for translating HBJSON to VTK",
    "version": "0.39.1",
    "project_urls": {
        "Homepage": "https://github.com/ladybug-tools/honeybee-vtk"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ad71f5179e9aca409fc7fc5c3c6064a953ac9f0e075fcbad0b631506622e4d4b",
                "md5": "bc9054f9fb48627822d2fbd1fce89780",
                "sha256": "7828351eaaaeeabdc5a142e16d68a9fb5c37cca48b1157191b57a63fd55062a4"
            },
            "downloads": -1,
            "filename": "honeybee_vtk-0.39.1-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "bc9054f9fb48627822d2fbd1fce89780",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 867601,
            "upload_time": "2023-05-31T20:36:05",
            "upload_time_iso_8601": "2023-05-31T20:36:05.201841Z",
            "url": "https://files.pythonhosted.org/packages/ad/71/f5179e9aca409fc7fc5c3c6064a953ac9f0e075fcbad0b631506622e4d4b/honeybee_vtk-0.39.1-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ec45da7ba2574cb5894300728437b15b47c81494d71958fb84a8bde49f258182",
                "md5": "694d1de405d31ee24b96d28c1e03fdee",
                "sha256": "8ef0acbf0e031f6d06872994efb7d6b016665473c1e520c2c7bc841f14de499c"
            },
            "downloads": -1,
            "filename": "honeybee-vtk-0.39.1.tar.gz",
            "has_sig": false,
            "md5_digest": "694d1de405d31ee24b96d28c1e03fdee",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 35765007,
            "upload_time": "2023-05-31T20:36:08",
            "upload_time_iso_8601": "2023-05-31T20:36:08.987004Z",
            "url": "https://files.pythonhosted.org/packages/ec/45/da7ba2574cb5894300728437b15b47c81494d71958fb84a8bde49f258182/honeybee-vtk-0.39.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-05-31 20:36:08",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ladybug-tools",
    "github_project": "honeybee-vtk",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "requirements": [],
    "lcname": "honeybee-vtk"
}
        
Elapsed time: 0.08803s