Skip to content

Instantly share code, notes, and snippets.

View rtroncy's full-sized avatar

Raphael Troncy rtroncy

View GitHub Profile
@rtroncy
rtroncy / matrix.json
Created September 12, 2017 14:19
Matrix output
{
"Abrams----http://dbpedia.org/resource/J._J._Abrams": [
"dbo_abstract",
"dbo_birthName",
"dbo_wikiPageWikiLinkText",
"dbo_wikiPageRedirects",
"rdfs_label",
"foaf_name"
],
"AlArabiya_Eng----http://dbpedia.org/resource/Al_Arabiya": [],
@rtroncy
rtroncy / gist:112cfeb149067886abd4
Created August 11, 2015 09:04
Getting all Visual Arts events (according to the category) that happen from now and in the future
SELECT DISTINCT ?event ?title ?description ?placeName ?img ?long ?lat ?cell ?seeAlso ?datetimeBegin ?datetimeEnd ?now ?score
WHERE {
{
SELECT DISTINCT ?event ?title ?description ?img ?cell ?cellGeo ?datetimeBegin ?now ?datetimeEnd ?dateDiffBegin ?dateDiffEnd if(?now < ?datetimeBegin, ?dateDiffBegin, if(?datetimeEnd < ?now, ?dateDiffEnd, 0.0)) AS ?diff if(?diff = 0.0, 5.99, if(?diff > 0.0, 5.0+1.0/if(?diff/86400.0 < 1.0, 1.0, ?diff/86400.0), -1.0/if(?diff/86400.0 > -1.0, -1.0, ?diff/86400.0))) AS ?dateScore if(BOUND(?img), 1.0, 0.0) AS ?imageScore if(fn:string-length(?description) < 100, 0.0, if(fn:string-length(?description) < 800, 0.5, if(fn:string-length(?description) < 1400, 1.0, if(fn:string-length(?description) < 1800, 0.5, 0.0)))) AS ?descriptionScore (?imageScore + ?dateScore * 100000.0 + ?descriptionScore) AS ?score
WHERE {
GRAPH <http://3cixty.com/events> {?event a lode:Event .}
?event rdfs:label ?title .
?event locationOnt:cell ?cell .
?cell geo:location ?cellGeo .
OPTIONAL{?even
@rtroncy
rtroncy / gist:62915cc9286e9b67715e
Created August 11, 2015 09:02
Getting all EXPO events (according to the category) that happen from now and in the future
SELECT DISTINCT ?event ?title ?description ?placeName ?img ?long ?lat ?cell ?seeAlso ?datetimeBegin ?datetimeEnd ?now ?score
WHERE {
{
SELECT DISTINCT ?event ?title ?description ?img ?cell ?cellGeo ?datetimeBegin ?now ?datetimeEnd ?dateDiffBegin ?dateDiffEnd if(?now < ?datetimeBegin, ?dateDiffBegin, if(?datetimeEnd < ?now, ?dateDiffEnd, 0.0)) AS ?diff if(?diff = 0.0, 5.99, if(?diff > 0.0, 5.0+1.0/if(?diff/86400.0 < 1.0, 1.0, ?diff/86400.0), -1.0/if(?diff/86400.0 > -1.0, -1.0, ?diff/86400.0))) AS ?dateScore if(BOUND(?img), 1.0, 0.0) AS ?imageScore if(fn:string-length(?description) < 100, 0.0, if(fn:string-length(?description) < 800, 0.5, if(fn:string-length(?description) < 1400, 1.0, if(fn:string-length(?description) < 1800, 0.5, 0.0)))) AS ?descriptionScore (?imageScore + ?dateScore * 100000.0 + ?descriptionScore) AS ?score
WHERE {
GRAPH <http://3cixty.com/events> {?event a lode:Event .}
?event rdfs:label ?title .
?event locationOnt:cell ?cell .
?cell geo:location ?cellGeo .
OPTIONAL{?even
@rtroncy
rtroncy / gist:b0ca07e5c11f43c29dd1
Created February 11, 2015 15:10
SPARQL query that illustrate the POIs which don't have nearest thing because of lack of geodata in 3cixty
SELECT ?place ?pub
WHERE {
?place a dul:Place .
?place dc:publisher ?pub .
{
?place <http://data.linkedevents.org/def/location#businessType> <http://data.linkedevents.org/kos/3cixty/hotel> .
} UNION {
?place <http://data.linkedevents.org/def/location#businessType> <http://data.linkedevents.org/kos/3cixty/bar> .
} UNION {
?place <http://data.linkedevents.org/def/location#businessType> <http://data.linkedevents.org/kos/3cixty/restaurant> .
@rtroncy
rtroncy / gist:32214f9595ffe29bac1b
Created September 5, 2014 13:46
SPARQL query to find all restaurants within 1km distance of the venue of the Pearl Jam concert at San Siro in Milan
SELECT DISTINCT ?s ?cat
WHERE {
{
SELECT ?geoEvent
WHERE {
<http://data.linkedevents.org/event/247e69f0-ba4e-4423-92e6-17a9a8090344> lode:inSpace ?space .
?space geo:geometry ?geoEvent.
}
}
{
@rtroncy
rtroncy / gist:f47ea589666ccd2fd7a0
Created July 22, 2014 20:05
SPARQL query to get items from the Europeana endpoint matching a search term present in the creator/title/description properties
PREFIX dc: <http://purl.org/dc/elements/1.1/>
PREFIX edm: <http://www.europeana.eu/schemas/edm/>
PREFIX ore: <http://www.openarchives.org/ore/terms/>
PREFIX dct: <http://purl.org/dc/terms/>
SELECT ?item ?mediaurl ?poster ?date1 ?date2 ?description ?publisher1 ?publisher2 WHERE {
?proxy ore:proxyFor ?item;
dc:title ?title;
dc:creator ?creator;
dc:description ?description;
dc:type ?type;
@rtroncy
rtroncy / gist:9933458
Created April 2, 2014 12:51
SPARQL query to get features that have a geometry which is not a POINT
PREFIX lgd:<http://linkedgeodata.org/>
PREFIX lgdo:<http://linkedgeodata.org/ontology/>
PREFIX geom:<http://geovocab.org/geometry#>
PREFIX ogc:<http://www.opengis.net/ont/geosparql#>
SELECT * {
?s rdf:type lgdo:School .
?s rdfs:label ?label .
?s geom:geometry ?geo .
?geo ogc:asWKT ?v .