honeybee-grasshopper-radiance 1.33.1__py2.py3-none-any.whl → 1.33.3__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 Certain Illuminance.py +7 -1
- honeybee_grasshopper_radiance/src/HB Custom Sky.py +1 -1
- honeybee_grasshopper_radiance/src/HB Dynamic State.py +7 -1
- honeybee_grasshopper_radiance/src/HB Exterior Modifier Subset.py +7 -1
- honeybee_grasshopper_radiance/src/HB Interior Modifier Subset.py +7 -1
- honeybee_grasshopper_radiance/src/HB ModifierSet.py +58 -58
- honeybee_grasshopper_radiance/src/{HB Search Mofidier Sets.py → HB Search Modifier Sets.py } +9 -3
- honeybee_grasshopper_radiance/src/{HB Search Mofidiers.py → HB Search Modifiers.py } +8 -2
- honeybee_grasshopper_radiance/src/HB Shade Modifier Subset.py +7 -1
- honeybee_grasshopper_radiance/src/HB Subface Modifier Subset.py +7 -1
- honeybee_grasshopper_radiance/src/HB View from Viewport.py +3 -2
- honeybee_grasshopper_radiance/user_objects/HB Certain Illuminance.ghuser +0 -0
- honeybee_grasshopper_radiance/user_objects/HB Custom Sky.ghuser +0 -0
- honeybee_grasshopper_radiance/user_objects/HB Dynamic State.ghuser +0 -0
- honeybee_grasshopper_radiance/user_objects/HB Exterior Modifier Subset.ghuser +0 -0
- honeybee_grasshopper_radiance/user_objects/HB Interior Modifier Subset.ghuser +0 -0
- honeybee_grasshopper_radiance/user_objects/HB ModifierSet.ghuser +0 -0
- honeybee_grasshopper_radiance/user_objects/HB Search Modifier Sets.ghuser +0 -0
- honeybee_grasshopper_radiance/user_objects/HB Search Modifiers.ghuser +0 -0
- honeybee_grasshopper_radiance/user_objects/HB Shade Modifier Subset.ghuser +0 -0
- honeybee_grasshopper_radiance/user_objects/HB Subface Modifier Subset.ghuser +0 -0
- honeybee_grasshopper_radiance/user_objects/HB View from Viewport.ghuser +0 -0
- {honeybee_grasshopper_radiance-1.33.1.dist-info → honeybee_grasshopper_radiance-1.33.3.dist-info}/METADATA +1 -1
- {honeybee_grasshopper_radiance-1.33.1.dist-info → honeybee_grasshopper_radiance-1.33.3.dist-info}/RECORD +27 -27
- honeybee_grasshopper_radiance/user_objects/HB Search Mofidier Sets.ghuser +0 -0
- honeybee_grasshopper_radiance/user_objects/HB Search Mofidiers.ghuser +0 -0
- {honeybee_grasshopper_radiance-1.33.1.dist-info → honeybee_grasshopper_radiance-1.33.3.dist-info}/LICENSE +0 -0
- {honeybee_grasshopper_radiance-1.33.1.dist-info → honeybee_grasshopper_radiance-1.33.3.dist-info}/WHEEL +0 -0
- {honeybee_grasshopper_radiance-1.33.1.dist-info → honeybee_grasshopper_radiance-1.33.3.dist-info}/top_level.txt +0 -0
|
@@ -20,7 +20,7 @@ Create a uniform sky that yields a certain illuminance.
|
|
|
20
20
|
|
|
21
21
|
ghenv.Component.Name = 'HB Certain Illuminance'
|
|
22
22
|
ghenv.Component.NickName = 'CertainIllum'
|
|
23
|
-
ghenv.Component.Message = '1.7.
|
|
23
|
+
ghenv.Component.Message = '1.7.1'
|
|
24
24
|
ghenv.Component.Category = 'HB-Radiance'
|
|
25
25
|
ghenv.Component.SubCategory = '2 :: Light Sources'
|
|
26
26
|
ghenv.Component.AdditionalHelpFromDocStrings = '1'
|
|
@@ -30,6 +30,12 @@ try:
|
|
|
30
30
|
except ImportError as e:
|
|
31
31
|
raise ImportError('\nFailed to import honeybee_radiance:\n\t{}'.format(e))
|
|
32
32
|
|
|
33
|
+
try:
|
|
34
|
+
from ladybug_rhino.grasshopper import turn_off_old_tag
|
|
35
|
+
except ImportError as e:
|
|
36
|
+
raise ImportError('\nFailed to import ladybug_rhino:\n\t{}'.format(e))
|
|
37
|
+
turn_off_old_tag(ghenv.Component)
|
|
38
|
+
|
|
33
39
|
|
|
34
40
|
_value_ = 10000 if _value_ is None else _value_
|
|
35
41
|
sky = CertainIrradiance.from_illuminance(_value_)
|
|
@@ -31,7 +31,7 @@ Create a Custom sky from direct and diffuse irradiance.
|
|
|
31
31
|
|
|
32
32
|
ghenv.Component.Name = 'HB Custom Sky'
|
|
33
33
|
ghenv.Component.NickName = 'CustomSky'
|
|
34
|
-
ghenv.Component.Message = '1.7.
|
|
34
|
+
ghenv.Component.Message = '1.7.1'
|
|
35
35
|
ghenv.Component.Category = 'HB-Radiance'
|
|
36
36
|
ghenv.Component.SubCategory = '2 :: Light Sources'
|
|
37
37
|
ghenv.Component.AdditionalHelpFromDocStrings = '1'
|
|
@@ -25,7 +25,7 @@ Create a State object representing a single dynamic group state.
|
|
|
25
25
|
|
|
26
26
|
ghenv.Component.Name = 'HB Dynamic State'
|
|
27
27
|
ghenv.Component.NickName = 'State'
|
|
28
|
-
ghenv.Component.Message = '1.7.
|
|
28
|
+
ghenv.Component.Message = '1.7.1'
|
|
29
29
|
ghenv.Component.Category = 'HB-Radiance'
|
|
30
30
|
ghenv.Component.SubCategory = '0 :: Basic Properties'
|
|
31
31
|
ghenv.Component.AdditionalHelpFromDocStrings = '3'
|
|
@@ -35,4 +35,10 @@ try:
|
|
|
35
35
|
except ImportError as e:
|
|
36
36
|
raise ImportError('\nFailed to import honeybee_radiance:\n\t{}'.format(e))
|
|
37
37
|
|
|
38
|
+
try:
|
|
39
|
+
from ladybug_rhino.grasshopper import turn_off_old_tag
|
|
40
|
+
except ImportError as e:
|
|
41
|
+
raise ImportError('\nFailed to import ladybug_rhino:\n\t{}'.format(e))
|
|
42
|
+
turn_off_old_tag(ghenv.Component)
|
|
43
|
+
|
|
38
44
|
state = RadianceSubFaceState(modifier_, [geo.duplicate() for geo in shades_])
|
|
@@ -27,7 +27,7 @@ ModifierSet object.
|
|
|
27
27
|
|
|
28
28
|
ghenv.Component.Name = 'HB Exterior Modifier Subset'
|
|
29
29
|
ghenv.Component.NickName = 'ExteriorSubset'
|
|
30
|
-
ghenv.Component.Message = '1.7.
|
|
30
|
+
ghenv.Component.Message = '1.7.1'
|
|
31
31
|
ghenv.Component.Category = 'HB-Radiance'
|
|
32
32
|
ghenv.Component.SubCategory = '1 :: Modifiers'
|
|
33
33
|
ghenv.Component.AdditionalHelpFromDocStrings = '4'
|
|
@@ -38,6 +38,12 @@ try: # import honeybee_radiance dependencies
|
|
|
38
38
|
except ImportError as e:
|
|
39
39
|
raise ImportError('\nFailed to import honeybee_radiance:\n\t{}'.format(e))
|
|
40
40
|
|
|
41
|
+
try:
|
|
42
|
+
from ladybug_rhino.grasshopper import turn_off_old_tag
|
|
43
|
+
except ImportError as e:
|
|
44
|
+
raise ImportError('\nFailed to import ladybug_rhino:\n\t{}'.format(e))
|
|
45
|
+
turn_off_old_tag(ghenv.Component)
|
|
46
|
+
|
|
41
47
|
|
|
42
48
|
def check_mod(mod, input_name):
|
|
43
49
|
"""Get an Modifier from the library if it's a string."""
|
|
@@ -36,7 +36,7 @@ ModifierSet object.
|
|
|
36
36
|
|
|
37
37
|
ghenv.Component.Name = 'HB Interior Modifier Subset'
|
|
38
38
|
ghenv.Component.NickName = 'InteriorSubset'
|
|
39
|
-
ghenv.Component.Message = '1.7.
|
|
39
|
+
ghenv.Component.Message = '1.7.1'
|
|
40
40
|
ghenv.Component.Category = 'HB-Radiance'
|
|
41
41
|
ghenv.Component.SubCategory = '1 :: Modifiers'
|
|
42
42
|
ghenv.Component.AdditionalHelpFromDocStrings = '4'
|
|
@@ -47,6 +47,12 @@ try: # import honeybee_radiance dependencies
|
|
|
47
47
|
except ImportError as e:
|
|
48
48
|
raise ImportError('\nFailed to import honeybee_radiance:\n\t{}'.format(e))
|
|
49
49
|
|
|
50
|
+
try:
|
|
51
|
+
from ladybug_rhino.grasshopper import turn_off_old_tag
|
|
52
|
+
except ImportError as e:
|
|
53
|
+
raise ImportError('\nFailed to import ladybug_rhino:\n\t{}'.format(e))
|
|
54
|
+
turn_off_old_tag(ghenv.Component)
|
|
55
|
+
|
|
50
56
|
|
|
51
57
|
def check_mod(mod, input_name):
|
|
52
58
|
"""Get an Modifier from the library if it's a string."""
|
|
@@ -43,7 +43,7 @@ all default modifiers on the Room.
|
|
|
43
43
|
|
|
44
44
|
ghenv.Component.Name = 'HB ModifierSet'
|
|
45
45
|
ghenv.Component.NickName = 'ModifierSet'
|
|
46
|
-
ghenv.Component.Message = '1.7.
|
|
46
|
+
ghenv.Component.Message = '1.7.1'
|
|
47
47
|
ghenv.Component.Category = 'HB-Radiance'
|
|
48
48
|
ghenv.Component.SubCategory = '1 :: Modifiers'
|
|
49
49
|
ghenv.Component.AdditionalHelpFromDocStrings = '3'
|
|
@@ -60,68 +60,68 @@ except ImportError as e:
|
|
|
60
60
|
raise ImportError('\nFailed to import honeybee_radiance:\n\t{}'.format(e))
|
|
61
61
|
|
|
62
62
|
try: # import ladybug_rhino dependencies
|
|
63
|
-
from ladybug_rhino.grasshopper import
|
|
63
|
+
from ladybug_rhino.grasshopper import turn_off_old_tag
|
|
64
64
|
except ImportError as e:
|
|
65
65
|
raise ImportError('\nFailed to import ladybug_rhino:\n\t{}'.format(e))
|
|
66
|
+
turn_off_old_tag(ghenv.Component)
|
|
66
67
|
|
|
67
68
|
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
mod_set.display_name = _name_
|
|
69
|
+
# get the base modifier set
|
|
70
|
+
name = clean_and_id_rad_string('ModifierSet') if _name_ is None else \
|
|
71
|
+
clean_rad_string(_name_)
|
|
72
|
+
if base_mod_set_ is None:
|
|
73
|
+
mod_set = ModifierSet(name)
|
|
74
|
+
else:
|
|
75
|
+
if isinstance(base_mod_set_, str):
|
|
76
|
+
base_mod_set_ = modifier_set_by_identifier(base_mod_set_)
|
|
77
|
+
mod_set = base_mod_set_.duplicate()
|
|
78
|
+
mod_set.identifier = name
|
|
79
|
+
if _name_ is not None:
|
|
80
|
+
mod_set.display_name = _name_
|
|
81
81
|
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
82
|
+
# go through each input modifier subset and assign it to the set
|
|
83
|
+
if len(_exterior_subset_) != 0:
|
|
84
|
+
assert len(_exterior_subset_) == 3, 'Input _exterior_subset_ is not valid.'
|
|
85
|
+
if _exterior_subset_[0] is not None:
|
|
86
|
+
mod_set.wall_set.exterior_modifier = _exterior_subset_[0]
|
|
87
|
+
if _exterior_subset_[1] is not None:
|
|
88
|
+
mod_set.roof_ceiling_set.exterior_modifier = _exterior_subset_[1]
|
|
89
|
+
if _exterior_subset_[2] is not None:
|
|
90
|
+
mod_set.floor_set.exterior_modifier = _exterior_subset_[2]
|
|
91
91
|
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
92
|
+
if len(_interior_subset_) != 0:
|
|
93
|
+
assert len(_interior_subset_) == 6, 'Input _interior_subset_ is not valid.'
|
|
94
|
+
if _interior_subset_[0] is not None:
|
|
95
|
+
mod_set.wall_set.interior_modifier = _interior_subset_[0]
|
|
96
|
+
if _interior_subset_[1] is not None:
|
|
97
|
+
mod_set.roof_ceiling_set.interior_modifier = _interior_subset_[1]
|
|
98
|
+
if _interior_subset_[2] is not None:
|
|
99
|
+
mod_set.floor_set.interior_modifier = _interior_subset_[2]
|
|
100
|
+
if _interior_subset_[3] is not None:
|
|
101
|
+
mod_set.aperture_set.interior_modifier = _interior_subset_[3]
|
|
102
|
+
if _interior_subset_[4] is not None:
|
|
103
|
+
mod_set.door_set.interior_modifier = _interior_subset_[4]
|
|
104
|
+
if _interior_subset_[5] is not None:
|
|
105
|
+
mod_set.door_set.interior_glass_modifier = _interior_subset_[5]
|
|
106
106
|
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
107
|
+
if len(_subface_subset_) != 0:
|
|
108
|
+
assert len(_subface_subset_) == 6, 'Input _subface_subset_ is not valid.'
|
|
109
|
+
if _subface_subset_[0] is not None:
|
|
110
|
+
mod_set.aperture_set.window_modifier = _subface_subset_[0]
|
|
111
|
+
if _subface_subset_[1] is not None:
|
|
112
|
+
mod_set.aperture_set.skylight_modifier = _subface_subset_[1]
|
|
113
|
+
if _subface_subset_[2] is not None:
|
|
114
|
+
mod_set.aperture_set.operable_modifier = _subface_subset_[2]
|
|
115
|
+
if _subface_subset_[3] is not None:
|
|
116
|
+
mod_set.door_set.exterior_modifier = _subface_subset_[3]
|
|
117
|
+
if _subface_subset_[4] is not None:
|
|
118
|
+
mod_set.door_set.overhead_modifier = _subface_subset_[4]
|
|
119
|
+
if _subface_subset_[5] is not None:
|
|
120
|
+
mod_set.door_set.exterior_glass_modifier = _subface_subset_[5]
|
|
121
121
|
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
122
|
+
if len(_shade_subset_) != 0:
|
|
123
|
+
assert len(_shade_subset_) == 2, 'Input _shade_subset_ is not valid.'
|
|
124
|
+
if _shade_subset_[0] is not None:
|
|
125
|
+
mod_set.shade_set.exterior_modifier = _shade_subset_[0]
|
|
126
|
+
if _shade_subset_[1] is not None:
|
|
127
|
+
mod_set.shade_set.interior_modifier = _shade_subset_[1]
|
honeybee_grasshopper_radiance/src/{HB Search Mofidier Sets.py → HB Search Modifier Sets.py }
RENAMED
|
@@ -21,15 +21,15 @@ Search for available Mofidier Sets within the honeybee standards library.
|
|
|
21
21
|
finding an item in the search but it may not be appropropriate for
|
|
22
22
|
all cases. You may want to set it to True when you are searching for
|
|
23
23
|
a specific phrase that includes spaces. Default: False.
|
|
24
|
-
|
|
24
|
+
|
|
25
25
|
Returns:
|
|
26
26
|
mod_sets: A list of modifier sets within the honeybee radiance
|
|
27
27
|
standards library (filtered by keywords_ if they are input).
|
|
28
28
|
"""
|
|
29
29
|
|
|
30
|
-
ghenv.Component.Name = 'HB Search
|
|
30
|
+
ghenv.Component.Name = 'HB Search Modifier Sets'
|
|
31
31
|
ghenv.Component.NickName = 'SearchModSets'
|
|
32
|
-
ghenv.Component.Message = '1.7.
|
|
32
|
+
ghenv.Component.Message = '1.7.2'
|
|
33
33
|
ghenv.Component.Category = 'HB-Radiance'
|
|
34
34
|
ghenv.Component.SubCategory = '1 :: Modifiers'
|
|
35
35
|
ghenv.Component.AdditionalHelpFromDocStrings = '1'
|
|
@@ -44,6 +44,12 @@ try: # import the honeybee-radiance dependencies
|
|
|
44
44
|
except ImportError as e:
|
|
45
45
|
raise ImportError('\nFailed to import honeybee_radiance:\n\t{}'.format(e))
|
|
46
46
|
|
|
47
|
+
try:
|
|
48
|
+
from ladybug_rhino.grasshopper import turn_off_old_tag
|
|
49
|
+
except ImportError as e:
|
|
50
|
+
raise ImportError('\nFailed to import ladybug_rhino:\n\t{}'.format(e))
|
|
51
|
+
turn_off_old_tag(ghenv.Component)
|
|
52
|
+
|
|
47
53
|
|
|
48
54
|
if len(keywords_) == 0:
|
|
49
55
|
mod_sets = sorted(MODIFIER_SETS)
|
|
@@ -27,9 +27,9 @@ Search for available Mofidiers within the honeybee standards library.
|
|
|
27
27
|
standards library (filtered by keywords_ if they are input).
|
|
28
28
|
"""
|
|
29
29
|
|
|
30
|
-
ghenv.Component.Name = 'HB Search
|
|
30
|
+
ghenv.Component.Name = 'HB Search Modifiers'
|
|
31
31
|
ghenv.Component.NickName = 'SearchMods'
|
|
32
|
-
ghenv.Component.Message = '1.7.
|
|
32
|
+
ghenv.Component.Message = '1.7.2'
|
|
33
33
|
ghenv.Component.Category = 'HB-Radiance'
|
|
34
34
|
ghenv.Component.SubCategory = '1 :: Modifiers'
|
|
35
35
|
ghenv.Component.AdditionalHelpFromDocStrings = '1'
|
|
@@ -44,6 +44,12 @@ try: # import the honeybee-radiance dependencies
|
|
|
44
44
|
except ImportError as e:
|
|
45
45
|
raise ImportError('\nFailed to import honeybee_radiance:\n\t{}'.format(e))
|
|
46
46
|
|
|
47
|
+
try:
|
|
48
|
+
from ladybug_rhino.grasshopper import turn_off_old_tag
|
|
49
|
+
except ImportError as e:
|
|
50
|
+
raise ImportError('\nFailed to import ladybug_rhino:\n\t{}'.format(e))
|
|
51
|
+
turn_off_old_tag(ghenv.Component)
|
|
52
|
+
|
|
47
53
|
|
|
48
54
|
if len(keywords_) == 0:
|
|
49
55
|
modifiers = sorted(MODIFIERS)
|
|
@@ -24,7 +24,7 @@ Create a list of modifiers that can be used to edit or create a ModifierSet obje
|
|
|
24
24
|
|
|
25
25
|
ghenv.Component.Name = 'HB Shade Modifier Subset'
|
|
26
26
|
ghenv.Component.NickName = 'ShadeSubset'
|
|
27
|
-
ghenv.Component.Message = '1.7.
|
|
27
|
+
ghenv.Component.Message = '1.7.1'
|
|
28
28
|
ghenv.Component.Category = 'HB-Radiance'
|
|
29
29
|
ghenv.Component.SubCategory = '1 :: Modifiers'
|
|
30
30
|
ghenv.Component.AdditionalHelpFromDocStrings = '4'
|
|
@@ -35,6 +35,12 @@ try: # import honeybee_radiance dependencies
|
|
|
35
35
|
except ImportError as e:
|
|
36
36
|
raise ImportError('\nFailed to import honeybee_radiance:\n\t{}'.format(e))
|
|
37
37
|
|
|
38
|
+
try:
|
|
39
|
+
from ladybug_rhino.grasshopper import turn_off_old_tag
|
|
40
|
+
except ImportError as e:
|
|
41
|
+
raise ImportError('\nFailed to import ladybug_rhino:\n\t{}'.format(e))
|
|
42
|
+
turn_off_old_tag(ghenv.Component)
|
|
43
|
+
|
|
38
44
|
|
|
39
45
|
def check_mod(mod, input_name):
|
|
40
46
|
"""Get an Modifier from the library if it's a string."""
|
|
@@ -42,7 +42,7 @@ used to edit or create a ModifierSet object.
|
|
|
42
42
|
|
|
43
43
|
ghenv.Component.Name = 'HB Subface Modifier Subset'
|
|
44
44
|
ghenv.Component.NickName = 'SubfaceSubset'
|
|
45
|
-
ghenv.Component.Message = '1.7.
|
|
45
|
+
ghenv.Component.Message = '1.7.1'
|
|
46
46
|
ghenv.Component.Category = 'HB-Radiance'
|
|
47
47
|
ghenv.Component.SubCategory = '1 :: Modifiers'
|
|
48
48
|
ghenv.Component.AdditionalHelpFromDocStrings = '4'
|
|
@@ -53,6 +53,12 @@ try: # import honeybee_radiance dependencies
|
|
|
53
53
|
except ImportError as e:
|
|
54
54
|
raise ImportError('\nFailed to import honeybee_radiance:\n\t{}'.format(e))
|
|
55
55
|
|
|
56
|
+
try:
|
|
57
|
+
from ladybug_rhino.grasshopper import turn_off_old_tag
|
|
58
|
+
except ImportError as e:
|
|
59
|
+
raise ImportError('\nFailed to import ladybug_rhino:\n\t{}'.format(e))
|
|
60
|
+
turn_off_old_tag(ghenv.Component)
|
|
61
|
+
|
|
56
62
|
|
|
57
63
|
def check_mod(mod, input_name):
|
|
58
64
|
"""Get an Modifier from the library if it's a string."""
|
|
@@ -39,7 +39,7 @@ Create a Honeybee View for an image-based analysis using a Rhino viewport.
|
|
|
39
39
|
|
|
40
40
|
ghenv.Component.Name = 'HB View from Viewport'
|
|
41
41
|
ghenv.Component.NickName = 'Viewport'
|
|
42
|
-
ghenv.Component.Message = '1.7.
|
|
42
|
+
ghenv.Component.Message = '1.7.1'
|
|
43
43
|
ghenv.Component.Category = 'HB-Radiance'
|
|
44
44
|
ghenv.Component.SubCategory = '0 :: Basic Properties'
|
|
45
45
|
ghenv.Component.AdditionalHelpFromDocStrings = '4'
|
|
@@ -55,10 +55,11 @@ except ImportError as e:
|
|
|
55
55
|
raise ImportError('\nFailed to import honeybee:\n\t{}'.format(e))
|
|
56
56
|
|
|
57
57
|
try: # import ladybug_rhino dependencies
|
|
58
|
-
from ladybug_rhino.grasshopper import
|
|
58
|
+
from ladybug_rhino.grasshopper import turn_off_old_tag
|
|
59
59
|
from ladybug_rhino.viewport import viewport_by_name, viewport_properties
|
|
60
60
|
except ImportError as e:
|
|
61
61
|
raise ImportError('\nFailed to import ladybug_rhino:\n\t{}'.format(e))
|
|
62
|
+
turn_off_old_tag(ghenv.Component)
|
|
62
63
|
|
|
63
64
|
VIEW_TYPES = ('v', 'h', 'l', 'c', 'a', 's')
|
|
64
65
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -19,11 +19,11 @@ honeybee_grasshopper_radiance/src/HB Assign Grids and Views.py,sha256=5wOXq2FiMY
|
|
|
19
19
|
honeybee_grasshopper_radiance/src/HB Automatic Aperture Group.py,sha256=0xekpVithizbG3A1io9DdyGPybFO6q-DniTH3A4G8OE,9591
|
|
20
20
|
honeybee_grasshopper_radiance/src/HB BSDF Modifier.py,sha256=ZxuCDHcr76SqSq2jb2fzO2eQkP_4daIZM22v6bnRqco,3211
|
|
21
21
|
honeybee_grasshopper_radiance/src/HB CIE Standard Sky.py,sha256=MlJGhPimbeHuHmeQ53iQ93qV4nU5Odq7fXwModMcCL8,2845
|
|
22
|
-
honeybee_grasshopper_radiance/src/HB Certain Illuminance.py,sha256=
|
|
22
|
+
honeybee_grasshopper_radiance/src/HB Certain Illuminance.py,sha256=AEUnfTb68NKl5mW9p7DqZNRoNqfCizOKuKtG-riZlzU,1350
|
|
23
23
|
honeybee_grasshopper_radiance/src/HB Check Scene.py,sha256=T0TUamSQ4Vojo8rHZ-YyQCSytwBjhTtLjt03qbB8kVw,9188
|
|
24
24
|
honeybee_grasshopper_radiance/src/HB Climatebased Sky.py,sha256=SKz4zDGJQzRhx64iOeJi6d4lIQrCfsDLucm3k129lxc,2838
|
|
25
25
|
honeybee_grasshopper_radiance/src/HB Cumulative Radiation.py,sha256=70psr2GToRn032eR_AAFpWDkXHmMuuupi_uoSMA0Cv0,4954
|
|
26
|
-
honeybee_grasshopper_radiance/src/HB Custom Sky.py,sha256=
|
|
26
|
+
honeybee_grasshopper_radiance/src/HB Custom Sky.py,sha256=MwEXW8g9Rdqfromxq-1XfU0VEQzTnhegVSQuReJjAHA,2866
|
|
27
27
|
honeybee_grasshopper_radiance/src/HB Daylight Control Schedule.py,sha256=qqqlewLYNDhIX8_pGppWQ1f702sspmPxQdsGLNGdjDk,10185
|
|
28
28
|
honeybee_grasshopper_radiance/src/HB Daylight Factor.py,sha256=2pJ56JGgt2139tb9QtNi4-3NaDLlcmXNbc3cocTeSIg,3636
|
|
29
29
|
honeybee_grasshopper_radiance/src/HB Deconstruct Modifier.py,sha256=jt_XyzJa6c71oRX5OFY9vP9wMg7hd6uGDWh3NjTgGyI,1527
|
|
@@ -34,8 +34,8 @@ honeybee_grasshopper_radiance/src/HB Direct Sun Hours.py,sha256=EzvfHG6AvOytOzXu
|
|
|
34
34
|
honeybee_grasshopper_radiance/src/HB Dynamic Aperture Group.py,sha256=K_ywYz2dGfTguG_ALVMkR-dsQQCH8s96lS6wWU_-Wwg,3994
|
|
35
35
|
honeybee_grasshopper_radiance/src/HB Dynamic Shade Group.py,sha256=ZoQme77-rurBgGkB0vmldgBGYqBxzQhvqUhrrcXRBCA,4182
|
|
36
36
|
honeybee_grasshopper_radiance/src/HB Dynamic State Geometry.py,sha256=hYlnpG73bQRrBEHUNSQa9SyiVve7YnP7Pi8Hi6ir-LI,2682
|
|
37
|
-
honeybee_grasshopper_radiance/src/HB Dynamic State.py,sha256=
|
|
38
|
-
honeybee_grasshopper_radiance/src/HB Exterior Modifier Subset.py,sha256=
|
|
37
|
+
honeybee_grasshopper_radiance/src/HB Dynamic State.py,sha256=Rx5Mb3vPZN-lTWTV1WNkHKI7UHfIAsaDvNnOFx_ExdU,1752
|
|
38
|
+
honeybee_grasshopper_radiance/src/HB Exterior Modifier Subset.py,sha256=mOwDj_uTEB63wqY9zdLVnhB0bOb8rATCSg14aMvj0X4,2520
|
|
39
39
|
honeybee_grasshopper_radiance/src/HB Extract HDR.py,sha256=LmAM4HvgFMozjwoYh8o0oaV35cP410rSji75iANJzrk,9067
|
|
40
40
|
honeybee_grasshopper_radiance/src/HB False Color.py,sha256=3A19LGdTD2WTPgQzT9x2VgaEwZv2apPQSrg52e-FRC0,10133
|
|
41
41
|
honeybee_grasshopper_radiance/src/HB Get Dynamic Groups.py,sha256=V1ueH591hx2iFKMQHPtXwwxOKKHuVPV2ksD70zY6st8,2191
|
|
@@ -45,13 +45,13 @@ honeybee_grasshopper_radiance/src/HB Glass Modifier 3.py,sha256=aXAlj1fMwNHVAljs
|
|
|
45
45
|
honeybee_grasshopper_radiance/src/HB Glass Modifier.py,sha256=r-4vXdmSswx-TAizQ5pvrZW2E_kdn4631tG6rJSdKqE,2244
|
|
46
46
|
honeybee_grasshopper_radiance/src/HB HDR to GIF.py,sha256=BVm5GPES9FGDTwZsQ8jZHyETyuYNvPKzVsWtb34Tpnw,2490
|
|
47
47
|
honeybee_grasshopper_radiance/src/HB Imageless Annual Glare.py,sha256=EfAoD3yf16INIbEttdm1KopSxDaz1XApMrXBPnCku2U,5597
|
|
48
|
-
honeybee_grasshopper_radiance/src/HB Interior Modifier Subset.py,sha256=
|
|
48
|
+
honeybee_grasshopper_radiance/src/HB Interior Modifier Subset.py,sha256=J55zFJ8zTWB-jTqy7sHqKc82aqbZGHCXWU6z0TUc7KY,3465
|
|
49
49
|
honeybee_grasshopper_radiance/src/HB Metal Modifier 3.py,sha256=d5Y6xjWrFm806HTW7-LAzAOojVDSlAQXZtGQ4651F1Q,3074
|
|
50
50
|
honeybee_grasshopper_radiance/src/HB Metal Modifier.py,sha256=D0UC3tcLfrw2zUEJmaiZWYNjOlMioevj9blFoknATFo,2845
|
|
51
51
|
honeybee_grasshopper_radiance/src/HB Mirror Modifier 3.py,sha256=FpzLYD2jmqf5PNovc-gstphsKNyxnz638ZOosT6FmtE,2077
|
|
52
52
|
honeybee_grasshopper_radiance/src/HB Mirror Modifier.py,sha256=VyDt4LpHOPjQsQkTTOv2x3ZExK20pNZ2DK0V3QNXL6w,2033
|
|
53
53
|
honeybee_grasshopper_radiance/src/HB Model to Rad Folder.py,sha256=B5i8dtyOZiWV0HUda5QDTuRjfkXz7DIz-hKUJE_u1FA,2837
|
|
54
|
-
honeybee_grasshopper_radiance/src/HB ModifierSet.py,sha256=
|
|
54
|
+
honeybee_grasshopper_radiance/src/HB ModifierSet.py,sha256=TWgoX6macZkaXfnEI7D1L4RI2ZWu3I-dO2MwcmBlrxM,5990
|
|
55
55
|
honeybee_grasshopper_radiance/src/HB Opaque Modifier 3.py,sha256=zyrxz2sVMgtT2EPX7ByI0VZVIjJHLbMsSXe3ecsIqRU,2915
|
|
56
56
|
honeybee_grasshopper_radiance/src/HB Opaque Modifier.py,sha256=xq4UnaTTjVV8nQdeNK76UkgHuVVn4G0oWwsshsycInk,2843
|
|
57
57
|
honeybee_grasshopper_radiance/src/HB Point-In-Time Grid-Based.py,sha256=nWEj-beOWOkGJFzXcP8dNFu7Os-uwAvBsZYX1-mzGso,4226
|
|
@@ -59,20 +59,20 @@ honeybee_grasshopper_radiance/src/HB Point-In-Time View-Based.py,sha256=GFZ_-J4t
|
|
|
59
59
|
honeybee_grasshopper_radiance/src/HB Radial Grid from Rooms.py,sha256=MAEE70OfH3YZja4ckm18G7bia2JgVuge4tsCwNxGWz4,5148
|
|
60
60
|
honeybee_grasshopper_radiance/src/HB Radial Sensor Grid.py,sha256=r1PHzDfdDEU4wj5_5ZuQMcgsEEK96jg4z5hvu9GCnMQ,4548
|
|
61
61
|
honeybee_grasshopper_radiance/src/HB Radiance Parameter.py,sha256=7KMKbFe9N900mVx7de-IaSpQDtlB9BIICLTH-vrag0c,5266
|
|
62
|
-
honeybee_grasshopper_radiance/src/HB Search
|
|
63
|
-
honeybee_grasshopper_radiance/src/HB Search
|
|
62
|
+
honeybee_grasshopper_radiance/src/HB Search Modifier Sets.py,sha256=26Rei5gNOsIlfiOne6p8PYWQZCNNmLpU2bOq5gHnJQ8,2361
|
|
63
|
+
honeybee_grasshopper_radiance/src/HB Search Modifiers.py,sha256=CnhoARekhU3fT3UAo4z3B0-9tcSmaJEmcFdKr5VjCu4,2330
|
|
64
64
|
honeybee_grasshopper_radiance/src/HB Section Plane View.py,sha256=ELDjDC4WvF3K7SpsqOdEMpQA17b2MaRjZkmGojo4weQ,2585
|
|
65
65
|
honeybee_grasshopper_radiance/src/HB Sensor Grid from Apertures.py,sha256=jy8WHpJfbtAnzAVzM0z1fN0OVVbc3dyVENoqDlJvqeI,6660
|
|
66
66
|
honeybee_grasshopper_radiance/src/HB Sensor Grid from Faces.py,sha256=APGUm1kq1A2u4ZduXU1mHxPffoo18n4TrTGvQlhZYdw,6484
|
|
67
67
|
honeybee_grasshopper_radiance/src/HB Sensor Grid from Rooms.py,sha256=-nevEYuVtjlD3rqoQyCweWpU8htV6gUTp3eKMrOryYQ,8425
|
|
68
68
|
honeybee_grasshopper_radiance/src/HB Sensor Grid.py,sha256=kq5k3OTMJ3Kv8idcAettZ4xBkShUC2cwE0H6ry_k19g,3595
|
|
69
|
-
honeybee_grasshopper_radiance/src/HB Shade Modifier Subset.py,sha256=
|
|
69
|
+
honeybee_grasshopper_radiance/src/HB Shade Modifier Subset.py,sha256=qMGP8rEdQ0wJq7lnHSRLwNVhLHO5NfMWeBsHEv0Vh8k,2253
|
|
70
70
|
honeybee_grasshopper_radiance/src/HB Sky View.py,sha256=-GBOER19fHDICBHBROUBmTtDGNOeLikUYRxYhqZQsk4,3832
|
|
71
71
|
honeybee_grasshopper_radiance/src/HB Spatial Daylight Autonomy.py,sha256=dR4xrnUyxXndQEJlCkrW6k6jk9fIQNdT-g7MdyaOdxM,3985
|
|
72
|
-
honeybee_grasshopper_radiance/src/HB Subface Modifier Subset.py,sha256=
|
|
72
|
+
honeybee_grasshopper_radiance/src/HB Subface Modifier Subset.py,sha256=gLjp2lF8vRwWA6O0D3WkLE1Ez7Mzmr7qfw9y5z1f_YU,3837
|
|
73
73
|
honeybee_grasshopper_radiance/src/HB Translucent Modifier 3.py,sha256=_olqwPt6OKL0NiMUFXpaBGqd9d3lbBu48_zHMilIpGg,3460
|
|
74
74
|
honeybee_grasshopper_radiance/src/HB Translucent Modifier.py,sha256=S-Upk1rjd4ZOT7FbGZPmfe1bLSBpIXUcSNhqBSYogTA,3389
|
|
75
|
-
honeybee_grasshopper_radiance/src/HB View from Viewport.py,sha256=
|
|
75
|
+
honeybee_grasshopper_radiance/src/HB View from Viewport.py,sha256=4pAvD31x48Y6ZDWhi6fUuqLELfJsrh7DG1j29roFDvc,3423
|
|
76
76
|
honeybee_grasshopper_radiance/src/HB View.py,sha256=iLUN-E9uWugmhd0hGz9IV8T1uwSPhp9h1s8XVu0ThNw,4108
|
|
77
77
|
honeybee_grasshopper_radiance/src/HB Visualize Sky.py,sha256=PJg2O4-uwUIqUnI0TPtYS1QkURFl5qBi_JtGjqp9dgA,5692
|
|
78
78
|
honeybee_grasshopper_radiance/src/HB Wea From Clear Sky.py,sha256=-6ZjkOq7qtxBCvpIVdTKubGiyG_a7ndsAXFWzh5HwZQ,2747
|
|
@@ -100,11 +100,11 @@ honeybee_grasshopper_radiance/user_objects/HB Assign Grids and Views.ghuser,sha2
|
|
|
100
100
|
honeybee_grasshopper_radiance/user_objects/HB Automatic Aperture Group.ghuser,sha256=TQvGNNGzjbbB5CHCYwPPewSIBj9TwDB0a_O9ZWwrj9Y,7461
|
|
101
101
|
honeybee_grasshopper_radiance/user_objects/HB BSDF Modifier.ghuser,sha256=6MeTgdqLVWipWVeekT9qzkPNVxcmgREsS1favnyaiPo,5306
|
|
102
102
|
honeybee_grasshopper_radiance/user_objects/HB CIE Standard Sky.ghuser,sha256=A-5pilwe_XJVWosT-81TY6-Y71WXcXsxigx1wcRO40Q,5331
|
|
103
|
-
honeybee_grasshopper_radiance/user_objects/HB Certain Illuminance.ghuser,sha256=
|
|
103
|
+
honeybee_grasshopper_radiance/user_objects/HB Certain Illuminance.ghuser,sha256=IZmAbOdM7qReslHFWbypGLKwkIl-5iV26DoMo7ww61E,4249
|
|
104
104
|
honeybee_grasshopper_radiance/user_objects/HB Check Scene.ghuser,sha256=blTplKa5_OI4vDYQWJIMPsE4QuJ6CKBlxgTG17iJzSc,7092
|
|
105
105
|
honeybee_grasshopper_radiance/user_objects/HB Climatebased Sky.ghuser,sha256=OWUM0_XRW82Wt5HHVfcRwj8tgJoR6dRY1uv5BF9SgIA,4872
|
|
106
106
|
honeybee_grasshopper_radiance/user_objects/HB Cumulative Radiation.ghuser,sha256=9irfqfetmtqfd6mwYTLyJZz7Un6lG0xiCsiMbqwyKJk,6256
|
|
107
|
-
honeybee_grasshopper_radiance/user_objects/HB Custom Sky.ghuser,sha256=
|
|
107
|
+
honeybee_grasshopper_radiance/user_objects/HB Custom Sky.ghuser,sha256=_kXGeWWjLBmVoFldDa8vF737O8MM1zQltZZDQM6ET1o,5389
|
|
108
108
|
honeybee_grasshopper_radiance/user_objects/HB Daylight Control Schedule.ghuser,sha256=FlvPQ0LH0twhDAr268qLHYBIReZG9z0Dp28qebRlQP8,7507
|
|
109
109
|
honeybee_grasshopper_radiance/user_objects/HB Daylight Factor.ghuser,sha256=c26UIxKEZt8agLAhaEp6W056TMDEW4zlrBEYY3wcZos,5506
|
|
110
110
|
honeybee_grasshopper_radiance/user_objects/HB Deconstruct Modifier.ghuser,sha256=DkkA_vcVEDwd32ompfTE-FU4Fm-qgYlSwa-KinLEYj8,3994
|
|
@@ -115,8 +115,8 @@ honeybee_grasshopper_radiance/user_objects/HB Direct Sun Hours.ghuser,sha256=OUK
|
|
|
115
115
|
honeybee_grasshopper_radiance/user_objects/HB Dynamic Aperture Group.ghuser,sha256=6ii_kO8LjVjSGSAp3GuE5Dvcj_ic4ULjNp-mJ5a5zcQ,5823
|
|
116
116
|
honeybee_grasshopper_radiance/user_objects/HB Dynamic Shade Group.ghuser,sha256=coAJq08NnAuefjF5iRZdHNpVY9d52GzioBx3SzVOVJA,4843
|
|
117
117
|
honeybee_grasshopper_radiance/user_objects/HB Dynamic State Geometry.ghuser,sha256=3kxqw-8GjBzYcCNBRT-w-RSA8oNUPr55s-4D8NUchUI,4183
|
|
118
|
-
honeybee_grasshopper_radiance/user_objects/HB Dynamic State.ghuser,sha256=
|
|
119
|
-
honeybee_grasshopper_radiance/user_objects/HB Exterior Modifier Subset.ghuser,sha256=
|
|
118
|
+
honeybee_grasshopper_radiance/user_objects/HB Dynamic State.ghuser,sha256=OYKiiXiEg_UYL-GPRVph5kBi12G9n2-lwQvsQathE-M,3482
|
|
119
|
+
honeybee_grasshopper_radiance/user_objects/HB Exterior Modifier Subset.ghuser,sha256=y-iXZZujXwbZF7o-rodlXuSUNyIlQuDcp2edaA0Ebqc,4018
|
|
120
120
|
honeybee_grasshopper_radiance/user_objects/HB Extract HDR.ghuser,sha256=VSLQw8UZfhB4n1CMkbWZ0joTjlEBd2Jzf0nH7TG4fdA,7057
|
|
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=9IKwP31cq8VjKDbX3dc217tsdY6UTzNTEze51l8veGY,9381
|
|
@@ -127,13 +127,13 @@ honeybee_grasshopper_radiance/user_objects/HB Glass Modifier 3.ghuser,sha256=X-q
|
|
|
127
127
|
honeybee_grasshopper_radiance/user_objects/HB Glass Modifier.ghuser,sha256=KKDAEIUTHIhiJL_w3KwZGvbEm0vQlQImwQi1om5smFc,4127
|
|
128
128
|
honeybee_grasshopper_radiance/user_objects/HB HDR to GIF.ghuser,sha256=4A5qm7Yv1tnPN14LYcJBm5XtK7tZg__E80-EvCnYppQ,6378
|
|
129
129
|
honeybee_grasshopper_radiance/user_objects/HB Imageless Annual Glare.ghuser,sha256=Hq7Zl4567x0E6h4EraGdZQqk9jf1vXIdoqjS3jlqQo0,7148
|
|
130
|
-
honeybee_grasshopper_radiance/user_objects/HB Interior Modifier Subset.ghuser,sha256=
|
|
130
|
+
honeybee_grasshopper_radiance/user_objects/HB Interior Modifier Subset.ghuser,sha256=g2dJk40GaaF2PRwItmlTaLrzCKP2oJ0c-aCfjy5n46U,4264
|
|
131
131
|
honeybee_grasshopper_radiance/user_objects/HB Metal Modifier 3.ghuser,sha256=bfW5McsOaFP0vrNqVph4QmxpIsLh1mUvfqCyMU78SJk,5352
|
|
132
132
|
honeybee_grasshopper_radiance/user_objects/HB Metal Modifier.ghuser,sha256=anJx6RRd_Bf2kWFDXZOoCZS7x0ejnQq9A5QXoxY3kzQ,4900
|
|
133
133
|
honeybee_grasshopper_radiance/user_objects/HB Mirror Modifier 3.ghuser,sha256=uFt9MkUpByiOU4Zj2Qmh0xQMeWBSdpu2Zzl93KsPVDM,4627
|
|
134
134
|
honeybee_grasshopper_radiance/user_objects/HB Mirror Modifier.ghuser,sha256=6gy2W0sUHDN6oNaEtoyoAvVopkTx7lmBQNkylJi01hc,3874
|
|
135
135
|
honeybee_grasshopper_radiance/user_objects/HB Model to Rad Folder.ghuser,sha256=nx53Gli_TdBEuCxB8xklDUCdulMFr-U6DfbYGceJDTk,6494
|
|
136
|
-
honeybee_grasshopper_radiance/user_objects/HB ModifierSet.ghuser,sha256=
|
|
136
|
+
honeybee_grasshopper_radiance/user_objects/HB ModifierSet.ghuser,sha256=ufR98PYsSUFtj3lo1RfPgLkKsas7QyD2nIjPrwiph2Y,5744
|
|
137
137
|
honeybee_grasshopper_radiance/user_objects/HB Opaque Modifier 3.ghuser,sha256=DbiSRUtowUC8IgBsUBqRvvdoE61M44rgt4DHQYPQ5ng,5321
|
|
138
138
|
honeybee_grasshopper_radiance/user_objects/HB Opaque Modifier.ghuser,sha256=C0YeAQvkxiKJheVZS4l5Cacm-16KJjfup_06moXPOtA,4733
|
|
139
139
|
honeybee_grasshopper_radiance/user_objects/HB Point-In-Time Grid-Based.ghuser,sha256=RQwbLP1M_IJLjzS1fxVgWGS9KtONEI1MP1Um26AfQEE,5683
|
|
@@ -142,20 +142,20 @@ honeybee_grasshopper_radiance/user_objects/HB Radial Grid from Rooms.ghuser,sha2
|
|
|
142
142
|
honeybee_grasshopper_radiance/user_objects/HB Radial Sensor Grid.ghuser,sha256=4h4l7UvqDNfqazaAYIeVFt2BevYNNy6l6j1HYOsWZyY,6046
|
|
143
143
|
honeybee_grasshopper_radiance/user_objects/HB Radiance Parameter.ghuser,sha256=bu2_vQiQdOijuKGZxUqEO6gleONQ1udO0sUjY9BeKlI,6842
|
|
144
144
|
honeybee_grasshopper_radiance/user_objects/HB Room Radiance Attributes.ghuser,sha256=XCpBEQfsbzyTlg6vcVcbBbdISJDXcFPV1ulRQjNBhzc,2789
|
|
145
|
-
honeybee_grasshopper_radiance/user_objects/HB Search
|
|
146
|
-
honeybee_grasshopper_radiance/user_objects/HB Search
|
|
145
|
+
honeybee_grasshopper_radiance/user_objects/HB Search Modifier Sets.ghuser,sha256=5IkvyYCKFOcBtriwU3pdRIUKm8m0Uqle-KVoZEde2Jo,4284
|
|
146
|
+
honeybee_grasshopper_radiance/user_objects/HB Search Modifiers.ghuser,sha256=gKp5aNjSNw6QJrYoIqmH6ADwgM3jL97J6Fnn9CkJOcw,4253
|
|
147
147
|
honeybee_grasshopper_radiance/user_objects/HB Section Plane View.ghuser,sha256=vzGZuKRAg8HglnJ8aez-GnJZ_IvDTLx96gi-7ZCCYME,4348
|
|
148
148
|
honeybee_grasshopper_radiance/user_objects/HB Sensor Grid from Apertures.ghuser,sha256=iRDwXWCp1MvBaYoKRLgp2eXuRqI_1mkHUw9Vf0At-ac,5933
|
|
149
149
|
honeybee_grasshopper_radiance/user_objects/HB Sensor Grid from Faces.ghuser,sha256=qnBWavvB4nlyx0Lvxd-1VLd_A9EUevDNpbbdmcVVudU,6162
|
|
150
150
|
honeybee_grasshopper_radiance/user_objects/HB Sensor Grid from Rooms.ghuser,sha256=XQnXeVWnMmioV8tfCv13lP6ILG_P5WYWr10mvRDrScQ,6217
|
|
151
151
|
honeybee_grasshopper_radiance/user_objects/HB Sensor Grid.ghuser,sha256=FVgR3rGXU6tt7MTwKAbmkgbhEjN6Ie2BoEVYxX7N3Nk,5583
|
|
152
|
-
honeybee_grasshopper_radiance/user_objects/HB Shade Modifier Subset.ghuser,sha256=
|
|
152
|
+
honeybee_grasshopper_radiance/user_objects/HB Shade Modifier Subset.ghuser,sha256=0sse541Q3AFUvLm-QUV9qXvp9p-lHXpkSRLYOX22xJw,4518
|
|
153
153
|
honeybee_grasshopper_radiance/user_objects/HB Sky View.ghuser,sha256=mYDzfSF2oTrLG5cFndtWm81JRMuwDNhlQ3aXVVXX830,6026
|
|
154
154
|
honeybee_grasshopper_radiance/user_objects/HB Spatial Daylight Autonomy.ghuser,sha256=Dkbe58SGAqe5xkqeJbtgehYR2AdLzRJNZDjA52scdxU,6040
|
|
155
|
-
honeybee_grasshopper_radiance/user_objects/HB Subface Modifier Subset.ghuser,sha256=
|
|
155
|
+
honeybee_grasshopper_radiance/user_objects/HB Subface Modifier Subset.ghuser,sha256=9PyGmuN8XXMSmIdK4K8FWAcTOUraPEH5AZKK2-2VWEw,4955
|
|
156
156
|
honeybee_grasshopper_radiance/user_objects/HB Translucent Modifier 3.ghuser,sha256=mOVR8RIXdqI7ErRfMHOoBaxZTs9VNPKuj2jAvgcN0OU,5626
|
|
157
157
|
honeybee_grasshopper_radiance/user_objects/HB Translucent Modifier.ghuser,sha256=2t9sA7glkPdZeaUU1m4FNgV3oN9ODvqbycASurJTxJ0,5198
|
|
158
|
-
honeybee_grasshopper_radiance/user_objects/HB View from Viewport.ghuser,sha256=
|
|
158
|
+
honeybee_grasshopper_radiance/user_objects/HB View from Viewport.ghuser,sha256=spKUG56DzvwceiMP_zGsEnqas2LHbaIDp8GcVe2Eoec,5143
|
|
159
159
|
honeybee_grasshopper_radiance/user_objects/HB View.ghuser,sha256=UhaMaZ3m1C4qrtwWN6uAdD9UmB2L6UFGVQHfD09kgpM,4780
|
|
160
160
|
honeybee_grasshopper_radiance/user_objects/HB Visualize Sky.ghuser,sha256=4JyFiyP6Bm2iRSQzq631LSMqjiTtj1HJcfszL89KimM,6252
|
|
161
161
|
honeybee_grasshopper_radiance/user_objects/HB Wea From Clear Sky.ghuser,sha256=iR_HBHyJOWwU7Ci8xELmZkOJAzyxW3kI_Y9Psaah-84,5293
|
|
@@ -163,8 +163,8 @@ honeybee_grasshopper_radiance/user_objects/HB Wea From EPW.ghuser,sha256=N0IKgK5
|
|
|
163
163
|
honeybee_grasshopper_radiance/user_objects/HB Wea From Tau Clear Sky.ghuser,sha256=INifXyb4750P171rAbv6xsjkb2VcImZQZUjr-jhwT0E,5419
|
|
164
164
|
honeybee_grasshopper_radiance/user_objects/HB Wea from Zhang-Huang.ghuser,sha256=NbFQ6EIjfCBjEC3S-KzI2k-_MrhIeQqw3ZRTlh4s2QY,4678
|
|
165
165
|
honeybee_grasshopper_radiance/user_objects/__init__.py,sha256=7BOscRVupILqwFUBWP6nAsMNgNN8lXQPsQ_zYUvGEr8,50
|
|
166
|
-
honeybee_grasshopper_radiance-1.33.
|
|
167
|
-
honeybee_grasshopper_radiance-1.33.
|
|
168
|
-
honeybee_grasshopper_radiance-1.33.
|
|
169
|
-
honeybee_grasshopper_radiance-1.33.
|
|
170
|
-
honeybee_grasshopper_radiance-1.33.
|
|
166
|
+
honeybee_grasshopper_radiance-1.33.3.dist-info/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
|
|
167
|
+
honeybee_grasshopper_radiance-1.33.3.dist-info/METADATA,sha256=xv6myGjmYZ_ePsznpEBePiK9eD3u50JT4eeyfNRH30E,2767
|
|
168
|
+
honeybee_grasshopper_radiance-1.33.3.dist-info/WHEEL,sha256=unfA4MOaH0icIyIA5oH6E2sn2Hq5zKtLlHsWapZGwes,110
|
|
169
|
+
honeybee_grasshopper_radiance-1.33.3.dist-info/top_level.txt,sha256=BBzJ4nJKMDfzWMqymIH91kdsQlHSptnGHSk8i6_KZ_4,30
|
|
170
|
+
honeybee_grasshopper_radiance-1.33.3.dist-info/RECORD,,
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|