next
previous
items

Data table via SPARQL

Homicides per million (Eurostat crim_gen and WHO WHS9_86 datasets)

Data table via SPARQL Published 31 Dec 2012 Last modified 26 Sep 2023
This page was archived on 26 Sep 2023 with reason: Other (Content is outdated. SPARQL endpoint is deprecated.)
This query combines the Eurostat crim_gen and WHO WHS9_86 population datasets to show homicides per million inhabitants. The WHO dataset is used because it has data for countries outside EU. (UK is reported per region and therefore doesn't appear)

Download this dataset

Dataset preview

(Live Query)

country date Homicides
"Australia" "2000-01-01"^^<http://www.w3.org/2001/XMLSchema#date> "18.88958463786265915257"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Austria" "2000-01-01"^^<http://www.w3.org/2001/XMLSchema#date> "10.24359775140537164272"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Belgium" "2000-01-01"^^<http://www.w3.org/2001/XMLSchema#date> "20.83333333333333333333"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Bulgaria" "2000-01-01"^^<http://www.w3.org/2001/XMLSchema#date> "41.46889832625530851861"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Canada" "2000-01-01"^^<http://www.w3.org/2001/XMLSchema#date> "17.8041543026706231454"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Croatia" "2000-01-01"^^<http://www.w3.org/2001/XMLSchema#date> "24.63382157123834886817"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Cyprus" "2000-01-01"^^<http://www.w3.org/2001/XMLSchema#date> "8.48356309650053022269"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Czech Republic" "2000-01-01"^^<http://www.w3.org/2001/XMLSchema#date> "17.47534901884213609294"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Denmark" "2000-01-01"^^<http://www.w3.org/2001/XMLSchema#date> "14.79400749063670411985"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Estonia" "2000-01-01"^^<http://www.w3.org/2001/XMLSchema#date> "104.30342815463165572574"^^<http://www.w3.org/2001/XMLSchema#decimal>

Received 449 rows in 0.006 seconds.


https://www.eea.europa.eu/data-and-maps/daviz/eionet/data/eea-data/homicides-per-million-eurostat-crim_gen-and-who-whs9_86-datasets-1/daviz.json

For system integrators

The following info can be used by a system developer / database administrator in order to retrieve this dataset programmatically over the web using a SPARQL client.

Are you new to Linked Data technology? visit http://linkeddata.org



http://semantic.eea.europa.eu/sparql

PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX qb: <http://purl.org/linked-data/cube#>
PREFIX sdmx-measure: <http://purl.org/linked-data/sdmx/2009/measure#>
PREFIX sdmx-dimension: <http://purl.org/linked-data/sdmx/2009/dimension#>
PREFIX sdmx-attribute: <http://purl.org/linked-data/sdmx/2009/attribute#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX property: <http://rdfdata.eionet.europa.eu/eurostat/property#>
PREFIX wproperty: <http://rdfdata.eionet.europa.eu/who/property#>

SELECT ?country ?date (?homicide * 1000 / ?population AS ?Homicides)
WHERE {
 GRAPH <http://rdfdata.eionet.europa.eu/eurostat/data/crim_gen.rdf.gz> {
    _:crim_gen qb:dataSet <http://rdfdata.eionet.europa.eu/eurostat/data/crim_gen>.
    _:crim_gen sdmx-dimension:freq <http://purl.org/linked-data/sdmx/2009/code#freq-A> .
    _:crim_gen property:crim <http://rdfdata.eionet.europa.eu/eurostat/dic/crim#HOM> .
    _:crim_gen property:unit <http://rdfdata.eionet.europa.eu/eurostat/dic/unit#NBR> .
    _:crim_gen property:geo ?geo .
    _:crim_gen sdmx-dimension:timePeriod ?date .
    _:crim_gen sdmx-measure:obsValue ?homicide
 }

 ?ucountry owl:sameAs ?geo

 GRAPH <http://rdfdata.eionet.europa.eu/who/data/WHS9_86.rdf.gz> {
    _:WHS9_86 qb:dataSet <http://rdfdata.eionet.europa.eu/who/data/WHS9_86>.
    _:WHS9_86 sdmx-dimension:freq <http://purl.org/linked-data/sdmx/2009/code#freq-A> .
    _:WHS9_86 sdmx-dimension:timePeriod ?date .
    _:WHS9_86 sdmx-dimension:refArea ?ucountry .
    _:WHS9_86 sdmx-measure:obsValue ?population
    FILTER((?ucountry != <http://rdfdata.eionet.europa.eu/who/dic/country#ISL> && ?population < 400000)
        || (?ucountry = <http://rdfdata.eionet.europa.eu/who/dic/country#ISL> && ?population < 500) )
 }
 ?ucountry rdfs:label ?country
} ORDER BY ?date ?country

Error when running query:

Error. Traceback (most recent call last):
  File "/plone/buildout-cache/eggs/Products.ZSPARQLMethod-2.3-py2.7.egg/Products/ZSPARQLMethod/Method.py", line 287, in run_with_timeout
    ret = func(*args, **kwargs)
  File "/plone/buildout-cache/eggs/Products.ZSPARQLMethod-2.3-py2.7.egg/Products/ZSPARQLMethod/Method.py", line 215, in query_and_get_result
    result = sparql.query(*args, timeout = kwargs.get("timeout", 0) or 0)
  File "/plone/buildout-cache/eggs/sparql_client-3.8-py2.7.egg/sparql.py", line 747, in query
    return s.query(query, timeout, raw=raw)
  File "/plone/buildout-cache/eggs/sparql_client-3.8-py2.7.egg/sparql.py", line 416, in query
    return q.query(query, timeout, raw=raw)
  File "/plone/buildout-cache/eggs/sparql_client-3.8-py2.7.egg/sparql.py", line 571, in query
    response = self._request(statement, timeout)
  File "/plone/buildout-cache/eggs/sparql_client-3.8-py2.7.egg/sparql.py", line 561, in _request
    response = self._build_response(query, opener, buf, timeout)
  File "/plone/buildout-cache/eggs/sparql_client-3.8-py2.7.egg/sparql.py", line 543, in _build_response
    timeout if timeout > 0 else None)
  File "/plone/buildout-cache/eggs/sparql_client-3.8-py2.7.egg/sparql.py", line 514, in _get_response
    response = opener.open(request, timeout=timeout)
  File "/usr/local/lib/python2.7/urllib2.py", line 429, in open
    response = self._open(req, data)
  File "/usr/local/lib/python2.7/urllib2.py", line 447, in _open
    '_open', req)
  File "/usr/local/lib/python2.7/urllib2.py", line 407, in _call_chain
    result = func(*args)
  File "/usr/local/lib/python2.7/urllib2.py", line 1241, in https_open
    context=self._context)
  File "/usr/local/lib/python2.7/urllib2.py", line 1201, in do_open
    r = h.getresponse(buffering=True)
  File "/usr/local/lib/python2.7/httplib.py", line 1148, in getresponse
    response.begin()
  File "/usr/local/lib/python2.7/httplib.py", line 448, in begin
    version, status, reason = self._read_status()
  File "/usr/local/lib/python2.7/httplib.py", line 404, in _read_status
    line = self.fp.readline(_MAXLINE + 1)
  File "/usr/local/lib/python2.7/socket.py", line 480, in readline
    data = self._sock.recv(self._rbufsize)
  File "/plone/buildout-cache/eggs/eventlet-0.21.0-py2.7.egg/eventlet/green/ssl.py", line 194, in recv
    return self._base_recv(buflen, flags, into=False)
  File "/plone/buildout-cache/eggs/eventlet-0.21.0-py2.7.egg/eventlet/green/ssl.py", line 227, in _base_recv
    read = self.read(nbytes)
  File "/plone/buildout-cache/eggs/eventlet-0.21.0-py2.7.egg/eventlet/green/ssl.py", line 139, in read
    super(GreenSSLSocket, self).read, *args, **kwargs)
  File "/plone/buildout-cache/eggs/eventlet-0.21.0-py2.7.egg/eventlet/green/ssl.py", line 119, in _call_trampolining
    timeout_exc=timeout_exc('timed out'))
  File "/plone/buildout-cache/eggs/eventlet-0.21.0-py2.7.egg/eventlet/hubs/__init__.py", line 163, in trampoline
    return hub.switch()
  File "/plone/buildout-cache/eggs/eventlet-0.21.0-py2.7.egg/eventlet/hubs/hub.py", line 295, in switch
    return self.greenlet.switch()
SSLError: ('timed out',)


Permalinks

Document Actions