To do (concerning views in http://bshambaugh.org/eispp3.pdf)
(1)
On page 16 there are OPM Structural Links:
http://www.er.byu.edu/er2003/slides/ER2003PT1Dori.pdf
These will need to be considered and added so the REA and partOf relations to look something like the example on pages 92 to 93.
(2)
When reading James Dylan Hollenbach's thesis (http://dig.csail.mit.edu/2010/rdf-widgets/thesis.pdf), he mentions that Exhibit (http://people.csail.mit.edu/dfhuynh/research/papers/www2007-exhibit.pdf) is great for new developers, but is not very customizable. This led to search for other sources about Linked Data
(http://people.csail.mit.edu/dfhuynh/research/papers/www2007-exhibit.pdf).
To do (concerning Provenance in http://bshambaugh.org/eispp3.pdf)
(1) rawbase (R&WBase)
I read the R&WBase paper:
http://ceur-ws.org/Vol-996/papers/ldow2013-paper-01.pdf
But I still have yet to check out any code on their project site. Eventually
http://rawbase.github.io/
To do (concerning conversation with Markus Sabadello):
(1)
See if you can implement the NRP Logging your work tutorial as linked data
https://docs.google.com/presentation/d/1YxPuis1_jbcSxUTqntd4ltBLg9IZP2oscE0Kovd15vo/edit#slide=id.p
(2)
Look at the Linked Data Platform, and see if there are actual applications that you can look at? http://www.w3.org/TR/ldp/
Can you run them on a FreedomBox (with each person's triples on a separate box)
edit: okay I found some implementations from the dataversity video below:
http://www.w3.org/wiki/LDP_Implementations
Look at introduction the Linked Data Platform:
http://video.dataversity.net/video/the-w3c-linked-data-platform-ldp/
edit: mentions http://open-services.net/
Comment on the list perhaps:
http://lists.w3.org/Archives/Public/public-ldp-comments/
On SWIG I asked, "Are there any ldp toys out on the web?"
ReplyDelete[1] https://github.com/linkeddata/ldphp
[2] https://github.com/linkeddata/gold
[3] https://github.com/read-write-web/wiki/wiki
(to satisfy LDP: https://github.com/read-write-web/rww-play/issues)
Also see Also see warp, https://github.com/linkeddata/warp . .
ReplyDeletequeries based on Liyang Y's pg 253, 255 - 256 at http://sparql.org/sparql.html
ReplyDeletebase
prefix foaf:
select *
from
where
{
<#danbri> ?property ?value.
}
base
prefix foaf:
select *
from
where
{
<#me> ?property ?value.
}
base
prefix foaf:
select *
from
where
{
<#me> foaf:knows ?friend.
?friend foaf:name ?name.
}
BASE
PREFIX wn20schema:
SELECT ?aSynset
FROM
WHERE { ?aSynset wn20schema:containsWordSense ?aWordSense .
?aWordSense wn20schema:word ?aWord .
?aWord wn20schema:lexicalForm "bank"@en-US }
base
prefix foaf:
select *
from
where
{
<#danbri> foaf:knows ?friend.
?friend foaf:name ?name.
?friend foaf:mbox ?email.
?friend foaf:homepage ?homepage.
}
http://bshambaugh.org/foaf.rdf
http://danbri.org/foaf.rdf
http://www.w3.org/2006/03/wn/wn20/
if I add things that do not exist in the bshambaugh/foaf.rdf file such as foaf:mbox I get an empty table (but not a 404 :)) ... my queries also seem to follow the hierarchical structure of a rdf/xml file
sed, grep, and awk on downloaded wn20file, and other software carpentry ...(logan cox...things like cut)
gave up on Fuseki locally, tried http://sparql.org/sparql.html instead