@prefix rdf: . @prefix rdfs: . @prefix dcterms: . @prefix foaf: . @prefix cpack: . # This file is a Turtle-format RDF file that describes the package. It # *must* be located in rdf/cpack/cloud.ttl # # Author is a FOAF Person. If you have a FOAF profile, you can link to # this. Otherwise you can specify the information inline as done below. # See http://xmlns.com/foaf/spec/ for defines fields. <> a cpack:Application ; cpack:packageName "cloud" ; dcterms:title "Visualize loaded datacloud" ; cpack:author [ a foaf:Person ; foaf:name "Jan Wielemaker" ; foaf:mbox ; ] ; cpack:primaryRepository [ a cpack:GitRepository ; cpack:gitURL ] ; cpack:description """This package creates a datacload (see e.g., http://richard.cyganiak.de/2007/10/lod/) dynamically based on the data loaded into the current ClioPatria image. Nodes are defined by the Manifest files as used by library(semweb/rdf_library). Each entry tagged using rdf:type as =|lib:CloudNode|= is added, where all triples from graphs referenced from this entry are counted. """ .