Skip to content

Commit

Permalink
deleted obsolete test files
Browse files Browse the repository at this point in the history
  • Loading branch information
baskaufs committed Jul 22, 2015
1 parent 2d1f67c commit 11b2602
Show file tree
Hide file tree
Showing 12 changed files with 114 additions and 87 deletions.
9 changes: 0 additions & 9 deletions check-screen-size.js

This file was deleted.

6 changes: 0 additions & 6 deletions determinations-small.csv

This file was deleted.

61 changes: 0 additions & 61 deletions images-small.csv

This file was deleted.

6 changes: 0 additions & 6 deletions names-small.csv

This file was deleted.

5 changes: 0 additions & 5 deletions organisms-small.csv

This file was deleted.

24 changes: 24 additions & 0 deletions sparql/counting-query.sparql
@@ -0,0 +1,24 @@
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX ac: <http://rs.tdwg.org/ac/terms/>
PREFIX dwc: <http://rs.tdwg.org/dwc/terms/>
PREFIX dwciri: <http://rs.tdwg.org/dwc/iri/>
PREFIX dsw: <http://purl.org/dsw/>
PREFIX Iptc4xmpExt: <http://iptc.org/std/Iptc4xmpExt/2008-02-29/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX dc: <http://purl.org/dc/elements/1.1/>
PREFIX dcterms: <http://purl.org/dc/terms/>
SELECT (COUNT(?subject) AS ?count)
FROM <http://rdf.library.vanderbilt.edu/bioimages/images.rdf>
FROM <http://rdf.library.vanderbilt.edu/bioimages/organisms.rdf>
FROM <http://rdf.library.vanderbilt.edu/bioimages/baskauf.rdf>
FROM <http://rdf.library.vanderbilt.edu/bioimages/thomas.rdf>
FROM <http://rdf.library.vanderbilt.edu/bioimages/uri.rdf>
FROM <http://rdf.library.vanderbilt.edu/bioimages/kirchoff.rdf>
FROM <http://rdf.library.vanderbilt.edu/bioimages/ncu-all.rdf>
FROM <http://rdf.library.vanderbilt.edu/bioimages/dsw.owl>
FROM <http://rdf.library.vanderbilt.edu/bioimages/dwcterms.rdf>
FROM <http://rdf.library.vanderbilt.edu/bioimages/local.rdf>
FROM <http://rdf.library.vanderbilt.edu/bioimages/stdview.rdf>
WHERE {
?subject ?predicate ?object.
}
9 changes: 9 additions & 0 deletions sparql/inverse-depicts-reasoning.sparql
@@ -0,0 +1,9 @@
query=PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
CONSTRUCT {?object foaf:depiction ?subject}
WHERE {
?subject foaf:depicts ?object.
MINUS {?object foaf:depiction ?subject.}
}

LIMIT 5
9 changes: 9 additions & 0 deletions sparql/inverse-locates-reasoning.sparql
@@ -0,0 +1,9 @@
query=PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX dsw: <http://purl.org/dsw/>
CONSTRUCT {?object dsw:locates ?subject}
WHERE {
?subject dsw:locatedAt ?object.
MINUS {?object dsw:locates ?subject.}
}

LIMIT 5
10 changes: 10 additions & 0 deletions sparql/inverse-reasoning.sparql
@@ -0,0 +1,10 @@
query=PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
CONSTRUCT {?object foaf ?subject}
WHERE {
?property rdfs:domain ?class.
?resource ?property ?object.
?property dc:creator "Steve Baskauf".
MINUS {?resource a ?class.}
}

LIMIT 5
23 changes: 23 additions & 0 deletions sparql/test-construct.sparql
@@ -0,0 +1,23 @@
query=
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX ac: <http://rs.tdwg.org/ac/terms/>
PREFIX dwc: <http://rs.tdwg.org/dwc/terms/>
PREFIX dsw: <http://purl.org/dsw/>
PREFIX Iptc4xmpExt: <http://iptc.org/std/Iptc4xmpExt/2008-02-29/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX dcterms: <http://purl.org/dc/terms/>
CONSTRUCT {?image foaf:depicts ?organism}
WHERE {
?identification dwc:genus "Quercus".
?identification dwc:specificEpithet "alba".
?organism dsw:hasIdentification ?identification.
?organism foaf:depiction ?image.
?organism dsw:hasOccurrence ?occurrence.
?occurrence dsw:atEvent ?event.
?event dsw:locatedAt ?location.
?location dwc:stateProvince "Tennessee".
?image Iptc4xmpExt:CVterm ?view.
?view rdfs:subClassOf ?featureCategory.
?featureCategory rdfs:label "leaf".
}

11 changes: 11 additions & 0 deletions sparql/test-reasoning.sparql
@@ -0,0 +1,11 @@
query=PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX dc: <http://purl.org/dc/elements/1.1/>
CONSTRUCT {?resource a ?class}
WHERE {
?property rdfs:domain ?class.
?resource ?property ?object.
?property dc:creator "Steve Baskauf".
MINUS {?resource a ?class.}
}

LIMIT 5
28 changes: 28 additions & 0 deletions sparql/test.sparql
@@ -0,0 +1,28 @@
query=
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX ac: <http://rs.tdwg.org/ac/terms/>
PREFIX dwc: <http://rs.tdwg.org/dwc/terms/>
PREFIX dsw: <http://purl.org/dsw/>
PREFIX Iptc4xmpExt: <http://iptc.org/std/Iptc4xmpExt/2008-02-29/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX dcterms: <http://purl.org/dc/terms/>
SELECT DISTINCT ?uri ?image ?title WHERE {
?identification dwc:genus "Quercus".
?identification dwc:specificEpithet "alba".
?organism dsw:hasIdentification ?identification.
?organism foaf:depiction ?image.
?organism dsw:hasOccurrence ?occurrence.
?occurrence dsw:atEvent ?event.
?event dsw:locatedAt ?location.
?location dwc:stateProvince "Tennessee".
?image Iptc4xmpExt:CVterm ?view.
?view rdfs:subClassOf ?featureCategory.
?featureCategory rdfs:label "leaf".
?image ac:hasServiceAccessPoint ?sap.
?sap ac:accessURI ?uri.
?sap ac:variant ac:Thumbnail.
?image dcterms:title ?title.
}
LIMIT 10


0 comments on commit 11b2602

Please sign in to comment.