This high-level helper combines the file discovery tibble returned by [import_tracks()] with optional metadata from an experiment manifest, reads each track file using [read_tracks()], and merges the results into a single `Tracks`.
Arguments
- file_tbl
Tibble returned by [import_tracks()], containing at least the columns `basename` and `track`.
- track_dir
Directory containing the track files on disk.
- manifest
Optional data frame with a `file` column that matches `file_tbl$basename`.
- manifest_cols
Optional named character vector (or list) mapping new column names in `file_tbl` to column names present in `manifest`. When `NULL`, all columns aside from `file` are carried over with the same names.
- mapping
Optional explicit column mapping passed to [read_tracks()].
- angle_unit, time_type, tz, fps
Passed to [read_tracks()].
- normalize_xy
Logical; normalise x/y to unit circle. Default
FALSE. See [tracks()] for whyTRUEis shape-preserving only, not calibration.- dialect
Optional dialect name; passed to [read_tracks()].
- keep, drop
Column selection vectors passed to [read_tracks()].
- ...
Additional arguments forwarded to [read_tracks()].
