jacoblin commited on
Commit
ef6b863
·
verified ·
1 Parent(s): 768b9af

Update default output dir

Browse files
Files changed (1) hide show
  1. unpack.py +6 -6
unpack.py CHANGED
@@ -9,11 +9,11 @@ Usage:
9
  python unpack.py [--output /path/to/output] [--subset real_world|synthetic] [--jobs N]
10
 
11
  Examples:
12
- # Extract everything to ./Cloud4D
13
  python unpack.py
14
 
15
  # Extract to a specific location
16
- python unpack.py --output /data/Cloud4D
17
 
18
  # Extract only real_world data
19
  python unpack.py --subset real_world
@@ -87,15 +87,15 @@ def main():
87
  formatter_class=argparse.RawDescriptionHelpFormatter,
88
  epilog="""
89
  Examples:
90
- python unpack.py # Extract all to ./Cloud4D
91
- python unpack.py --output /data/Cloud4D # Extract to specific location
92
  python unpack.py --subset real_world # Extract only real_world
93
  python unpack.py --filter 20230705 # Extract matching archives
94
  python unpack.py --jobs 4 # Parallel extraction
95
  """
96
  )
97
- parser.add_argument('--output', '-o', type=Path, default=Path('./Cloud4D'),
98
- help='Output directory (default: ./Cloud4D)')
99
  parser.add_argument('--subset', choices=['real_world', 'synthetic'],
100
  help='Extract only a specific subset')
101
  parser.add_argument('--filter', type=str,
 
9
  python unpack.py [--output /path/to/output] [--subset real_world|synthetic] [--jobs N]
10
 
11
  Examples:
12
+ # Extract everything to ./
13
  python unpack.py
14
 
15
  # Extract to a specific location
16
+ python unpack.py --output /data/cloud4d
17
 
18
  # Extract only real_world data
19
  python unpack.py --subset real_world
 
87
  formatter_class=argparse.RawDescriptionHelpFormatter,
88
  epilog="""
89
  Examples:
90
+ python unpack.py # Extract all to ./
91
+ python unpack.py --output /data/cloud4D # Extract to specific location
92
  python unpack.py --subset real_world # Extract only real_world
93
  python unpack.py --filter 20230705 # Extract matching archives
94
  python unpack.py --jobs 4 # Parallel extraction
95
  """
96
  )
97
+ parser.add_argument('--output', '-o', type=Path, default=Path('./'),
98
+ help='Output directory (default: ./)')
99
  parser.add_argument('--subset', choices=['real_world', 'synthetic'],
100
  help='Extract only a specific subset')
101
  parser.add_argument('--filter', type=str,