You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is an issue where writing a .stat file to a temporary location doesn't work in all circumstances because the save location is relative to Dir.pwd, which is dependent on where the Ruby process is started from. Instead, use Ruby's built-in Tempfile to write the .stat file, read it, then close the Tempfile (which deletes it).
The text was updated successfully, but these errors were encountered:
The weather module refactor moved this file around. The Dir.pwd is now here. @asparke2 thoughts on just writing it to the weather data directory as part of standards? I'm not sure temp file will work for the .epw file, since E+ needs it for the simulation.
There is an issue where writing a .stat file to a temporary location doesn't work in all circumstances because the save location is relative to
Dir.pwd
, which is dependent on where the Ruby process is started from. Instead, use Ruby's built-in Tempfile to write the .stat file, read it, then close the Tempfile (which deletes it).The text was updated successfully, but these errors were encountered: