psrc / urbansim2

3 stars 0 forks source link

Compress output file #66

Closed hanase closed 7 years ago

hanase commented 7 years ago

Figure out how to turn on compression when results are stored into hdf5 file. Currently the files are huge, since all simulation years are stored in one file.

billyc commented 7 years ago

The code is in write_tables() in orca/orca/orca.py:1835

I'll work on adding optional parameters.

hanase commented 7 years ago

Compression can be turned on using orca.run(..., compress=True). [e.g. in simulate.py] Thanks Billy!