Skip to content

Commit

Permalink
Update visuals
Browse files Browse the repository at this point in the history
  • Loading branch information
GordianDziwis committed Jul 15, 2019
1 parent bcea0e7 commit 475985d
Show file tree
Hide file tree
Showing 13 changed files with 15 additions and 7 deletions.
1 change: 1 addition & 0 deletions qgis/cluster.cpg
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
UTF-8
Binary file added qgis/cluster.dbf
Binary file not shown.
1 change: 1 addition & 0 deletions qgis/cluster.prj
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]]
1 change: 1 addition & 0 deletions qgis/cluster.qpj
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]]
Binary file added qgis/cluster.shp
Binary file not shown.
Binary file added qgis/cluster.shx
Binary file not shown.
Binary file modified qgis/clusters.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified qgis/datasets-osm.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified qgis/datasets-qrowd.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified qgis/datasets-trento.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified qgis/datasets.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified qgis/visualization.qgz
Binary file not shown.
19 changes: 12 additions & 7 deletions visualization/evaluation.sparql
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ PREFIX owl: <http://www.w3.org/2002/07/owl#>
select ?prove (count(distinct ?bikerack) AS ?n) {
?bikerack a lgdo:BicycleParking ;
todo:prove/rdfs:label ?prove .
} group by ?prove
}
group by ?prove

select ?p
(count(distinct ?osm) AS ?osmPre)
Expand All @@ -35,16 +36,14 @@ select ?p
group by ?p
order by ?p

select (count(distinct ?cluster) AS ?otq) {
?cluster todo:member/todo:prove/rdfs:label "osm" .
?cluster todo:member/todo:prove/rdfs:label "trento" .
?cluster todo:member/todo:prove/rdfs:label "qrowd" .
select (count(distinct ?cluster) AS ?numCluster) {
?cluster a todo:SameAsCluster .
}

select (count(distinct ?cluster) AS ?ot) {
select (count(distinct ?cluster) AS ?otq) {
?cluster todo:member/todo:prove/rdfs:label "osm" .
?cluster todo:member/todo:prove/rdfs:label "trento" .
filter not exists { ?cluster todo:member/todo:prove/rdfs:label "qrowd" }
?cluster todo:member/todo:prove/rdfs:label "qrowd" .
}

select (count(distinct ?cluster) AS ?tq) {
Expand All @@ -59,6 +58,12 @@ select (count(distinct ?cluster) AS ?qo) {
?cluster todo:member/todo:prove/rdfs:label "qrowd" .
}

select (count(distinct ?cluster) AS ?ot) {
?cluster todo:member/todo:prove/rdfs:label "osm" .
?cluster todo:member/todo:prove/rdfs:label "trento" .
filter not exists { ?cluster todo:member/todo:prove/rdfs:label "qrowd" }
}

select (count(distinct ?bikerack) AS ?o) {
?bikerack todo:prove/rdfs:label "osm" .
filter not exists { ?cluster todo:member ?bikerack }
Expand Down

0 comments on commit 475985d

Please sign in to comment.