Tags data, one record per show
Format
dataframe with one row for each show in the Fugazi Live Series data, including data from the audio file tags.
- gid
show id
- duration
duration in period format (lubridate)
- seconds
duration in seconds
Provenance
Derived-cleaned. Produced by Repeatr_1 from fls_tags, grouped by (gid, album) so that two distinct tag batches sharing a gid (e.g. an earlier recording later superseded by an official release) produce two rows rather than silently summing their durations together - album itself is dropped before saving, since nothing reads it. Deliberately does not carry its own venue/city/subdivision/country/date - those are independently re-parsed from the album tag text by counting commas, which silently misparses whenever a venue or city name itself contains a comma (e.g. Ypsilanti, Flint, Eau Claire, Osaka). shows_data (joined via gid) is the sole authoritative source for those fields. Not exported to fugazibase.
Examples
fls_tags_show
#> # A tibble: 951 × 3
#> gid duration seconds
#> <chr> <Period> <dbl>
#> 1 aalst-belgium-92390 1H 13M 33S 4413
#> 2 aberdeen-scotland-50499 1H 18M 54S 4734
#> 3 adelaide-australia-111193 46M 49S 2809
#> 4 adelaide-australia-111296 1H 17M 8S 4628
#> 5 adelaide-sa-australia-102291 1H 11M 36S 4296
#> 6 akron-oh-usa-62890 1H 22M 28S 4948
#> 7 albany-ny-usa-92093 1H 19M 41S 4781
#> 8 albuquerque-nm-usa-111395 1H 14M 22S 4462
#> 9 albuquerque-nm-usa-40801 1H 30M 40S 5440
#> 10 albuquerque-nm-usa-91191 1H 7M 50S 4070
#> # ℹ 941 more rows