├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── data ├── LICENSE ├── README.md ├── phoible-references.bib └── phoible.csv ├── mappings ├── InventoryID-Bibtex.csv └── InventoryID-LanguageCodes.csv ├── raw-data ├── AA │ ├── AA_inventories.tsv │ └── README.md ├── EA │ ├── EA_IPA_correspondences.tsv │ ├── EA_inventories.tsv │ └── README.md ├── ER │ ├── ER_inventories.tsv │ └── README.md ├── FEATURES │ ├── README.md │ ├── component-feature-table.csv │ ├── phoible-segments-features.tsv │ └── special-feature-table.csv ├── PH │ ├── README.md │ ├── UZ_inventories.tsv │ ├── gm-afr-inventories.tsv │ ├── gm-sea-inventories.tsv │ ├── phoible_inventories.tsv │ └── wip_inventories.tsv ├── RA │ ├── README.md │ └── Ramaswami1999.csv ├── README.md ├── SAPHON │ ├── README.md │ ├── saphon20121031.tsv │ └── saphon_ipa_correspondences.tsv ├── SPA │ ├── README.md │ ├── SPA_IPA_correspondences.tsv │ ├── SPA_LangNamesCodes.tsv │ └── SPA_Phones.tsv └── UPSID │ ├── README.md │ ├── UPSID_CharCodes.tsv │ ├── UPSID_Features.tsv │ ├── UPSID_IPA_correspondences.tsv │ ├── UPSID_LanguageCodes.tsv │ ├── UPSID_Languages.tsv │ └── UPSID_Segments.tsv ├── scripts ├── .lintr ├── README.md ├── add-features.R ├── aggregate-raw-data.R ├── aggregation-helper-functions.R └── feature-helper-functions.R └── tests ├── test-inventory-metadata.R └── test-phonemes.R /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # file types 2 | .Rhistory 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/README.md -------------------------------------------------------------------------------- /data/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/data/LICENSE -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/data/README.md -------------------------------------------------------------------------------- /data/phoible-references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/data/phoible-references.bib -------------------------------------------------------------------------------- /data/phoible.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/data/phoible.csv -------------------------------------------------------------------------------- /mappings/InventoryID-Bibtex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/mappings/InventoryID-Bibtex.csv -------------------------------------------------------------------------------- /mappings/InventoryID-LanguageCodes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/mappings/InventoryID-LanguageCodes.csv -------------------------------------------------------------------------------- /raw-data/AA/AA_inventories.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/raw-data/AA/AA_inventories.tsv -------------------------------------------------------------------------------- /raw-data/AA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/raw-data/AA/README.md -------------------------------------------------------------------------------- /raw-data/EA/EA_IPA_correspondences.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/raw-data/EA/EA_IPA_correspondences.tsv -------------------------------------------------------------------------------- /raw-data/EA/EA_inventories.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/raw-data/EA/EA_inventories.tsv -------------------------------------------------------------------------------- /raw-data/EA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/raw-data/EA/README.md -------------------------------------------------------------------------------- /raw-data/ER/ER_inventories.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/raw-data/ER/ER_inventories.tsv -------------------------------------------------------------------------------- /raw-data/ER/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/raw-data/ER/README.md -------------------------------------------------------------------------------- /raw-data/FEATURES/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/raw-data/FEATURES/README.md -------------------------------------------------------------------------------- /raw-data/FEATURES/component-feature-table.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/raw-data/FEATURES/component-feature-table.csv -------------------------------------------------------------------------------- /raw-data/FEATURES/phoible-segments-features.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/raw-data/FEATURES/phoible-segments-features.tsv -------------------------------------------------------------------------------- /raw-data/FEATURES/special-feature-table.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/raw-data/FEATURES/special-feature-table.csv -------------------------------------------------------------------------------- /raw-data/PH/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/raw-data/PH/README.md -------------------------------------------------------------------------------- /raw-data/PH/UZ_inventories.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/raw-data/PH/UZ_inventories.tsv -------------------------------------------------------------------------------- /raw-data/PH/gm-afr-inventories.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/raw-data/PH/gm-afr-inventories.tsv -------------------------------------------------------------------------------- /raw-data/PH/gm-sea-inventories.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/raw-data/PH/gm-sea-inventories.tsv -------------------------------------------------------------------------------- /raw-data/PH/phoible_inventories.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/raw-data/PH/phoible_inventories.tsv -------------------------------------------------------------------------------- /raw-data/PH/wip_inventories.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/raw-data/PH/wip_inventories.tsv -------------------------------------------------------------------------------- /raw-data/RA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/raw-data/RA/README.md -------------------------------------------------------------------------------- /raw-data/RA/Ramaswami1999.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/raw-data/RA/Ramaswami1999.csv -------------------------------------------------------------------------------- /raw-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/raw-data/README.md -------------------------------------------------------------------------------- /raw-data/SAPHON/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/raw-data/SAPHON/README.md -------------------------------------------------------------------------------- /raw-data/SAPHON/saphon20121031.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/raw-data/SAPHON/saphon20121031.tsv -------------------------------------------------------------------------------- /raw-data/SAPHON/saphon_ipa_correspondences.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/raw-data/SAPHON/saphon_ipa_correspondences.tsv -------------------------------------------------------------------------------- /raw-data/SPA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/raw-data/SPA/README.md -------------------------------------------------------------------------------- /raw-data/SPA/SPA_IPA_correspondences.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/raw-data/SPA/SPA_IPA_correspondences.tsv -------------------------------------------------------------------------------- /raw-data/SPA/SPA_LangNamesCodes.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/raw-data/SPA/SPA_LangNamesCodes.tsv -------------------------------------------------------------------------------- /raw-data/SPA/SPA_Phones.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/raw-data/SPA/SPA_Phones.tsv -------------------------------------------------------------------------------- /raw-data/UPSID/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/raw-data/UPSID/README.md -------------------------------------------------------------------------------- /raw-data/UPSID/UPSID_CharCodes.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/raw-data/UPSID/UPSID_CharCodes.tsv -------------------------------------------------------------------------------- /raw-data/UPSID/UPSID_Features.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/raw-data/UPSID/UPSID_Features.tsv -------------------------------------------------------------------------------- /raw-data/UPSID/UPSID_IPA_correspondences.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/raw-data/UPSID/UPSID_IPA_correspondences.tsv -------------------------------------------------------------------------------- /raw-data/UPSID/UPSID_LanguageCodes.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/raw-data/UPSID/UPSID_LanguageCodes.tsv -------------------------------------------------------------------------------- /raw-data/UPSID/UPSID_Languages.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/raw-data/UPSID/UPSID_Languages.tsv -------------------------------------------------------------------------------- /raw-data/UPSID/UPSID_Segments.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/raw-data/UPSID/UPSID_Segments.tsv -------------------------------------------------------------------------------- /scripts/.lintr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/scripts/.lintr -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/add-features.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/scripts/add-features.R -------------------------------------------------------------------------------- /scripts/aggregate-raw-data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/scripts/aggregate-raw-data.R -------------------------------------------------------------------------------- /scripts/aggregation-helper-functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/scripts/aggregation-helper-functions.R -------------------------------------------------------------------------------- /scripts/feature-helper-functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/scripts/feature-helper-functions.R -------------------------------------------------------------------------------- /tests/test-inventory-metadata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/tests/test-inventory-metadata.R -------------------------------------------------------------------------------- /tests/test-phonemes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoible/dev/HEAD/tests/test-phonemes.R --------------------------------------------------------------------------------