CINXE.COM

LOD Cloud

<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>LOD Cloud</title> <base href="/"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="icon" type="image/x-icon" href="favicon.ico"> <link href="https://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Josefin+Sans" rel="stylesheet"> <link href="https://cdn.jsdelivr.net/npm/bootstrap@3.3.7/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> <link rel="stylesheet" href="/css/tags-input.css"> <link href="/css/app.css" rel="stylesheet"> <script src="/tags-input.js"></script> </head> <body> <nav class="navbar"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="#">The Linked Open Data Cloud</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav navbar-right"> <li><a href="/datasets">Browse</a></li> <li><a href="/add-dataset">Submit a dataset</a></li> <li routerLinkActive="active"><a href="/#diagram">Diagram</a></li> <li><a href="#subclouds">Subclouds</a></li> <li routerLinkActive="active"><a href="/#about">About</a></li> <!--<li><a (click)="showLoadDatasetsBox($event)" href="#" >+ Datasets from file</a></li>--> <!--<div id="googleBtn">Google</div>--> <hr> </ul> </div><!--/.nav-collapse --> </div> </nav> <div class="container" id="app"> <div align="left" class="row"> <div class="col-md-10"> <h1>{{dataset.title}} <a v-bind:href="'/edit-dataset/' + dataset._id" class="edit-link">(Edit)</a></h1> </div> <div class="col-md-2 stars"> <img v-bind:src="star_img(dataset)" v-bind:title="star_explain(dataset)" id="stars_img"/> </div> </div> <h3>About this dataset</h3> <div class="row"> <div class="col-md-10"> {{dataset.description.en}} </div> <div class="col-md-2" v-if="dataset.image"> <img v-bind:src="dataset.image" v-bind:title="dataset.title" class="dataset-img"/> </div> </div> <div class="license" v-if="dataset.license"> License: <a v-bind:href="dataset.license">{{dataset.license}}</a> </div> <div class="keywords"> <span class="badge badge-success">{{dataset.domain}}</span> <span class="badge badge-primary" v-for="keyword in dataset.keywords">{{keyword}} </span> </div> <h3>Contact Details</h3> <div v-if="dataset.contact_point" class="contactPoint"> Contact Point: <a v-bind:href="'mailto:' + dataset.contact_point.email">{{dataset.contact_point.name}}</a> </div> <div v-if="dataset.website" class="website"> Website: <a v-bind:href="dataset.website">{{dataset.website}}</a> </div> <h3>Download Links</h3> <div v-if="dataset.full_download.length>0"> <h4>Full Downloads</h4> <ul> <li v-for="fd in dataset.full_download"> <img v-if="fd.status && fd.status != 'OK'" src="/img/warn.png" v-bind:title="'Resource may not be available:' + fd.status" class="warn-icon"/> <a v-bind:href="fd.download_url"> <span v-if="fd.title">{{fd.title}}</span> <span v-else>Download</span> </a> <div v-for="mirror in fd.mirror"> <a href="/ipfs-how-to.html"> <img src="/img/ipfs.png" title="IPFS link available" width="32"/></a> <tt>{{mirror.substring(5)}}</tt> </div> <span v-if="fd.description">({{fd.description}})</span> </li> </ul> </div> <div v-if="dataset.sparql.length>0"> <h4>SPARQL Endpoints</h4> <ul> <li v-for="fd in dataset.sparql"> <img v-if="fd.status && fd.status != 'OK'" src="/img/warn.png" v-bind:title="'Resource may not be available: ' + fd.status" class="warn-icon"/> <a v-bind:href="fd.access_url"> <span v-if="fd.title">{{fd.title}}</span> <span v-else>Access SPARQL endpoint</span> </a> <span v-if="fd.description">({{fd.description}})</span> </li> </ul> </div> <div v-if="dataset.example.length>0"> <h4>Examples</h4> <ul> <li v-for="fd in dataset.example"> <img v-if="fd.status && fd.status != 'OK'" src="/img/warn.png" v-bind:title="'Resource may not be available: ' + fd.status" class="warn-icon"/> <a v-bind:href="fd.access_url"> <span v-if="fd.title">{{fd.title}}</span> <span v-else>Download</span> </a> <span v-if="fd.description">({{fd.description}})</span> </li> </ul> </div> <div v-if="dataset.other_download.length>0"> <h4>Other downloads</h4> <ul> <li v-for="fd in dataset.other_download"> <img v-if="fd.status && fd.status != 'OK'" src="/img/warn.png" v-bind:title="'Resource may not be available: ' + fd.status" class="warn-icon"/> <a v-bind:href="fd.access_url"> <span v-if="fd.title">{{fd.title}}</span> <span v-else>Download</span> </a> <div v-for="(mirror, index) in fd.mirror"> <a href="/ipfs-how-to.html"> <img src="/img/ipfs.png" title="IPFS link available" width="32"/></a> <tt>{{mirror.substring(5)}}</tt> </div> <span v-if="fd.description">({{fd.description}})</span> </li> </ul> </div> <h3>Data Facts</h3> <table class="table table-striped"> <tr> <td>Total size</td> <td class="triple_count">{{commaFormatted(dataset.triples)}}<span class="triples"> triples</span></td> </tr> <tr v-if="dataset.namespace"> <td>Namespace</td> <td>{{dataset.namespace}}</td> </tr> <tr v-if="dataset.doi"> <td>DoI</td> <td>{{dataset.doi}}</td> </tr> <tr v-for="l in sort_links(dataset.links)"> <td>Links to <a v-bind:href="'/dataset/' + l.target">{{l.target}}</a></td> <td class="triple_count">{{commaFormatted(l.value)}}<span class="triples"> triples</span></td> </tr> </table> <h3 v-if="dataset.show_luzzu">Data Quality Estimation by <a href="http://luzzu.adaptcentre.ie/">Luzzu</a></h3> <canvas id="myChart"></canvas> <b>Download metadata as:</b> <ul> <li><a v-bind:href="'/json/' + dataset.identifier">JSON</a></li> <li><a v-bind:href="'/rdf/' + dataset.identifier + '?format=rdf'">RDF/XML</a></li> <li><a v-bind:href="'/rdf/' + dataset.identifier + '?format=ttl'">Turtle</a></li> <li><a v-bind:href="'/rdf/' + dataset.identifier + '?format=nt'">N-Triples</a></li> </ul> </div> <!--<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>--> <script src="/js/vue.js"></script> <script src="/js/vue-resource.js"></script> <script src="/js/bootstrap.bundle.min.js"></script> <script src="/js/jquery.min.js"></script> <script type="text/javascript" src="/js/Chart.bundle.js"></script> <script src="/js/luzzu.js"></script> <script src="/js/axios.min.js"></script> <script> function data() { return {dataset:{"owner":{"name":"","email":"f.mambrini@gmail.com"},"identifier":"wikidata","image":"https://upload.wikimedia.org/wikipedia/commons/6/66/Wikidata-logo-en.svg","website":"https://www.wikidata.org/","triples":"12500000000","keywords":["wikimedia","wikipedia"],"full_download":[{"media_type":"application/octet-stream","description":"The latest full dump of all Wikidata entity data, in Turtle format, compressed with bzip2. Dumps are generated on a weekly basis.","status":"FAIL (Unhandled content type. Must be text/*, application/xml, or application/*+xml)","title":"Latest full dump, bzip2 compressed","mirror":[],"download_url":"https://dumps.wikimedia.org/wikidatawiki/entities/latest-all.ttl.bz2"},{"media_type":"application/octet-stream","description":"The latest full dump of all Wikidata entity data, in Turtle format, compressed with gzip. Dumps are generated on a weekly basis.","download_url":"https://dumps.wikimedia.org/wikidatawiki/entities/latest-all.ttl.gz","status":"FAIL (Unhandled content type. Must be text/*, application/xml, or application/*+xml)","title":"Latest full dump, gzip compressed","mirror":[],"_id":"59748656-8636-972a-4b06-442d7077620e","access_url":""},{"media_type":"application/octet-stream","description":"The latest “truthy” dump of all Wikidata entity data, in N-Triples format, compressed with bzip2. This contains only “truthy” or “best” statements, without qualifiers or references. Dumps are generated on a weekly basis.","download_url":"https://dumps.wikimedia.org/wikidatawiki/entities/latest-truthy.nt.bz2","status":"FAIL (Unhandled content type. Must be text/*, application/xml, or application/*+xml)","title":"Latest truthy dump, bzip2 compressed","mirror":[],"_id":"a1431906-76e5-021b-a55f-21b0fec4f37a","access_url":""},{"media_type":"application/octet-stream","description":"The latest “truthy” dump of all Wikidata entity data, in N-Triples format, compressed with gzip. This contains only “truthy” or “best” statements, without qualifiers or references. Dumps are generated on a weekly basis.","download_url":"https://dumps.wikimedia.org/wikidatawiki/entities/latest-truthy.nt.gz","status":"FAIL (Unhandled content type. Must be text/*, application/xml, or application/*+xml)","title":"Latest truthy dump, gzip compressed","mirror":[],"_id":"b38b980b-ed07-d4ef-c371-027cf7e083cd","access_url":""}],"description":{"en":"free knowledge database project hosted by Wikimedia and edited by volunteers"},"title":"Wikidata","example":[{"title":"entity node for Nelson Mandela","media_type":"application/ld+json; charset=UTF-8","description":"The canonical URI for the concept of Nelson Mandela, the South African anti-apartheid activist and later President, as represented on Wikidata. Using content negotiation, the URI redirects to different pages depending on how it is accessed; when opened in a browser, it will usually redirect to the Wikidata page for the item, showing its terms, statements and sitelinks, while other clients may be served the data in JSON or RDF formats instead.","access_url":"http://www.wikidata.org/entity/Q8023","status":"FAIL (301)"},{"media_type":"application/ld+json; charset=UTF-8","description":"The data node for Wikidata’s concept of Nelson Mandela. In the linked data interface, this node is the subject of triples describing metadata about the entity record on Wikidata. (In the Wikidata Query Service, the data node is merged into the entity node.) This is the URI that actually implements content negotiation depending on the client’s Accept headers; the entity URI, when accessed, unconditionally redirects to this one.","status":"OK","title":"data node for Nelson Mandela","_id":"93621ff0-ddcc-78d1-fe2a-ac2fe64f3bde","access_url":"https://www.wikidata.org/wiki/Special:EntityData/Q8023"},{"media_type":"text/html; charset=UTF-8","description":"The Wikidata wiki page for Nelson Mandela, showing the terms, statements and sitelinks of the item. This is what the data node URI redirects to when opened in a browser, and the main way for humans to interact with the item.","status":"OK","title":"wiki page for Nelson Mandela","_id":"1569a4e8-bfc4-bbc4-6677-73ebedf31c55","access_url":"https://www.wikidata.org/wiki/Q8023"},{"media_type":"application/json; charset=UTF-8","description":"The Wikibase-specific representation of Wikidata’s information about Nelson Mandela in JSON format. This is what the data node URI redirects to when the client does not send any Accept headers.","status":"OK","title":"JSON data for Nelson Mandela","_id":"428edd63-9568-1619-34f5-657bf8b8201b","access_url":"https://www.wikidata.org/wiki/Special:EntityData/Q8023.json"},{"media_type":"application/rdf+xml; charset=UTF-8","description":"Wikidata’s data relating to the concept of Nelson Mandela, in RDF/XML format. This is what the data node URI redirects to when the client accepts the RDF/XML format.","status":"OK","title":"RDF/XML data for Nelson Mandela","_id":"5cd69422-d48a-907e-a8aa-c47621c3f349","access_url":"https://www.wikidata.org/wiki/Special:EntityData/Q8023.rdf"},{"media_type":"text/turtle; charset=UTF-8","description":"Wikidata’s data relating to the concept of Nelson Mandela, in Turtle format. This is what the data node URI redirects to when the client accepts the Turtle format.","status":"OK","title":"Turtle data for Nelson Mandela","_id":"baad1fa9-3180-ab27-52da-a6a5bcc7e632","access_url":"https://www.wikidata.org/wiki/Special:EntityData/Q8023.ttl"},{"media_type":"application/n-triples; charset=UTF-8","description":"Wikidata’s data relating to the concept of Nelson Mandela, in N-Triples format. This is what the data node URI redirects to when the client accepts the N-Triples format.","status":"OK","title":"N-Triples data for Nelson Mandela","_id":"459b9668-e5b9-ca77-bda6-b9068d0c62ae","access_url":"https://www.wikidata.org/wiki/Special:EntityData/Q8023.nt"}],"license":"http://www.opendefinition.org/licenses/cc-zero","other_download":[{"media_type":"","description":"The Web UI of the Wikidata Query Service offers a convenient interface for authoring or editing SPARQL queries against the Wikidata Query Service and viewing the results in various formats.","mirror":[],"status":"OK","title":"Wikidata Query Service, Web UI","_id":"4df74a37-bb58-c0d2-e0f6-d871af40e071","access_url":"https://query.wikidata.org/"}],"domain":"user_generated","namespace":"http://www.wikidata.org/entity/","links":[{"target":"doi","value":"27367486"},{"target":"geonames-semantic-web","value":"3747452"},{"target":"viaf","value":"6148897"},{"target":"freebase","value":"4397020"},{"target":"dnb-gemeinsame-normdatei","value":"1918745"},{"target":"lcsh","value":"1338101"},{"target":"data-bnf-fr","value":"895058"},{"target":"idreffr","value":"528040"},{"target":"oclc-fast","value":"502221"},{"target":"national-diet-library-authorities","value":"124052"},{"target":"chembl-rdf","value":"100223"},{"target":"libris","value":"258242"},{"target":"babelnet","value":"65942"},{"target":"getty-tgn","value":"29226"},{"target":"getty-aat","value":"25080"},{"target":"gemeenschappelijke-thesaurus-audiovisuele-archieven","value":"39556"},{"target":"lexvo","value":"8300"},{"target":"ocd","value":"12881"},{"target":"pleiades","value":"5625"},{"target":"bbc-programmes","value":"4202"},{"target":"stw-thesaurus-for-economics","value":"2663"},{"target":"hungarian-national-library-catalog","value":"6825"},{"_id":"47cfeeba-521b-07eb-559d-f80b6c437e33","target":"uniprotkb","value":"2537481"},{"_id":"afe738c9-41b9-fd86-1432-317422aef9bf","target":"open-library","value":"271983"},{"_id":"0d5f4083-ce3a-b40f-0c88-aaf8112de001","target":"datos-bne-es","value":"207362"},{"_id":"c90095ad-5aae-9b95-9510-cce3739b9b2f","target":"data-persee-fr","value":"34064"},{"_id":"b117a321-b286-db4f-fff0-8727892ed258","target":"gutenberg","value":"19945"},{"_id":"985feae5-6500-adb9-0066-cf5a026fcf83","target":"bluk-bnb","value":"42519"},{"_id":"3479a1c2-8367-a8e2-d336-b9633b049388","target":"glottolog","value":"10800"},{"_id":"b8ea979d-443d-76c4-96aa-3c8574bc4e6a","target":"sandrart-net","value":"5172"},{"_id":"888f348d-bfda-9acf-b1c6-c08903e9c1dd","target":"thesesfr","value":"4370"},{"_id":"a8fce212-8d46-5f69-2367-444327e89924","target":"msc","value":"210"},{"_id":"d502221e-f2d3-cb30-1ced-a4824f8fd0fe","target":"iptc-newscodes","value":"782"},{"_id":"0a65ffeb-ebc1-c958-3aca-2843ca8f2025","target":"uniprot","value":"2537481"},{"_id":"c2aac7ee-001f-872e-4181-ec6a3b66dce2","target":"zitgist-musicbrainz","value":"490029"},{"_id":"bd526226-0929-d452-7095-952ad112195f","target":"libris","value":"258242"},{"_id":"c7ca96ea-49b8-3079-b988-92fff0190c45","target":"eunis","value":"179098"},{"_id":"339c4630-f0fc-b0be-3566-880ac13a1115","target":"swedish-open-cultural-heritage","value":"164146"},{"_id":"33f4589d-50ec-3f23-dcc6-a442c6780cee","target":"europeana-sparql","value":"160460"},{"_id":"d2d802e5-779a-d208-f75c-5e4decbbde1d","target":"bioportal-msh","value":"77724"},{"_id":"35cf72a8-0651-4b9b-fb99-2985f49b0f3e","target":"bioportal-mesh-owl","value":"77714"},{"_id":"ba836599-a7e2-f498-507c-a29bf9010d84","target":"bag","value":"61218"},{"_id":"d0a3f171-c9b2-34fa-f73a-02c7cf09b4f5","target":"rism","value":"27329"},{"_id":"f323f6a0-278b-f1a1-7db3-c0557604e100","target":"BVMC","value":"16483"},{"_id":"7f6d67cd-41c5-5983-e0ba-8438b23edacf","target":"yso","value":"14180"},{"_id":"173b1339-01da-3edd-2e07-3731586449c3","target":"clld-glottolog","value":"10800"},{"_id":"23db5e94-867b-917b-b9a4-916164e4fb7e","target":"linked-open-numbers","value":"10327"},{"_id":"826cc24b-4032-e6e9-3002-7bf2b72a9672","target":"eurovoc","value":"3068"},{"_id":"1bcc2863-6962-dd48-d6f7-7c3ee656d62c","target":"nomisma_org","value":"1801"},{"_id":"b5be51fb-ed24-ce6a-292e-045cdb8a4bfe","target":"bioportal-snomedct","value":"801"},{"_id":"cfe00ecc-faa2-86c3-aca9-b03748b02514","target":"bioportal-unitsontology","value":"610"},{"_id":"2b94862c-dc2e-20aa-5e15-0f86b41eccf3","target":"cpv-2008","value":"422"},{"_id":"256319c2-4dc8-f2d3-b2f9-a5f8778cbd0f","target":"naics-2012","value":"45"},{"_id":"a482d155-a8be-07b4-45c5-11b7c886c805","target":"warsampo","value":"17"},{"_id":"d8f48fa1-2d60-0ec9-998f-3eb037a3e9ea","target":"LemmaBank","value":"51496"}],"_id":"wikidata0000018a6ff398fb","time":"0000018a6ff398fb","sparql":[{"title":"Wikidata Query Service","description":"The Wikidata Query Service generally contains the full data of Wikidata, modulo a slight delay in updating (usually no more than a few seconds), a handful of spurious synchronization errors (requests are routed to a randomly selected server from the pool, and the different servers may be slightly out of sync), and a few differences between the RDF dump format and the WDQS version (see https://www.mediawiki.org/wiki/Wikibase/Indexing/RDF_Dump_Format#WDQS_data_differences).","access_url":"https://query.wikidata.org/sparql","status":"FAIL (Read timed out)"}],"doi":"","contact_point":{"name":"Lucas Werkmeister","email":"wikidata@wikimedia.de"}}}} var app = new Vue({ el: '#app', data: data(), methods: { commaFormatted: function (x) { return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ","); }, stars: function (dataset) { if (dataset.title) { if (dataset.description) { if (dataset.contact_point) { if (dataset.triples && dataset.triples > 0) { if (dataset.links && dataset.links.length > 0) { var accessible = false; if (dataset.full_download) { for (i in dataset.full_download) { var download = dataset.full_download[i]; if (typeof download.status === undefined || download.status === "OK") { accessible = true } } } if (dataset.other_download) { for (i in dataset.other_download) { var download = dataset.other_download[i]; if (typeof download.status === undefined || download.status === "OK") { accessible = true } } } if (accessible) { var lwd = false; for (i in dataset.sparql) { var download = dataset.sparql[i]; if (download.status === "OK") { lwd = true; } } for (i in dataset.example) { var example = dataset.example[i]; if (example.status === "OK" && ["application/rdf+xml", "text/turtle", "application/n-triples", "appliation/ld+json"].includes(example.media_type)) { lwd = true; } } if (lwd) { return [5, "Linked Web Data"]; } else { return [4, "No examples resolve to RDF"]; } } else { return [3, "Downloads may not be available"]; } } else { return [2, "No links to other datasets"]; } } else { return [2, "No triple count"]; } } else { return [1, "No contact point"]; } } else { return [1, "No Description"]; } } else { return [1, "No Title"]; } }, star_img: function (dataset) { var r = this.stars(dataset); return "/img/" + r[0] + "stars.png"; }, star_explain: function (dataset) { var r = this.stars(dataset); return r[1]; }, sort_links: function (links) { links.sort(function(t) { return t.target; }); return links; } }, beforeMount() { if(resource2luzzu[this.dataset._id] != undefined) { this.dataset.show_luzzu = true; visualisationChart(resource2luzzu[this.dataset._id]); } } }) </script> <script>[].forEach.call(document.querySelectorAll('input[type="tags"]'), tagsInput);</script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10