2017-02-16 4 views

答えて

1
あなたが言うことができる

その晴れている時トンの気象条件がある場合あなたがいる場所には、同時にあなたに関わるハイキングイベントがあります。あなたが持つかもしれデータの種類の例は次のとおりです。

ex:2017-02-23 a wc:WeatherCondition; 
    t:time "2017-02-23"^^xsd:date; 
    p:place ex:theAlps; 
    wc:cloudiness wc:sunny . 
ex:i p:located [ 
    a p:LocationAtTime; 
    p:location ex:theAlpes; 
    t:time "2017-02-23"^^xsd:date . 
] . 
ex:hiking2017-02-23 a ae:HikingEvent; 
    t:time "2017-02-23"^^xsd:date; 
    ae:participant ex:i . 

あなたのようなルールたいと思います:

?wc a wc:WeatherCondition; 
    t:time ?t; 
    p:place ?p; 
    wc:cloudiness wc:sunny . 
ex:i p:located [ 
    a p:LocationAtTime; 
    p:location ?p; 
    t:time ?t . 
] . 

を意味します

[] a ae:HikingEvent; 
    p:location ?p; 
    t:time ?t . 

私は、これはなんとかだとは思いませんOWLでただし、これにはルールエンジンを使用できます。それにもかかわらず、データが高度に文脈的で動的なこのようなユースケースは、セマンティックWeb標準で最もよくカバーされているとは確信していません。

関連する問題