Skip to content

Commit

Permalink
Merge pull request #3378 from architecture-building-systems/fix-senso…
Browse files Browse the repository at this point in the history
…r-data-orientation

Change sensor value orientation before saving
  • Loading branch information
ShiZhongming committed Sep 7, 2023
2 parents f361de4 + b647c42 commit bcae8b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cea/resources/radiation/daysim.py
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ def isolation_daysim(chunk_n, cea_daysim, building_names, locator, radiance_para


def write_sensor_results(sensor_data_path, sensor_values):
feather.write_feather(sensor_values, sensor_data_path, compression="zstd")
feather.write_feather(sensor_values.T, sensor_data_path, compression="zstd")


def write_aggregated_results(building_name, sensor_values, locator, date):
Expand Down

0 comments on commit bcae8b4

Please sign in to comment.