https://github.com/noorbakerally/ISWC2017Demo
Raw File
Tip revision: c38295a98c6a3478c7ed285c09881593df3f9f71 authored by Noorani Bakerally on 23 October 2017, 15:10:13 UTC
ParisGeoWithClass added
Tip revision: c38295a
ParisStationVelib.dd.ttl
@base <http://localhost:8888/> .
@prefix ldp:     <http://www.w3.org/ns/ldp#> .
@prefix :     <http://opensensingcity.emse.fr/LDPDesignVocabulary/> .
@prefix data:     <http://opensensingcity.emse.fr/LDPDesign/data/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix bs:    <http://opensensingcity.emse.fr/ontologies/bikesharing/> .

data:cityContainerMap a :ContainerMap;
    :slugTemplate "paris";
    :containerType ldp:BasicContainer;
    :containerMap data:bikeStationsContainerMap .

data:bikeStationsContainerMap a :ContainerMap;
    :slugTemplate "{_r.iri.path[2]}";
    :containerType ldp:BasicContainer;
    :resourceMap data:bikeStationResourceMap .

data:datasetResourceMap a :ResourceMap;
    :resourceQuery "{ ?resource a  bs:BikeStation . }";
    :graphTemplate :SubjectObjectGraph;
    :linkToSource foaf:primaryTopic;
    :dataSource data:DataSource1 .

data:DataSource1 a :DataSource;
    :sGenerateliftingRule "https://raw.githubusercontent.com/noorbakerally/ISWC2017Demo/master/ParisStationVelib.rqg".
back to top