https://github.com/smartdataanalytics/iana-language-subtag-registry-rdf
Jena plugin to RDFize the iana subtag registry and validate language tags against it
https://github.com/smartdataanalytics/iana-language-subtag-registry-rdf
Last synced: about 2 months ago
JSON representation
Jena plugin to RDFize the iana subtag registry and validate language tags against it
- Host: GitHub
- URL: https://github.com/smartdataanalytics/iana-language-subtag-registry-rdf
- Owner: SmartDataAnalytics
- License: apache-2.0
- Created: 2021-02-16T16:55:54.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-02-26T09:01:28.000Z (about 2 years ago)
- Last Synced: 2025-01-22T06:22:34.627Z (3 months ago)
- Language: Java
- Size: 343 KB
- Stars: 1
- Watchers: 9
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# iana-language-subtag-registry-rdfizer
The [IANA language subtag registry](http://www.iana.org/assignments/language-subtag-registry/language-subtag-registry) is a resource that
lists valid values for use in the components of BCP47 language tags. The format is a set of records with key-value pairs.This repo contains two independent but related Java/Maven projects.
* The RDFizer itself which is just a single class
* A resource project which just contains the generated dataset## RDFization
The core RDFization is 'raw' - each record is represented by a blank node,
each key is turned into an IRI of the form and the value becomes a literal.
This way no information is lost and the alignment of the raw predicates to existing ontologies can
be accomplished by means of post processing with rdf tooling.```turtle
[ "2021-02-16" ] .[ "2009-07-29" ;
"Potawatomi" ;
"pot" ;
"language"
] .```