honeybee-grasshopper-radiance 1.34.4__py2.py3-none-any.whl → 1.34.6__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- honeybee_grasshopper_radiance/src/HB Get Grids and Views.py +18 -1
- honeybee_grasshopper_radiance/src/HB Radial Grid from Rooms.py +60 -19
- honeybee_grasshopper_radiance/src/HB Sensor Grid from Rooms.py +36 -10
- honeybee_grasshopper_radiance/user_objects/HB Get Grids and Views.ghuser and b/honeybee_grasshopper_radiance/user_objects/HB Get Grids → Views.ghuser +0 -0
- honeybee_grasshopper_radiance/user_objects/HB Radial Grid from Rooms.ghuser +0 -0
- honeybee_grasshopper_radiance/user_objects/HB Sensor Grid from Rooms.ghuser +0 -0
- {honeybee_grasshopper_radiance-1.34.4.dist-info → honeybee_grasshopper_radiance-1.34.6.dist-info}/METADATA +1 -1
- {honeybee_grasshopper_radiance-1.34.4.dist-info → honeybee_grasshopper_radiance-1.34.6.dist-info}/RECORD +11 -11
- {honeybee_grasshopper_radiance-1.34.4.dist-info → honeybee_grasshopper_radiance-1.34.6.dist-info}/LICENSE +0 -0
- {honeybee_grasshopper_radiance-1.34.4.dist-info → honeybee_grasshopper_radiance-1.34.6.dist-info}/WHEEL +0 -0
- {honeybee_grasshopper_radiance-1.34.4.dist-info → honeybee_grasshopper_radiance-1.34.6.dist-info}/top_level.txt +0 -0
|
@@ -14,6 +14,14 @@ in the Rhino scene.
|
|
|
14
14
|
|
|
15
15
|
Args:
|
|
16
16
|
_model: A Honeybee Model for which grids and views will be output.
|
|
17
|
+
view_filter_: Text for a view identifer or a pattern to filter the views of the
|
|
18
|
+
model that are output. For instance, `first_floor_*` will simulate
|
|
19
|
+
only the views that have an identifier that starts with `first_floor_`.
|
|
20
|
+
By default, all views in the model will be output.
|
|
21
|
+
grid_filter_: Text for a grid identifer or a pattern to filter the sensor grids of
|
|
22
|
+
the model that are output. For instance, first_floor_* will simulate
|
|
23
|
+
only the sensor grids that have an identifier that starts with
|
|
24
|
+
first_floor_. By default, all grids in the model will be output.
|
|
17
25
|
|
|
18
26
|
Returns:
|
|
19
27
|
views: A list of Honeybee-Radiance Views that are assigned to the
|
|
@@ -27,7 +35,7 @@ in the Rhino scene.
|
|
|
27
35
|
|
|
28
36
|
ghenv.Component.Name = 'HB Get Grids and Views'
|
|
29
37
|
ghenv.Component.NickName = 'GetGridsViews'
|
|
30
|
-
ghenv.Component.Message = '1.8.
|
|
38
|
+
ghenv.Component.Message = '1.8.1'
|
|
31
39
|
ghenv.Component.Category = 'HB-Radiance'
|
|
32
40
|
ghenv.Component.SubCategory = '0 :: Basic Properties'
|
|
33
41
|
ghenv.Component.AdditionalHelpFromDocStrings = '5'
|
|
@@ -42,6 +50,11 @@ try: # import core honeybee dependencies
|
|
|
42
50
|
except ImportError as e:
|
|
43
51
|
raise ImportError('\nFailed to import honeybee:\n\t{}'.format(e))
|
|
44
52
|
|
|
53
|
+
try: # import honeybee_radiance dependencies
|
|
54
|
+
from honeybee_radiance.writer import _filter_by_pattern
|
|
55
|
+
except ImportError as e:
|
|
56
|
+
raise ImportError('\nFailed to import honeybee_radiance:\n\t{}'.format(e))
|
|
57
|
+
|
|
45
58
|
try: # import ladybug_rhino dependencies
|
|
46
59
|
from ladybug_rhino.fromgeometry import from_point3d, from_mesh3d
|
|
47
60
|
from ladybug_rhino.grasshopper import all_required_inputs, list_to_data_tree
|
|
@@ -54,7 +67,11 @@ if all_required_inputs(ghenv.Component):
|
|
|
54
67
|
'Expected Honeybee Model. Got {}.'.format(type(_model))
|
|
55
68
|
# get the honeybee-radiance objects
|
|
56
69
|
views = _model.properties.radiance.views
|
|
70
|
+
if view_filter_ is not None:
|
|
71
|
+
views = _filter_by_pattern(views, view_filter_)
|
|
57
72
|
grids = _model.properties.radiance.sensor_grids
|
|
73
|
+
if grid_filter_ is not None:
|
|
74
|
+
grids = _filter_by_pattern(grids, grid_filter_)
|
|
58
75
|
|
|
59
76
|
# get the visualizable attributes
|
|
60
77
|
points = [[from_point3d(Point3D.from_array(s.pos)) for s in sg] for sg in grids]
|
|
@@ -32,6 +32,10 @@ The names of the grids will be the same as the rooms that they came from.
|
|
|
32
32
|
XY plane to generate the resulting directions. (Default: (0, -1, 0)).
|
|
33
33
|
wall_offset_: A number for the distance at which sensors close to walls
|
|
34
34
|
should be removed.
|
|
35
|
+
by_zone_: Set to "True" to have the component generate one sensor grid per zone
|
|
36
|
+
across the input rooms rather than one sensor grid per room. This
|
|
37
|
+
option is useful for getting a more consolidated set of Radiance
|
|
38
|
+
results by zone. (Default: False).
|
|
35
39
|
|
|
36
40
|
Returns:
|
|
37
41
|
grid: A SensorGrid object that can be used in a grid-based recipe.
|
|
@@ -46,22 +50,28 @@ The names of the grids will be the same as the rooms that they came from.
|
|
|
46
50
|
|
|
47
51
|
ghenv.Component.Name = 'HB Radial Grid from Rooms'
|
|
48
52
|
ghenv.Component.NickName = 'RadialGridRooms'
|
|
49
|
-
ghenv.Component.Message = '1.8.
|
|
53
|
+
ghenv.Component.Message = '1.8.1'
|
|
50
54
|
ghenv.Component.Category = 'HB-Radiance'
|
|
51
55
|
ghenv.Component.SubCategory = '0 :: Basic Properties'
|
|
52
56
|
ghenv.Component.AdditionalHelpFromDocStrings = '4'
|
|
53
57
|
|
|
54
58
|
try: # import the ladybug_geometry dependencies
|
|
55
|
-
from ladybug_geometry.geometry3d
|
|
59
|
+
from ladybug_geometry.geometry3d import Vector3D, Point3D, Mesh3D
|
|
56
60
|
except ImportError as e:
|
|
57
61
|
raise ImportError('\nFailed to import ladybug_geometry:\n\t{}'.format(e))
|
|
58
62
|
|
|
59
63
|
try: # import the core honeybee dependencies
|
|
60
64
|
from honeybee.model import Model
|
|
61
65
|
from honeybee.room import Room
|
|
66
|
+
from honeybee.typing import clean_rad_string
|
|
62
67
|
except ImportError as e:
|
|
63
68
|
raise ImportError('\nFailed to import honeybee:\n\t{}'.format(e))
|
|
64
69
|
|
|
70
|
+
try:
|
|
71
|
+
from honeybee_radiance.sensorgrid import SensorGrid
|
|
72
|
+
except ImportError as e:
|
|
73
|
+
raise ImportError('\nFailed to import honeybee_radiance:\n\t{}'.format(e))
|
|
74
|
+
|
|
65
75
|
try: # import ladybug_rhino dependencies
|
|
66
76
|
from ladybug_rhino.config import conversion_to_meters
|
|
67
77
|
from ladybug_rhino.togeometry import to_vector3d
|
|
@@ -91,26 +101,57 @@ if all_required_inputs(ghenv.Component):
|
|
|
91
101
|
else:
|
|
92
102
|
raise TypeError('Expected Honeybee Room or Model. Got {}.'.format(type(obj)))
|
|
93
103
|
|
|
104
|
+
# group the rooms by zone if requested
|
|
105
|
+
if by_zone_:
|
|
106
|
+
room_groups = {}
|
|
107
|
+
for room in rooms:
|
|
108
|
+
try:
|
|
109
|
+
room_groups[room.zone].append(room)
|
|
110
|
+
except KeyError: # first room to be found in the zone
|
|
111
|
+
room_groups[room.zone] = [room]
|
|
112
|
+
else:
|
|
113
|
+
room_groups = {room.identifier: [room] for room in rooms}
|
|
114
|
+
|
|
94
115
|
# create lists to be filled with content
|
|
95
116
|
grid, points, vecs, mesh = [], [], [], []
|
|
117
|
+
|
|
96
118
|
# loop through the rooms and create the grids
|
|
97
|
-
for
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
119
|
+
for zone_id, room_group in room_groups.items():
|
|
120
|
+
# get the base meshs
|
|
121
|
+
floor_meshes = []
|
|
122
|
+
for room in room_group:
|
|
123
|
+
floor_mesh = room.properties.radiance._base_sensor_mesh(
|
|
124
|
+
_grid_size, _grid_size, offset=_dist_floor_, remove_out=True,
|
|
125
|
+
wall_offset=wall_offset)
|
|
126
|
+
if floor_mesh is not None:
|
|
127
|
+
floor_meshes.append(floor_mesh)
|
|
128
|
+
if len(floor_meshes) == 0:
|
|
129
|
+
continue
|
|
130
|
+
floor_grid = Mesh3D.join_meshes(floor_meshes) \
|
|
131
|
+
if len(floor_meshes) != 1 else floor_meshes[0]
|
|
132
|
+
|
|
133
|
+
# create the sensor grid from the mesh
|
|
134
|
+
mesh_radius = _grid_size * 0.45
|
|
135
|
+
sg_name = room.display_name if not by_zone_ else zone_id
|
|
136
|
+
grid_name = '{}_Radial'.format(clean_rad_string(sg_name))
|
|
137
|
+
s_grid = SensorGrid.from_mesh3d_radial(
|
|
138
|
+
grid_name, floor_grid, dir_count=dir_count, start_vector=st_vec,
|
|
139
|
+
mesh_radius=mesh_radius)
|
|
140
|
+
s_grid.room_identifier = room_group[0].identifier
|
|
141
|
+
s_grid.display_name = sg_name
|
|
142
|
+
|
|
143
|
+
# add the relevant items to the outputs
|
|
144
|
+
grid.append(s_grid)
|
|
145
|
+
sensors = s_grid.sensors
|
|
146
|
+
base_points = [from_point3d(Point3D(*sen.pos)) for sen in sensors]
|
|
147
|
+
base_vecs = [from_vector3d(Vector3D(*sen.dir)) for sen in sensors]
|
|
148
|
+
points.append(base_points)
|
|
149
|
+
vecs.append(base_vecs)
|
|
150
|
+
lb_mesh = s_grid.mesh
|
|
151
|
+
if lb_mesh is not None:
|
|
152
|
+
mesh.append(from_mesh3d(lb_mesh))
|
|
153
|
+
else:
|
|
154
|
+
mesh.append(None)
|
|
114
155
|
|
|
115
156
|
# convert the lists of points to data trees
|
|
116
157
|
points = list_to_data_tree(points)
|
|
@@ -37,6 +37,10 @@ The names of the grids will be the same as the rooms that they came from.
|
|
|
37
37
|
and all floors are horizontal (Default: False).
|
|
38
38
|
wall_offset_: A number for the distance at which sensors close to walls
|
|
39
39
|
should be removed.
|
|
40
|
+
by_zone_: Set to "True" to have the component generate one sensor grid per zone
|
|
41
|
+
across the input rooms rather than one sensor grid per room. This
|
|
42
|
+
option is useful for getting a more consolidated set of Radiance
|
|
43
|
+
results by zone. (Default: False).
|
|
40
44
|
|
|
41
45
|
Returns:
|
|
42
46
|
grid: A SensorGrid object that can be used in a grid-based recipe.
|
|
@@ -46,7 +50,7 @@ The names of the grids will be the same as the rooms that they came from.
|
|
|
46
50
|
|
|
47
51
|
ghenv.Component.Name = 'HB Sensor Grid from Rooms'
|
|
48
52
|
ghenv.Component.NickName = 'GridRooms'
|
|
49
|
-
ghenv.Component.Message = '1.8.
|
|
53
|
+
ghenv.Component.Message = '1.8.1'
|
|
50
54
|
ghenv.Component.Category = 'HB-Radiance'
|
|
51
55
|
ghenv.Component.SubCategory = '0 :: Basic Properties'
|
|
52
56
|
ghenv.Component.AdditionalHelpFromDocStrings = '4'
|
|
@@ -103,9 +107,22 @@ if all_required_inputs(ghenv.Component):
|
|
|
103
107
|
else:
|
|
104
108
|
raise TypeError('Expected Honeybee Room or Model. Got {}.'.format(type(obj)))
|
|
105
109
|
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
110
|
+
# group the rooms by zone if requested
|
|
111
|
+
if by_zone_:
|
|
112
|
+
room_groups = {}
|
|
113
|
+
for room in rooms:
|
|
114
|
+
try:
|
|
115
|
+
room_groups[room.zone].append(room)
|
|
116
|
+
except KeyError: # first room to be found in the zone
|
|
117
|
+
room_groups[room.zone] = [room]
|
|
118
|
+
else:
|
|
119
|
+
room_groups = {room.identifier: [room] for room in rooms}
|
|
120
|
+
|
|
121
|
+
for zone_id, room_group in room_groups.items():
|
|
122
|
+
# get all of the floor faces of the room
|
|
123
|
+
lb_floors = []
|
|
124
|
+
for room in room_group:
|
|
125
|
+
lb_floors.extend([floor.geometry.flip() for floor in room.floors])
|
|
109
126
|
|
|
110
127
|
if len(lb_floors) != 0:
|
|
111
128
|
# create the gridded ladybug Mesh3D
|
|
@@ -130,8 +147,14 @@ if all_required_inputs(ghenv.Component):
|
|
|
130
147
|
|
|
131
148
|
# remove points outside of the room volume if requested
|
|
132
149
|
if remove_out_ and lb_mesh is not None:
|
|
133
|
-
pattern = [
|
|
134
|
-
|
|
150
|
+
pattern = []
|
|
151
|
+
for pt in lb_mesh.face_centroids:
|
|
152
|
+
for room in room_group:
|
|
153
|
+
if room.geometry.is_point_inside(pt):
|
|
154
|
+
pattern.append(True)
|
|
155
|
+
break
|
|
156
|
+
else:
|
|
157
|
+
pattern.append(False)
|
|
135
158
|
try:
|
|
136
159
|
lb_mesh, vertex_pattern = lb_mesh.remove_faces(pattern)
|
|
137
160
|
except AssertionError: # the grid lies completely outside of the room
|
|
@@ -139,7 +162,9 @@ if all_required_inputs(ghenv.Component):
|
|
|
139
162
|
|
|
140
163
|
# remove any sensors within a certain distance of the walls, if requested
|
|
141
164
|
if wall_offset_ is not None and lb_mesh is not None:
|
|
142
|
-
wall_geos = [
|
|
165
|
+
wall_geos = []
|
|
166
|
+
for room in room_group:
|
|
167
|
+
wall_geos.extend([wall.geometry for wall in room.walls])
|
|
143
168
|
pattern = []
|
|
144
169
|
for pt in lb_mesh.face_centroids:
|
|
145
170
|
for wg in wall_geos:
|
|
@@ -166,10 +191,11 @@ if all_required_inputs(ghenv.Component):
|
|
|
166
191
|
base_dirs = [(vec.x, vec.y, vec.z) for vec in lb_mesh.face_normals]
|
|
167
192
|
|
|
168
193
|
# create the sensor grid
|
|
194
|
+
grid_name = room.display_name if not by_zone_ else zone_id
|
|
169
195
|
s_grid = SensorGrid.from_position_and_direction(
|
|
170
|
-
clean_rad_string(
|
|
171
|
-
s_grid.display_name =
|
|
172
|
-
s_grid.room_identifier =
|
|
196
|
+
clean_rad_string(grid_name), base_poss, base_dirs)
|
|
197
|
+
s_grid.display_name = grid_name
|
|
198
|
+
s_grid.room_identifier = room_group[0].identifier
|
|
173
199
|
s_grid.mesh = lb_mesh
|
|
174
200
|
s_grid.base_geometry = \
|
|
175
201
|
tuple(f.move(f.normal * _dist_floor_) for f in lb_floors)
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -39,7 +39,7 @@ honeybee_grasshopper_radiance/src/HB Exterior Modifier Subset.py,sha256=D63Sxk_a
|
|
|
39
39
|
honeybee_grasshopper_radiance/src/HB Extract HDR.py,sha256=qp2wdIGXqAkHUs2Jr6w5JdjpCL9PHuP-cF4WEsNyc2c,9067
|
|
40
40
|
honeybee_grasshopper_radiance/src/HB False Color.py,sha256=LTQ2mDpJdx7Yzl1UaPMfjedUu3LXK_lAuqQ8Y44TAek,10148
|
|
41
41
|
honeybee_grasshopper_radiance/src/HB Get Dynamic Groups.py,sha256=qRumvNWJw9-z7WxuYqyJtdI8L3xeug8j4DfYnSrxTds,2191
|
|
42
|
-
honeybee_grasshopper_radiance/src/HB Get Grids and Views.py,sha256=
|
|
42
|
+
honeybee_grasshopper_radiance/src/HB Get Grids and Views.py,sha256=TbkpoHUQiFVoCI5DxfVq_TU9UkQ0NHLO_ezp_ArHP_8,3501
|
|
43
43
|
honeybee_grasshopper_radiance/src/HB Glare Postprocess.py,sha256=cUci0AwlAcVH4505nmMbHpCkVFyZy9eGNDzPxXRKCUM,10101
|
|
44
44
|
honeybee_grasshopper_radiance/src/HB Glass Modifier 3.py,sha256=xdYBijQ1ZTEzjdwvN7l_zMXVqwRJfCq-vVts9wRd-1M,2447
|
|
45
45
|
honeybee_grasshopper_radiance/src/HB Glass Modifier.py,sha256=VY5RmO1RrtnNA90YQ3P0lcSXdtmpYjlYBW44t7X8_lg,2244
|
|
@@ -56,7 +56,7 @@ honeybee_grasshopper_radiance/src/HB Opaque Modifier 3.py,sha256=LXmoGyd9PS8Bejl
|
|
|
56
56
|
honeybee_grasshopper_radiance/src/HB Opaque Modifier.py,sha256=n7kWFFuHqZ6gZ980O6ySu4uY4QQ3tjbVC-l4lwiPiKk,2843
|
|
57
57
|
honeybee_grasshopper_radiance/src/HB Point-In-Time Grid-Based.py,sha256=P3lPO31HBnZNWlUmcJuzCFQS4JF76brETtXGtj9SLsU,4226
|
|
58
58
|
honeybee_grasshopper_radiance/src/HB Point-In-Time View-Based.py,sha256=uJJrAFJE2SkDYngVi5GHvh40Lyh7S7K76ms-sNtBnOs,6306
|
|
59
|
-
honeybee_grasshopper_radiance/src/HB Radial Grid from Rooms.py,sha256=
|
|
59
|
+
honeybee_grasshopper_radiance/src/HB Radial Grid from Rooms.py,sha256=1M8KJDPCFksc6sO3nqGHpjALozNv9xCp6Nwx8vcVmSs,6823
|
|
60
60
|
honeybee_grasshopper_radiance/src/HB Radial Sensor Grid.py,sha256=uwgURdTxNa4bTFuSrFhaiI7iHrLpgWExEIWj6sPvLYU,4548
|
|
61
61
|
honeybee_grasshopper_radiance/src/HB Radiance Parameter.py,sha256=iX_B1zUmWKrdVNZUV6xc8peJlJt5yjk9XeVcVfus0x8,5266
|
|
62
62
|
honeybee_grasshopper_radiance/src/HB Search Modifier Sets.py,sha256=zAeNOg8L7YRj1Wu5_4F8-HcLML6NTYRuY9XodHUKHf0,2361
|
|
@@ -64,7 +64,7 @@ honeybee_grasshopper_radiance/src/HB Search Modifiers.py,sha256=wwWPOZFKyborJsIB
|
|
|
64
64
|
honeybee_grasshopper_radiance/src/HB Section Plane View.py,sha256=STKDnPwJCu1yng12AyHVd-Y3_yBdPcGRubEe5KcWBiA,2585
|
|
65
65
|
honeybee_grasshopper_radiance/src/HB Sensor Grid from Apertures.py,sha256=Hrzrc5KM7yQQhsBJ-tuSzcqLiKJAMsquMSIWfZsVdIM,6660
|
|
66
66
|
honeybee_grasshopper_radiance/src/HB Sensor Grid from Faces.py,sha256=vbE4_l8LPFybDJQcfGwvmyDWbHuLhJ-zt7oAFGmZdeU,6484
|
|
67
|
-
honeybee_grasshopper_radiance/src/HB Sensor Grid from Rooms.py,sha256=
|
|
67
|
+
honeybee_grasshopper_radiance/src/HB Sensor Grid from Rooms.py,sha256=KPq4ExvjP3RRj1BRrhMM_oiep34BtKR3-Lkx2_xke0w,9489
|
|
68
68
|
honeybee_grasshopper_radiance/src/HB Sensor Grid.py,sha256=AmqYZ8m_hn4wpEVWHunq7CnhsjsltHxTaqHifbWkaqs,3595
|
|
69
69
|
honeybee_grasshopper_radiance/src/HB Shade Modifier Subset.py,sha256=tL0PnJqeJKsqiXOqLd0E1BCANGaThaiD9vRIdjFjMtI,2253
|
|
70
70
|
honeybee_grasshopper_radiance/src/HB Sky View.py,sha256=pXHX8zaC3V13H-bkhyC5dYgkNzUD2EHLs1n7X27z5ko,3832
|
|
@@ -121,7 +121,7 @@ honeybee_grasshopper_radiance/user_objects/HB Extract HDR.ghuser,sha256=buUshUoR
|
|
|
121
121
|
honeybee_grasshopper_radiance/user_objects/HB Face Radiance Attributes.ghuser,sha256=yU2xi4DpW03dN22Fp1uLcSx0cW9KDZ2nxa78WY9F2eg,2444
|
|
122
122
|
honeybee_grasshopper_radiance/user_objects/HB False Color.ghuser,sha256=11kvIk0XwugcILQz4gQ9u93rv6V6tWvQ_nuAz_dfnqA,9391
|
|
123
123
|
honeybee_grasshopper_radiance/user_objects/HB Get Dynamic Groups.ghuser,sha256=k9hbsvzdmfXx639l7POH9uiT89QcZ0hMWLUFIru8rGY,4744
|
|
124
|
-
honeybee_grasshopper_radiance/user_objects/HB Get Grids and Views.ghuser,sha256=
|
|
124
|
+
honeybee_grasshopper_radiance/user_objects/HB Get Grids and Views.ghuser,sha256=zHFgOGErjY8EuQInM0Ju1ep5AWAF3Rx76wX8hoBjTaM,5465
|
|
125
125
|
honeybee_grasshopper_radiance/user_objects/HB Glare Postprocess.ghuser,sha256=rrcpUBnYJA5w_NeyQ1CqjTBhfRRD8_KRizhVT_Im3VE,7101
|
|
126
126
|
honeybee_grasshopper_radiance/user_objects/HB Glass Modifier 3.ghuser,sha256=DyxxddjE5cJhw6O5Q7bn865-OfL8VlxqaDkt-YQRMUM,4767
|
|
127
127
|
honeybee_grasshopper_radiance/user_objects/HB Glass Modifier.ghuser,sha256=tc79qklvRkgdllmoxCwhkZFurbRadglPvQZ5rnJvEZ0,4122
|
|
@@ -138,7 +138,7 @@ honeybee_grasshopper_radiance/user_objects/HB Opaque Modifier 3.ghuser,sha256=n2
|
|
|
138
138
|
honeybee_grasshopper_radiance/user_objects/HB Opaque Modifier.ghuser,sha256=mUVMd04Hepxj_56TerXas1XRkmAVDGDOaQQzAWDap84,4723
|
|
139
139
|
honeybee_grasshopper_radiance/user_objects/HB Point-In-Time Grid-Based.ghuser,sha256=_lIFaVMXRZXUul1uKgnaF_YEuFGmzhP_sl1MfnExPFY,5686
|
|
140
140
|
honeybee_grasshopper_radiance/user_objects/HB Point-In-Time View-Based.ghuser,sha256=-7KhATOyNzEkEumK_X0FmopaJDrAsDvBAd7AGApXphw,7222
|
|
141
|
-
honeybee_grasshopper_radiance/user_objects/HB Radial Grid from Rooms.ghuser,sha256=
|
|
141
|
+
honeybee_grasshopper_radiance/user_objects/HB Radial Grid from Rooms.ghuser,sha256=UJo1nqay7zKstfmsvqyCW7u3hHTtBtU0Wn2nlKXKaE8,6968
|
|
142
142
|
honeybee_grasshopper_radiance/user_objects/HB Radial Sensor Grid.ghuser,sha256=__Wt5n8uhCxtoEj8ze-awX35ZJr1bdpMc38Vvz8liRc,6038
|
|
143
143
|
honeybee_grasshopper_radiance/user_objects/HB Radiance Parameter.ghuser,sha256=IHL2wUCbN7IM1gqBCLVgenb7_Ld0uv5mxbZyOKEOmug,6847
|
|
144
144
|
honeybee_grasshopper_radiance/user_objects/HB Room Radiance Attributes.ghuser,sha256=XCpBEQfsbzyTlg6vcVcbBbdISJDXcFPV1ulRQjNBhzc,2789
|
|
@@ -147,7 +147,7 @@ honeybee_grasshopper_radiance/user_objects/HB Search Modifiers.ghuser,sha256=5wN
|
|
|
147
147
|
honeybee_grasshopper_radiance/user_objects/HB Section Plane View.ghuser,sha256=Ky9XgobBpuyWTD8TbrsaBTgocqZrrVEkUQQF7MWBIfU,4352
|
|
148
148
|
honeybee_grasshopper_radiance/user_objects/HB Sensor Grid from Apertures.ghuser,sha256=oyHn53jk3m_c-v2-rrjwXGS88FOXGOwn2CoSYlRbg8Y,5925
|
|
149
149
|
honeybee_grasshopper_radiance/user_objects/HB Sensor Grid from Faces.ghuser,sha256=zLQpvYHoopdPJ7VuPoiDEZyqQdGt55bT1Y0PpiQonSk,6162
|
|
150
|
-
honeybee_grasshopper_radiance/user_objects/HB Sensor Grid from Rooms.ghuser,sha256=
|
|
150
|
+
honeybee_grasshopper_radiance/user_objects/HB Sensor Grid from Rooms.ghuser,sha256=Aiz274BrIBCcTe9LjJiD1IT7HLMZpncI0E23WpRXHg0,6551
|
|
151
151
|
honeybee_grasshopper_radiance/user_objects/HB Sensor Grid.ghuser,sha256=nr7Y_t--mnl8sJrJvDAgENtOa_PlR4lksfsBfZXrZqg,5590
|
|
152
152
|
honeybee_grasshopper_radiance/user_objects/HB Shade Modifier Subset.ghuser,sha256=TsPS5-D0LXBWGwuVS9QP-efJAjRpCRAUTIh39mpURA4,4499
|
|
153
153
|
honeybee_grasshopper_radiance/user_objects/HB Sky View.ghuser,sha256=YLSX3Ck5_pJ6UuTQUr-i6_GaKTpwkmzp-3MWUwGCLGU,6029
|
|
@@ -163,8 +163,8 @@ honeybee_grasshopper_radiance/user_objects/HB Wea From EPW.ghuser,sha256=RC0YVNW
|
|
|
163
163
|
honeybee_grasshopper_radiance/user_objects/HB Wea From Tau Clear Sky.ghuser,sha256=WmcJdcy7g4zQwtR-SWYrqLZs7WA6GhtRheijykKizAU,5423
|
|
164
164
|
honeybee_grasshopper_radiance/user_objects/HB Wea from Zhang-Huang.ghuser,sha256=G86nZiRNxajZVNlfBFnSEYu5DAQ0z78v0V3IJhi18FE,4679
|
|
165
165
|
honeybee_grasshopper_radiance/user_objects/__init__.py,sha256=7BOscRVupILqwFUBWP6nAsMNgNN8lXQPsQ_zYUvGEr8,50
|
|
166
|
-
honeybee_grasshopper_radiance-1.34.
|
|
167
|
-
honeybee_grasshopper_radiance-1.34.
|
|
168
|
-
honeybee_grasshopper_radiance-1.34.
|
|
169
|
-
honeybee_grasshopper_radiance-1.34.
|
|
170
|
-
honeybee_grasshopper_radiance-1.34.
|
|
166
|
+
honeybee_grasshopper_radiance-1.34.6.dist-info/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
|
|
167
|
+
honeybee_grasshopper_radiance-1.34.6.dist-info/METADATA,sha256=Hf4ttk5t6GEUeWMTWvKX6Fqxi_5zivuLkj9cP7I4tKA,2767
|
|
168
|
+
honeybee_grasshopper_radiance-1.34.6.dist-info/WHEEL,sha256=AHX6tWk3qWuce7vKLrj7lnulVHEdWoltgauo8bgCXgU,109
|
|
169
|
+
honeybee_grasshopper_radiance-1.34.6.dist-info/top_level.txt,sha256=BBzJ4nJKMDfzWMqymIH91kdsQlHSptnGHSk8i6_KZ_4,30
|
|
170
|
+
honeybee_grasshopper_radiance-1.34.6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|