-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadd_dataset_from_raw.py
57 lines (47 loc) · 1.53 KB
/
add_dataset_from_raw.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import datetime
import hashlib
import json
import pathlib
import shutil
import subprocess
import sys
import generate_preview
if __name__ == "__main__":
if len(sys.argv) != 7:
print(f"Usage: {sys.argv[0]} file.raw name width height depth dtype")
sys.exit()
raw_file = sys.argv[1]
name = sys.argv[2]
width = int(sys.argv[3])
height = int(sys.argv[4])
depth = int(sys.argv[5])
dtype = sys.argv[6]
config = json.load(open("config.json"))
# create directory and copy file
folder = pathlib.Path(f"static/open-scivis-datasets/{name}")
assert (
not folder.exists()
), f"Folder {folder} already exists, delete it manually before running this script"
folder.mkdir(parents=True, exist_ok=True)
file = folder / f"{name}_{width}x{height}x{depth}_{dtype}.raw"
shutil.copy(raw_file, file)
# compute checksum
with open(file, "rb") as f:
digest = hashlib.file_digest(f, "sha512")
sha512sum = digest.hexdigest()
metadata = {
"name": name.replace("_", " ").title(),
"type": dtype,
"size": [width, height, depth],
"spacing": [1, 1, 1],
"sha512sum": sha512sum,
"description": "",
"acknowledgement": "",
"url": f'{config["url"]}/{name}/{file.name}',
"date_added": datetime.date.today().isoformat(),
"category": "Unknown",
"bibtex": None,
}
with open(folder / f"{name}.json", "w") as f:
json.dump(metadata, f, indent=4)
generate_preview.generate_preview(file, folder)