ceurws / ToolsEswc

Tools and extensions for the SemPub2015 co-located with the Extended Semantic Web Conference 2015
GNU General Public License v3.0
0 stars 0 forks source link

proceeding volume vs. events #2

Closed S6savahd closed 8 years ago

S6savahd commented 8 years ago

The URLs for proceedings are mixed up with events. For example, this ( http://ceur-ws.org/Vol-1/) is used for expressing the event as subject whereas it should be used for proceedings and instead a new URL should be created for event description as the subject e.g., http://ceur-ws.org/Vol-1/#event and not to have http://ceur-ws.org/Vol-1/#proc.

liyakun commented 8 years ago

@S6savahd then this means we need to replace http://ceur-ws.org/Vol-1/#proc with http://ceur-ws.org/Vol-1/, and replace http://ceur-ws.org/Vol-1/ with http://ceur-ws.org/Vol-1/#event, right?

S6savahd commented 8 years ago

yes.

liyakun commented 8 years ago

done by post processing of the dataset, one example for Vol-1 is as follows

<http://ceur-ws.org/Vol-1/> a ns1:Proceedings;
    ns1:hasPart <http://ceur-ws.org/Vol-1/#beneventano-et-al-long>,
        <http://ceur-ws.org/Vol-1/#benn-long>,
        <http://ceur-ws.org/Vol-1/#bresciani-long>,
        <http://ceur-ws.org/Vol-1/#buchheit-et-al-long>,
        <http://ceur-ws.org/Vol-1/#buchholz-et-al-long>,
        <http://ceur-ws.org/Vol-1/#guetari-et-al-long>,
        <http://ceur-ws.org/Vol-1/#huber-long>,
        <http://ceur-ws.org/Vol-1/#hustadt-long>,
        <http://ceur-ws.org/Vol-1/#jeusfeld-long>,
        <http://ceur-ws.org/Vol-1/#krdb94-overview>,
        <http://ceur-ws.org/Vol-1/#lenzerini>,
        <http://ceur-ws.org/Vol-1/#norrie-et-al-long>,
        <http://ceur-ws.org/Vol-1/#schild-long>,
        <http://ceur-ws.org/Vol-1/#schmiedel-long>,
        <http://ceur-ws.org/Vol-1/#scholl>,
        <http://ceur-ws.org/Vol-1/#vossen-long> ;
    ns6:issued "1995-04-07T00:00:00+00:00"^^xsd:dateTime ;
    ns5:presentedAt <http://ceur-ws.org/Vol-1/#event> ;
    ns2:editor <http://ceur-ws.org/Vol-1/#FranziBaader>,
        <http://ceur-ws.org/Vol-1/#ManfrediA.iJeusfeld>,
        <http://ceur-ws.org/Vol-1/#MartiniBuchheit>,
        <http://ceur-ws.org/Vol-1/#WerneriNutt> .
clange commented 8 years ago

Thank you, looks great. Could you please provide a link to the code that performs the post-processing? I'd be interested to see it.

liyakun commented 8 years ago

Hi @clange , you can find it here dataset/serializer.py.