rcddddddd commited on
Commit
85cbcc7
·
verified ·
1 Parent(s): b70aea8

Upload README_EXTRACT_DEPTH.txt with huggingface_hub

Browse files
Files changed (1) hide show
  1. README_EXTRACT_DEPTH.txt +32 -0
README_EXTRACT_DEPTH.txt ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Extract Depth-Only Archives
2
+
3
+ Archives were created from depth-only copies:
4
+ - ArkitScenes depth (lowres_depth) under ./arkitscenes/
5
+ - ScanNet++ depth (depth) under ./scannetpp/
6
+
7
+ ## Extract in the current directory
8
+ # ArkitScenes depth
9
+ cat arkitscenes_depth.tar.zst.* | zstd -d | tar -xf -
10
+ # ScanNet++ depth
11
+ cat scannetpp_depth.tar.zst.* | zstd -d | tar -xf -
12
+
13
+ ## Extract to a chosen location (e.g., /data/reason3r/depth_only/)
14
+ mkdir -p /data/reason3r/depth_only/
15
+ cat arkitscenes_depth.tar.zst.* | zstd -d | tar -xf - -C /data/reason3r/depth_only/
16
+ cat scannetpp_depth.tar.zst.* | zstd -d | tar -xf - -C /data/reason3r/depth_only/
17
+
18
+ ## Verify integrity without extracting
19
+ cat arkitscenes_depth.tar.zst.* | zstd -t
20
+ cat scannetpp_depth.tar.zst.* | zstd -t
21
+
22
+ ## List contents
23
+ cat arkitscenes_depth.tar.zst.* | zstd -d | tar -tf - | head -40
24
+ cat scannetpp_depth.tar.zst.* | zstd -d | tar -tf - | head -40
25
+
26
+ ## Transfer (rsync preserves chunking)
27
+ rsync -avhP arkitscenes_depth.tar.zst.* user@remote:/dest/
28
+ rsync -avhP scannetpp_depth.tar.zst.* user@remote:/dest/
29
+
30
+ # Notes
31
+ # - Chunk filenames end in .000, .001, .002, ...
32
+ # - Ensure all sequential chunks are present before extracting.