Flatten data/readings/ → data/

Remove the intermediate readings/ subdirectory level — dataset naming
(synthetic_YYYYMMDD, manual_YYYYMMDD) already encodes what the data is.
Update all path references across scripts and docs accordingly.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Nathan Schneider
2026-03-20 17:46:23 -06:00
parent 1a80219a25
commit 60e83783ec
533 changed files with 97 additions and 97 deletions

View File

@@ -10,9 +10,9 @@ Null gradient values (e.g., shortform readings that skip non-key dimensions) are
written as empty cells so downstream analysis can treat them as NaN.
Usage:
python3 scripts/json_to_csv.py data/readings/manual_20260320/json/
python3 scripts/json_to_csv.py data/readings/manual_20260320/json/ -o data/readings/manual_20260320/readings.csv
python3 scripts/json_to_csv.py data/readings/manual_20260320/json/ --shortform-only
python3 scripts/json_to_csv.py data/manual_20260320/json/
python3 scripts/json_to_csv.py data/manual_20260320/json/ -o data/manual_20260320/readings.csv
python3 scripts/json_to_csv.py data/manual_20260320/json/ --shortform-only
"""
import argparse
@@ -100,9 +100,9 @@ def main():
formatter_class=argparse.RawDescriptionHelpFormatter,
epilog="""
Example usage:
python3 scripts/json_to_csv.py data/readings/manual_20260320/json/
python3 scripts/json_to_csv.py data/readings/manual_20260320/json/ --shortform-only
python3 scripts/json_to_csv.py data/readings/manual_20260320/json/ -o data/readings/manual_20260320/readings.csv
python3 scripts/json_to_csv.py data/manual_20260320/json/
python3 scripts/json_to_csv.py data/manual_20260320/json/ --shortform-only
python3 scripts/json_to_csv.py data/manual_20260320/json/ -o data/manual_20260320/readings.csv
"""
)
parser.add_argument('json_dir', help='Directory containing bicorder JSON reading files')