honeybee-radiance-postprocess 0.4.581__py3-none-any.whl → 0.4.583__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_radiance_postprocess/cli/postprocess.py +6 -6
- honeybee_radiance_postprocess/results/results.py +5 -5
- {honeybee_radiance_postprocess-0.4.581.dist-info → honeybee_radiance_postprocess-0.4.583.dist-info}/METADATA +2 -2
- {honeybee_radiance_postprocess-0.4.581.dist-info → honeybee_radiance_postprocess-0.4.583.dist-info}/RECORD +8 -8
- {honeybee_radiance_postprocess-0.4.581.dist-info → honeybee_radiance_postprocess-0.4.583.dist-info}/WHEEL +0 -0
- {honeybee_radiance_postprocess-0.4.581.dist-info → honeybee_radiance_postprocess-0.4.583.dist-info}/entry_points.txt +0 -0
- {honeybee_radiance_postprocess-0.4.581.dist-info → honeybee_radiance_postprocess-0.4.583.dist-info}/licenses/LICENSE +0 -0
- {honeybee_radiance_postprocess-0.4.581.dist-info → honeybee_radiance_postprocess-0.4.583.dist-info}/top_level.txt +0 -0
|
@@ -505,7 +505,7 @@ def annual_to_data(
|
|
|
505
505
|
sys.exit(0)
|
|
506
506
|
|
|
507
507
|
|
|
508
|
-
@post_process.command('annual-
|
|
508
|
+
@post_process.command('annual-statistics')
|
|
509
509
|
@click.argument(
|
|
510
510
|
'folder',
|
|
511
511
|
type=click.Path(exists=True, file_okay=False, dir_okay=True, resolve_path=True)
|
|
@@ -536,12 +536,12 @@ def annual_to_data(
|
|
|
536
536
|
|
|
537
537
|
@click.option(
|
|
538
538
|
'--sub-folder', '-sf', help='Optional relative path for subfolder to write output '
|
|
539
|
-
'
|
|
539
|
+
'statistics files.', default='statistics'
|
|
540
540
|
)
|
|
541
|
-
def
|
|
541
|
+
def annual_statistics(
|
|
542
542
|
folder, hoys_file, states, grids_filter, total, sensor, sub_folder
|
|
543
543
|
):
|
|
544
|
-
"""Get annual
|
|
544
|
+
"""Get annual statistics (average, median, minimum, maximum, cumulative).
|
|
545
545
|
|
|
546
546
|
\b
|
|
547
547
|
Args:
|
|
@@ -565,11 +565,11 @@ def annual_summary(
|
|
|
565
565
|
axis = 1 if sensor is True else 0
|
|
566
566
|
|
|
567
567
|
results = AnnualDaylight(folder)
|
|
568
|
-
results.
|
|
568
|
+
results.annual_statistics_to_folder(
|
|
569
569
|
sub_folder, hoys=hoys, states=states, grids_filter=grids_filter,
|
|
570
570
|
res_type=res_type, axis=axis)
|
|
571
571
|
except Exception:
|
|
572
|
-
_logger.exception('Failed to calculate annual
|
|
572
|
+
_logger.exception('Failed to calculate annual statistics.')
|
|
573
573
|
sys.exit(1)
|
|
574
574
|
else:
|
|
575
575
|
sys.exit(0)
|
|
@@ -797,10 +797,10 @@ class Results(_ResultsFolder):
|
|
|
797
797
|
info_file = metric_folder.joinpath('grids_info.json')
|
|
798
798
|
info_file.write_text(json.dumps(grids_info))
|
|
799
799
|
|
|
800
|
-
def
|
|
800
|
+
def annual_statistics(
|
|
801
801
|
self, hoys: list = None, states: DynamicSchedule = None, grids_filter: str = '*',
|
|
802
802
|
res_type: str = 'total', axis: int = 1):
|
|
803
|
-
"""Compute annual
|
|
803
|
+
"""Compute annual statistics (average, median, minimum, maximum,
|
|
804
804
|
cumulative) for each sensor or timestep.
|
|
805
805
|
|
|
806
806
|
If hoys is left as None, the average will be computed for all study hours,
|
|
@@ -926,10 +926,10 @@ class Results(_ResultsFolder):
|
|
|
926
926
|
return (average_values, median_values, minimum_values, maximum_values,
|
|
927
927
|
cumulative_values, grids_info)
|
|
928
928
|
|
|
929
|
-
def
|
|
929
|
+
def annual_statistics_to_folder(
|
|
930
930
|
self, target_folder: str, hoys: list = None, states: DynamicSchedule = None,
|
|
931
931
|
grids_filter: str = '*', res_type: str = 'total', axis: int = 1):
|
|
932
|
-
"""Compute
|
|
932
|
+
"""Compute summary statistics (average, median, minimum, maximum,
|
|
933
933
|
cumulative) for each sensor or timestep and write the values to a folder.
|
|
934
934
|
|
|
935
935
|
If hoys is left as None, the average will be computed for all study hours,
|
|
@@ -962,7 +962,7 @@ class Results(_ResultsFolder):
|
|
|
962
962
|
maximum_values,
|
|
963
963
|
cumulative_values,
|
|
964
964
|
grids_info
|
|
965
|
-
) = self.
|
|
965
|
+
) = self.annual_statistics(
|
|
966
966
|
hoys=hoys, states=states, grids_filter=grids_filter,
|
|
967
967
|
res_type=res_type, axis=axis
|
|
968
968
|
)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: honeybee-radiance-postprocess
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.583
|
|
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
|
|
@@ -16,7 +16,7 @@ Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
|
16
16
|
Classifier: Operating System :: OS Independent
|
|
17
17
|
Description-Content-Type: text/markdown
|
|
18
18
|
License-File: LICENSE
|
|
19
|
-
Requires-Dist: honeybee-radiance==1.66.
|
|
19
|
+
Requires-Dist: honeybee-radiance==1.66.215
|
|
20
20
|
Requires-Dist: numpy<2.0.0
|
|
21
21
|
Dynamic: author
|
|
22
22
|
Dynamic: author-email
|
|
@@ -23,7 +23,7 @@ honeybee_radiance_postprocess/cli/grid.py,sha256=IMjfyw-XPaoSu550T_BuulRSawla8kY
|
|
|
23
23
|
honeybee_radiance_postprocess/cli/leed.py,sha256=vup_tVcSnSO5R7U_WPVDAhtSSRrPzTUgV4j9lyxvxEk,5546
|
|
24
24
|
honeybee_radiance_postprocess/cli/merge.py,sha256=NgQ5RM1-GrJQs_25IPzBvQ5PAn6oTKiB_N9SeHBxgCA,5840
|
|
25
25
|
honeybee_radiance_postprocess/cli/mtxop.py,sha256=pbQsc4EnzsRStBX1-KcgIKmuTlVYiG1IyNjiqbwS2V0,5103
|
|
26
|
-
honeybee_radiance_postprocess/cli/postprocess.py,sha256=
|
|
26
|
+
honeybee_radiance_postprocess/cli/postprocess.py,sha256=6dSFievLH2wHNOyuTU7iNZXbmsX7ZeiHVct9S9NSY7M,41901
|
|
27
27
|
honeybee_radiance_postprocess/cli/schedule.py,sha256=6uIy98Co4zm-ZRcELo4Lfx_aN3lNiqPe-BSimXwt1F8,3877
|
|
28
28
|
honeybee_radiance_postprocess/cli/translate.py,sha256=W3G5aBN7pGx5sX3VoV1xZM6HL06Fw95iJb7vV-r6u7w,7396
|
|
29
29
|
honeybee_radiance_postprocess/cli/two_phase.py,sha256=njkWBRxOqdRSp0JxLloWTGWmKruyONetgnIbjXhrrXw,8393
|
|
@@ -39,12 +39,12 @@ honeybee_radiance_postprocess/leed/leed_schedule.py,sha256=8NUISE6RbENK1IgMA5cC2
|
|
|
39
39
|
honeybee_radiance_postprocess/results/__init__.py,sha256=1agBQbfT4Tf8KqSZzlfKYX8MeZryY4jJ1KB4HWqaDDk,182
|
|
40
40
|
honeybee_radiance_postprocess/results/annual_daylight.py,sha256=ulv8kZvS6UkhCjaXSJKXQeVhUReRdx4M0tGvy7rA8CI,34586
|
|
41
41
|
honeybee_radiance_postprocess/results/annual_irradiance.py,sha256=nA1VubesNDtRxgXpHSZxFMV67XxUntIHIu5H9qtDBSk,8483
|
|
42
|
-
honeybee_radiance_postprocess/results/results.py,sha256=
|
|
42
|
+
honeybee_radiance_postprocess/results/results.py,sha256=CZZeyBTLVQt69qGdiePQsBIi1ppwIpqkp9lUpXv9orM,66846
|
|
43
43
|
honeybee_radiance_postprocess/well/__init__.py,sha256=kQXElEqFnLGNnrMSpA51XDHoqBup849FHeAqWASIy6w,45
|
|
44
44
|
honeybee_radiance_postprocess/well/well.py,sha256=FzxaLo3IdlvFZZ1UtblBk9zsKl_EfsCKIcAgfucq-nE,24762
|
|
45
|
-
honeybee_radiance_postprocess-0.4.
|
|
46
|
-
honeybee_radiance_postprocess-0.4.
|
|
47
|
-
honeybee_radiance_postprocess-0.4.
|
|
48
|
-
honeybee_radiance_postprocess-0.4.
|
|
49
|
-
honeybee_radiance_postprocess-0.4.
|
|
50
|
-
honeybee_radiance_postprocess-0.4.
|
|
45
|
+
honeybee_radiance_postprocess-0.4.583.dist-info/licenses/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
|
|
46
|
+
honeybee_radiance_postprocess-0.4.583.dist-info/METADATA,sha256=bscpX9IcyVdMZ276TFOiI8VV9T7waH9WY8YCL6MiASE,2575
|
|
47
|
+
honeybee_radiance_postprocess-0.4.583.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
48
|
+
honeybee_radiance_postprocess-0.4.583.dist-info/entry_points.txt,sha256=gFtVPx6UItXt27GfEZZO00eOZChJJEL6JwGSAB_O3rs,96
|
|
49
|
+
honeybee_radiance_postprocess-0.4.583.dist-info/top_level.txt,sha256=4-sFbzy7ewP2EDqJV3jeFlAFx7SuxtoBBELWaKAnLdA,30
|
|
50
|
+
honeybee_radiance_postprocess-0.4.583.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|