diff --git a/mlair/helpers/helpers.py b/mlair/helpers/helpers.py index 499f8258a168851e74ca3eab0d0af5a11cb13bec..5ddaa3ee3fe505eeb7c8082274d9cd888cec720f 100644 --- a/mlair/helpers/helpers.py +++ b/mlair/helpers/helpers.py @@ -179,13 +179,3 @@ def convert2xrda(arr: Union[xr.DataArray, xr.Dataset, np.ndarray, int, float], kwargs.update({'dims': dims, 'coords': coords}) return xr.DataArray(arr, **kwargs) - - -def convert_size(size_bytes): - if size_bytes == 0: - return "0B" - size_name = ("B", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB") - i = int(math.floor(math.log(size_bytes, 1024))) - p = math.pow(1024, i) - s = round(size_bytes / p, 2) - return "%s %s" % (s, size_name[i])