Advertisement
Guest User

Untitled

a guest
Aug 2nd, 2010
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. PREFIX wn20schema: <http://www.w3.org/2006/03/wn/wn20/schema/>
  2. PREFIX owl: <http://www.w3.org/2002/07/owl#>
  3. PREFIX dbprop: <http://dbpedia.org/property/>
  4. PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
  5. PREFIX lgdvocab: <http://linkedgeodata.org/vocabulary#>
  6. SELECT count distinct ?geo where
  7. {?geo lgdvocab:name ?name.
  8. ?geo a ?type.
  9. ?geomapped a ?type.
  10. ?dbresource owl:sameAs ?geomapped.
  11. ?dbresource dbprop:wordnet_type ?aSynsetWN.
  12. ?aSynsetRKB owl:sameAs ?aSynsetWN.
  13. ?aSynsetRKB wn20schema:containsWordSense ?aWordSense .
  14. ?aWordSense wn20schema:word ?aWord .
  15. ?aWord wn20schema:lexicalForm "stadium".}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement