Skip to content

Commit 8e8d891

Browse files
author
Brandon Kirkland
committed
Fix database storage layout depth in architecture docs
The tree was missing the {session_id} level between sessions/ and its children (runs/, solutions/, photoscans/). Also added per-object ID subdirectories ({run_id}/, {solution_id}/, {photoscan_id}/) to match the actual paths used in database.py. Refs #129, #338
1 parent 7a5177d commit 8e8d891

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

docs/architecture.rst

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -438,10 +438,14 @@ Storage Layout
438438
│ └── {subject_id}/
439439
│ ├── volumes/
440440
│ └── sessions/
441-
│ ├── runs/
442-
│ ├── solutions/
443-
│ ├── photoscans/
444-
│ └── photocollections/
441+
│ └── {session_id}/
442+
│ ├── runs/
443+
│ │ └── {run_id}/
444+
│ ├── solutions/
445+
│ │ └── {solution_id}/
446+
│ ├── photoscans/
447+
│ │ └── {photoscan_id}/
448+
│ └── photocollections/
445449
├── protocols/
446450
├── transducers/
447451
├── systems/

0 commit comments

Comments
 (0)