- Notifications
You must be signed in to change notification settings - Fork1
Using DATEX as a vocabulary for linked mobility data
osoc16/mobylink
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Moby Link (vocab.datex.org)
This is the intro page to using datex as a vocabulary for linked mobility data. Created byHaroen Viaene,Pieter-Jan Gheeroms andLisa Debontridder duringopen Summer of code 2016.
There's a list of/tools to use while linking data and a vocabulary at/terms. If there are issues with the vocabulary, open a pull request for_data/vocabulary.json. This is generated from a private (sorry, send your complaints todatex.eu
)xsd
.
You can find ascreenshot of the status after open Summer of code in case some part changes.
You can contribute to the example usages (/examples) quite smoothly:
Fork this repository and create a new branch
create a new file in
_examples
give it a relevant name and end it in
.md
(e.g.parking.md
)add the frontmatter like the other files in the beginning of the file, e.g.:
--- layout: example title: Parking typeof: ParkingSite properties: - property: parkingName description: The name of the parkingsite - property: parkingSiteAddress description: The address of the parkingsite ---
Describe your use case in markdown
Put a example in RDFa and JSON-ld between code fences, e.g.:
RDFa example: ```html <article prefix="dtx: http://vocab.datex.org/terms#" resource="#parking" typeof="dtx:ParkingSite"> <h2 property="dtx:parkingName">Parking name</h2> <p property="dtx:parkingSiteAddress">Parking address</p> <p property="dtx:parkingLocation">Parking city</p> <p property="dtx:contactDetailsTelephoneNumber">0498/ 76 54 32</p> <p property="dtx:parkingDescription">Parking description</p> <p>spaces: <span property="dtx:parkingSpaceOccupied">2</span>/<span property="dtx:totalCapacity">3</span></p> <p>Locaton: <span property="dtx:latitude">51</span>:<span property="dtx:longitude">3</span> </article> ``` JSON-LD example: ```json { "@context": { "dtx": "http://vocab.datex.org/terms#" }, "@type": "dtx:ParkingSite", "dtx:parkingName": "Parking name", "dtx:parkingSiteAddress": "Parking address", "dtx:parkingLocation": "Parking city", "dtx:contactDetailsTelephoneNumber": "0498/ 76 54 32", "dtx:parkingDescription": "Parking description", "dtx:parkingSpaceOccupied": 2, "dtx:totalCapacity": 3, "dtx:latitude": 51, "dtx:longitude": 3 } ```
Open a pull request to this repository
MIT