9 lines
258 B
Python
9 lines
258 B
Python
# coding: utf-8
|
|
|
|
from snapshotprocessor import SnapshotProcessor
|
|
|
|
|
|
def convert_to_hdf5(path, snap_num, path_out=".", filename=None, **kwargs):
|
|
snap = SnapshotProcessor(path=path, num=snap_num, path_out=path_out, **kwargs)
|
|
snap.convert_hdf5(filename)
|