honeybee-grasshopper-radiance 1.30.4__py2.py3-none-any.whl → 1.30.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.
@@ -51,7 +51,7 @@ Model.
51
51
 
52
52
  ghenv.Component.Name = 'HB Automatic Aperture Group'
53
53
  ghenv.Component.NickName = 'AutoGroup'
54
- ghenv.Component.Message = '1.6.1'
54
+ ghenv.Component.Message = '1.6.2'
55
55
  ghenv.Component.Category = 'HB-Radiance'
56
56
  ghenv.Component.SubCategory = '0 :: Basic Properties'
57
57
  ghenv.Component.AdditionalHelpFromDocStrings = '2'
@@ -163,7 +163,7 @@ if all_required_inputs(ghenv.Component) and _run:
163
163
  # cluster apertures into groups
164
164
  if view_factor:
165
165
  ap_groups = cluster_view_factor(
166
- rmse, room_apertures, 0.001, room_based, vertical_tolerance)
166
+ rmse, room_apertures, apertures, 0.001, room_based, vertical_tolerance)
167
167
  else:
168
168
  ap_groups = cluster_orientation(
169
169
  room_apertures, apertures, room_based, vertical_tolerance
@@ -29,6 +29,9 @@ Convert a High Dynamic Range (HDR) image file into a falsecolor version of itsel
29
29
  The default is either 1 or 179 depending on whether the image is for
30
30
  radiance or irradiance to luminance or illuminance, respectively.
31
31
  contour_lines_: Set to True ro render the image with colored contour lines.
32
+ logarithmic_: Number of decades to use with a logarithmic legend scale.
33
+ Decades are the number of intervals of 10 below the maximum scale. If
34
+ unspecified, a linear scale is used.
32
35
  extrema_: Set to True to cause extrema points to be printed on the brightest
33
36
  and darkest pixels of the input picture.
34
37
  mask_: A boolen to note whether pixels with a value of zero should be masked in
@@ -49,7 +52,7 @@ Convert a High Dynamic Range (HDR) image file into a falsecolor version of itsel
49
52
 
50
53
  ghenv.Component.Name = 'HB False Color'
51
54
  ghenv.Component.NickName = 'FalseColor'
52
- ghenv.Component.Message = '1.6.0'
55
+ ghenv.Component.Message = '1.6.1'
53
56
  ghenv.Component.Category = 'HB-Radiance'
54
57
  ghenv.Component.SubCategory = '4 :: Results'
55
58
  ghenv.Component.AdditionalHelpFromDocStrings = '3'
@@ -185,6 +188,8 @@ if all_required_inputs(ghenv.Component):
185
188
  falsecolor.options.p = input_image
186
189
  if extrema_:
187
190
  falsecolor.options.e = True
191
+ if logarithmic_:
192
+ falsecolor.options.log = logarithmic_
188
193
  if legend_height_ is not None:
189
194
  falsecolor.options.lh = legend_height_
190
195
  if legend_width_ is not None:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: honeybee-grasshopper-radiance
3
- Version: 1.30.4
3
+ Version: 1.30.6
4
4
  Summary: Honeybee Radiance plugin for Grasshopper.
5
5
  Home-page: https://github.com/ladybug-tools/honeybee-grasshopper-radiance
6
6
  Author: Ladybug Tools
@@ -15,7 +15,7 @@ honeybee_grasshopper_radiance/src/HB Apply ModifierSet.py,sha256=kFnqU_1Ewwa-I4P
15
15
  honeybee_grasshopper_radiance/src/HB Apply Shade Modifier.py,sha256=M4a4SR-InA9WiVQPFwduGzObEz2AlnemMwDcXcWp2uo,4373
16
16
  honeybee_grasshopper_radiance/src/HB Apply Window Modifier.py,sha256=Y-Xf0bEKSh3mx7MgRwoYsolGMgG0DWOz3dz64EJ1Vkw,5185
17
17
  honeybee_grasshopper_radiance/src/HB Assign Grids and Views.py,sha256=cSDGBwv-wapvS2wRINIQB-5859_RE3SeGOVCfwMdkok,2159
18
- honeybee_grasshopper_radiance/src/HB Automatic Aperture Group.py,sha256=H4FX_3fKdyaV7tj5aMcDtxziI3uCs6C8mRYja3DQ_CQ,8202
18
+ honeybee_grasshopper_radiance/src/HB Automatic Aperture Group.py,sha256=PidTNQl1CGnPerCismHE-pY_cyzmE0CwAw2Mb55kUtU,8213
19
19
  honeybee_grasshopper_radiance/src/HB BSDF Modifier.py,sha256=PuNQKrKb7BM1noEr_7YxqfHuh0KU6xnHhYCj4YU0Pkc,3211
20
20
  honeybee_grasshopper_radiance/src/HB CIE Standard Sky.py,sha256=fYHbaE0-MEAtBIPPpSIaZ6RvrGDF1luvAf_MAh1BEoA,2845
21
21
  honeybee_grasshopper_radiance/src/HB Certain Illuminance.py,sha256=MvR-sO_hEYXNZDgjM3XGQKoqqVyUVCul_ZlQgTO4rek,1151
@@ -36,7 +36,7 @@ honeybee_grasshopper_radiance/src/HB Dynamic State Geometry.py,sha256=dBtpJsyVLa
36
36
  honeybee_grasshopper_radiance/src/HB Dynamic State.py,sha256=ASG5ifFG2cpwrTpUkaN86veY_oiAoH-Ba8QC4LBbZdc,1553
37
37
  honeybee_grasshopper_radiance/src/HB Exterior Modifier Subset.py,sha256=E-ulKy3cP5KYAdlTcpaZoYcBKEJBFMASiBzLIKtFSyQ,2321
38
38
  honeybee_grasshopper_radiance/src/HB Extract HDR.py,sha256=ER_2zJHF3QQBpxD9EsI1J9PHHNwLjm8CYEPDlzyFoYc,8811
39
- honeybee_grasshopper_radiance/src/HB False Color.py,sha256=1q-F0qAmHaGsYwtIW8RFEziwGmrGh169MG6PNpGOXKg,9687
39
+ honeybee_grasshopper_radiance/src/HB False Color.py,sha256=89yBe-z3hSFKSW8fSNPxY_NNZEr83bx9vKlb4uZRy44,9965
40
40
  honeybee_grasshopper_radiance/src/HB Get Grids and Views.py,sha256=vhFEqrzXLw-uoSTwKEm2Co1c09zkgwMF_679_GtSfkw,2474
41
41
  honeybee_grasshopper_radiance/src/HB Glare Postprocess.py,sha256=e8vfERB60gO8m-75mri_8aE1_cx7QawdkyYzwneIKow,10101
42
42
  honeybee_grasshopper_radiance/src/HB Glass Modifier 3.py,sha256=pXWS1ogRNv430Sl56xd4kBs-5rjI61FTtq3pqENoFBU,2447
@@ -94,7 +94,7 @@ honeybee_grasshopper_radiance/user_objects/HB Apply ModifierSet.ghuser,sha256=rP
94
94
  honeybee_grasshopper_radiance/user_objects/HB Apply Shade Modifier.ghuser,sha256=Vwn9L51PGPPN7fVemcEz4OFEeJs_P2tyZoqzGm3b_vU,4756
95
95
  honeybee_grasshopper_radiance/user_objects/HB Apply Window Modifier.ghuser,sha256=T6sz2rD4v5-AOclQ2RLrDU5dHLA5orrVUep7b_7iEUc,5084
96
96
  honeybee_grasshopper_radiance/user_objects/HB Assign Grids and Views.ghuser,sha256=2PmE78jgAKVRAoki0GXse4vnbAZHjKyHgPK53LGg2dA,4920
97
- honeybee_grasshopper_radiance/user_objects/HB Automatic Aperture Group.ghuser,sha256=ogF7Jl5EZ-7I1KpkH_T7_1ILQjkk7kmatRQsjxQKOXE,6953
97
+ honeybee_grasshopper_radiance/user_objects/HB Automatic Aperture Group.ghuser,sha256=lvO90A6TNFQGPPwj7oulOHTY0tSYmJODghQ0ztI94OA,6964
98
98
  honeybee_grasshopper_radiance/user_objects/HB BSDF Modifier.ghuser,sha256=L6zl4Zoyxjyvq45Y3QPAplBZsY0cVmxB4uf2lDAqo2o,5317
99
99
  honeybee_grasshopper_radiance/user_objects/HB CIE Standard Sky.ghuser,sha256=CdmDbqHiESk7qiS1ONps0EE1_wL2UWXjXRtQwQFNrB8,5334
100
100
  honeybee_grasshopper_radiance/user_objects/HB Certain Illuminance.ghuser,sha256=tGKJ52Zmk6Bf2YBEE0SJsCDnS0bGdIlfFpV7fdgAw4I,4170
@@ -116,7 +116,7 @@ honeybee_grasshopper_radiance/user_objects/HB Dynamic State.ghuser,sha256=s1hcAv
116
116
  honeybee_grasshopper_radiance/user_objects/HB Exterior Modifier Subset.ghuser,sha256=ekBR6F3jpzjNpzSLdpzBSiy9eRjLwgejuJffCpSeec8,3936
117
117
  honeybee_grasshopper_radiance/user_objects/HB Extract HDR.ghuser,sha256=VXkEM3onuOXXcznZXQp7BXyOHlcDfwrRmt_5QlsnTpQ,6952
118
118
  honeybee_grasshopper_radiance/user_objects/HB Face Radiance Attributes.ghuser,sha256=yU2xi4DpW03dN22Fp1uLcSx0cW9KDZ2nxa78WY9F2eg,2444
119
- honeybee_grasshopper_radiance/user_objects/HB False Color.ghuser,sha256=R85kU1wLNZLDmaGRFUoCgMx7UCzOniYfXtOh5Ws4IMI,9160
119
+ honeybee_grasshopper_radiance/user_objects/HB False Color.ghuser,sha256=GL87HteJsmiEv17XUqc-M5Q088ZkOd-q0uSi4DKnXT0,9316
120
120
  honeybee_grasshopper_radiance/user_objects/HB Get Grids and Views.ghuser,sha256=8MhRtdIkjfbcQQvzYAeCuYIYk4sEmV-YVWho6Kg-mpw,5029
121
121
  honeybee_grasshopper_radiance/user_objects/HB Glare Postprocess.ghuser,sha256=D6I_qiBVrsHvtcwIVMc1JA-1WhgDfyjPAO8KpCgg__M,7106
122
122
  honeybee_grasshopper_radiance/user_objects/HB Glass Modifier 3.ghuser,sha256=7vGvlz9JIcwlDmivCwQUZfg8y-bplfEaKJuWEkX-tho,4774
@@ -159,8 +159,8 @@ honeybee_grasshopper_radiance/user_objects/HB Wea From EPW.ghuser,sha256=4u5GC7_
159
159
  honeybee_grasshopper_radiance/user_objects/HB Wea From Tau Clear Sky.ghuser,sha256=CygIse9NyttX970ONz-wNxpUd_CXqPdBcCEFvym2yf8,5418
160
160
  honeybee_grasshopper_radiance/user_objects/HB Wea from Zhang-Huang.ghuser,sha256=tUGGqqJhF5teKNEisvtom24Sko-a1zD7bfM4j0JcDww,4680
161
161
  honeybee_grasshopper_radiance/user_objects/__init__.py,sha256=7BOscRVupILqwFUBWP6nAsMNgNN8lXQPsQ_zYUvGEr8,50
162
- honeybee_grasshopper_radiance-1.30.4.dist-info/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
163
- honeybee_grasshopper_radiance-1.30.4.dist-info/METADATA,sha256=6qA8hOi8jGReh2MJgyg7YFWv1LPDqDux5GhbHnJ9y4o,2767
164
- honeybee_grasshopper_radiance-1.30.4.dist-info/WHEEL,sha256=unfA4MOaH0icIyIA5oH6E2sn2Hq5zKtLlHsWapZGwes,110
165
- honeybee_grasshopper_radiance-1.30.4.dist-info/top_level.txt,sha256=BBzJ4nJKMDfzWMqymIH91kdsQlHSptnGHSk8i6_KZ_4,30
166
- honeybee_grasshopper_radiance-1.30.4.dist-info/RECORD,,
162
+ honeybee_grasshopper_radiance-1.30.6.dist-info/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
163
+ honeybee_grasshopper_radiance-1.30.6.dist-info/METADATA,sha256=EC4ClFJ8JgmHft6EeLHgogd-cWHWzLzml-wzQch1VBo,2767
164
+ honeybee_grasshopper_radiance-1.30.6.dist-info/WHEEL,sha256=unfA4MOaH0icIyIA5oH6E2sn2Hq5zKtLlHsWapZGwes,110
165
+ honeybee_grasshopper_radiance-1.30.6.dist-info/top_level.txt,sha256=BBzJ4nJKMDfzWMqymIH91kdsQlHSptnGHSk8i6_KZ_4,30
166
+ honeybee_grasshopper_radiance-1.30.6.dist-info/RECORD,,