honeybee-radiance-postprocess 0.4.347__py2.py3-none-any.whl → 0.4.349__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.
@@ -164,13 +164,13 @@ class _ResultsFolder(object):
164
164
  grid_info['light_path'] = [['__static_apertures__']]
165
165
  light_paths = grid_info['light_path']
166
166
  for light_path in light_paths:
167
- light_path = light_path[0]
168
- if light_path in lp:
169
- continue
170
- if light_path == '__static_apertures__':
171
- lp.insert(0, light_path)
172
- else:
173
- lp.append(light_path)
167
+ for elem in light_path:
168
+ if elem in lp:
169
+ continue
170
+ if elem == '__static_apertures__':
171
+ lp.insert(0, elem)
172
+ else:
173
+ lp.append(elem)
174
174
  if not light_paths and '__static_apertures__' not in lp:
175
175
  lp.insert(0, '__static_apertures__')
176
176
 
@@ -1186,7 +1186,7 @@ class Results(_ResultsFolder):
1186
1186
  Returns:
1187
1187
  dict: A filtered states dictionary.
1188
1188
  """
1189
- light_paths = [lp[0] for lp in grid_info['light_path']]
1189
+ light_paths = [elem for lp in grid_info['light_path'] for elem in lp]
1190
1190
  if states:
1191
1191
  states = states.filter_by_identifiers(light_paths)
1192
1192
  else:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: honeybee-radiance-postprocess
3
- Version: 0.4.347
3
+ Version: 0.4.349
4
4
  Summary: Postprocessing of Radiance results and matrices
5
5
  Home-page: https://github.com/ladybug-tools/honeybee-radiance-postprocess
6
6
  Author: Ladybug Tools
@@ -13,7 +13,7 @@ Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
13
13
  Classifier: Operating System :: OS Independent
14
14
  Description-Content-Type: text/markdown
15
15
  License-File: LICENSE
16
- Requires-Dist: honeybee-radiance (==1.66.35)
16
+ Requires-Dist: honeybee-radiance (==1.66.36)
17
17
  Requires-Dist: numpy (>=1.21.6)
18
18
 
19
19
  [![Build Status](https://github.com/ladybug-tools/honeybee-radiance-postprocess/workflows/CI/badge.svg)](https://github.com/ladybug-tools/honeybee-radiance-postprocess/actions)
@@ -24,10 +24,10 @@ honeybee_radiance_postprocess/cli/util.py,sha256=Be9cGmYhcV2W37ma6SgQPCWCpWLLLlr
24
24
  honeybee_radiance_postprocess/results/__init__.py,sha256=1agBQbfT4Tf8KqSZzlfKYX8MeZryY4jJ1KB4HWqaDDk,182
25
25
  honeybee_radiance_postprocess/results/annual_daylight.py,sha256=o4Y5kbD3a4X4KRfsbOlWzgrnNKU365GcivM6qQGUGXU,31605
26
26
  honeybee_radiance_postprocess/results/annual_irradiance.py,sha256=5zwrr4MNeHUebbSRpSBbscPOZUs2AHmYCQfIIbdYImY,8298
27
- honeybee_radiance_postprocess/results/results.py,sha256=t9tr-WHt-XpALIwClLb-xOZcWUZthnvfGED5g3NGDu8,53589
28
- honeybee_radiance_postprocess-0.4.347.dist-info/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
29
- honeybee_radiance_postprocess-0.4.347.dist-info/METADATA,sha256=OgPet1MofaKPloEv0V4BLmLRvrikuEz-EXovdyCeqxo,2228
30
- honeybee_radiance_postprocess-0.4.347.dist-info/WHEEL,sha256=unfA4MOaH0icIyIA5oH6E2sn2Hq5zKtLlHsWapZGwes,110
31
- honeybee_radiance_postprocess-0.4.347.dist-info/entry_points.txt,sha256=gFtVPx6UItXt27GfEZZO00eOZChJJEL6JwGSAB_O3rs,96
32
- honeybee_radiance_postprocess-0.4.347.dist-info/top_level.txt,sha256=4-sFbzy7ewP2EDqJV3jeFlAFx7SuxtoBBELWaKAnLdA,30
33
- honeybee_radiance_postprocess-0.4.347.dist-info/RECORD,,
27
+ honeybee_radiance_postprocess/results/results.py,sha256=jkjsxTuvVfBus6tM2UjQE3ZKPooLInWEd2guqO61v9E,53600
28
+ honeybee_radiance_postprocess-0.4.349.dist-info/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
29
+ honeybee_radiance_postprocess-0.4.349.dist-info/METADATA,sha256=TVzG2vrcx1bzQfUG_R4x82MmiHwoA9Xp2_n9f1I6uq0,2228
30
+ honeybee_radiance_postprocess-0.4.349.dist-info/WHEEL,sha256=unfA4MOaH0icIyIA5oH6E2sn2Hq5zKtLlHsWapZGwes,110
31
+ honeybee_radiance_postprocess-0.4.349.dist-info/entry_points.txt,sha256=gFtVPx6UItXt27GfEZZO00eOZChJJEL6JwGSAB_O3rs,96
32
+ honeybee_radiance_postprocess-0.4.349.dist-info/top_level.txt,sha256=4-sFbzy7ewP2EDqJV3jeFlAFx7SuxtoBBELWaKAnLdA,30
33
+ honeybee_radiance_postprocess-0.4.349.dist-info/RECORD,,