Hi, I'm trying to use esoreader (https://github.com/architecture-building-systems/esoreader) with python.
I have an eso file with results with TimeStep and Hourly frequency.
If I type (where filenameESO is the path to my .eso file):
eso = esoreader.read_from_path(filenameESO)
df = eso.to_frame('heating')
I get a dataframe with 4 columns. Otherwise, if I type:
var=eso.find_variable('heting')
I get a list of 7 tuple (7 is actually the right number of variables that contain the string 'heating').
I have two questions: 1) Why do I get different results with 'to_frame' and 'find_variable' methods? 2) How can I get both TimeStep and Hourly results?
I would like to filter my results with a key word and with a frequency.
Thank you!