Advertisement
asanchez75

SPARQL

Mar 16th, 2013
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.72 KB | None | 0 0
  1. prefix bibo: <http://purl.org/ontology/bibo/>
  2. prefix dcterms: <http://purl.org/dc/terms/>
  3. select distinct ?s ?title ?uri
  4. where {
  5. ?s dcterms:title ?title .
  6. ?s dcterms:subject ?subject .
  7. ?s bibo:uri ?uri
  8. FILTER (str(?subject) = 'http://aims.fao.org/aos/agrovoc/c_35332')
  9. }
  10. limit 50
  11.  
  12. ==============================================
  13. PREFIX skos:<http://www.w3.org/2004/02/skos/core#>
  14. select ?uri
  15. where {
  16. ?termuri skos:broader ?uri
  17. FILTER (str(?termuri) = 'http://aims.fao.org/aos/agrovoc/c_6599')
  18. }
  19. ==============================================
  20. select ?p ?o
  21. where {
  22. <http://aims.fao.org/aos/agrovoc/c_6599> ?p ?o
  23. }
  24. ==============================================
  25. select ?p ?o
  26. where {
  27. <http://dbpedia.org/resource/The_Lord_of_the_Rings> ?p ?o
  28. }
  29. ==============================================
  30. http://librdf.org/query
  31. http://www.cambridgesemantics.com/semantic-university/sparql-by-example
  32. http://code.google.com/p/tdwg-rdf/wiki/Beginners6SPARQL
  33. http://spcdata.digitpa.gov.it:8899/sparql?nsdecl
  34. http://www.w3.org/TR/rdf-sparql-query/#BGPsparql
  35. http://linkeddata.org/
  36.  
  37. ===========================================
  38. ===========================================
  39. http://www.w3.org/2000/08/w3c-synd/home.rss
  40.  
  41. PREFIX atom: <http://www.w3.org/2005/Atom>
  42. SELECT ?title ?summary
  43. WHERE {
  44. ?x atom:title ?title. FILTER regex(?title, "^W")
  45. ?x atom:summary ?summary
  46. }
  47.  
  48. ========================================
  49.  
  50. http://infoandina.org/rss.xml
  51.  
  52. PREFIX dc: <http://purl.org/dc/elements/1.1/>
  53. SELECT DISTINCT ?title ?description ?identifier
  54. WHERE {
  55. ?x dc:title ?title.
  56. ?x dc:description ?description.
  57. ?x dc:identifier ?identifier
  58. }
  59. LIMIT 1
  60.  
  61.  
  62. ======================================
  63. http://dig.csail.mit.edu/2008/webdav/timbl/foaf.rdf
  64.  
  65. PREFIX foaf: <http://xmlns.com/foaf/0.1/>
  66. PREFIX dc: <http://purl.org/dc/elements/1.1/>
  67. SELECT DISTINCT ?name ?img ?mbox ?org
  68. WHERE {
  69. ?x foaf:name ?name.
  70. OPTIONAL {?x foaf:mbox ?mbox}
  71. OPTIONAL {?x foaf:organization ?org}
  72. OPTIONAL {?x foaf:img ?img}
  73. }
  74.  
  75. ================================================================
  76. ================================================================
  77. ================================================================
  78. http://www.w3.org/TR/cooluris/
  79. http://rdfa.info
  80.  
  81. confederacion hidrografica saih -> hebro taio
  82. UGICH
  83. Geosur
  84. Magrama
  85. Pfasteter
  86.  
  87. http://prefix.cc/foaf
  88. http://linkedgeodata.org/About
  89. http://factforge.net/sparql
  90. http://ori.edina.ac.uk/sparql.html
  91. http://wifo5-04.informatik.uni-mannheim.de/factbook/
  92. http://www.geonames.org/ontology/documentation.html
  93. http://blog.kasabi.com/2012/07/30/so-long-and-thanks-for-all-the-data/
  94. http://datahub.io
  95. http://drupal.org/project/getdirections
  96. http://drupaldata.com/
  97. http://drupal.org/project/odv
  98. http://drupal.org/project/restws
  99. http://drupal.org/project/wsclient
  100. http://drupal.org/project/rules_web_hooks
  101.  
  102. https://www.ibm.com/developerworks/web/library/wa-rdf/
  103. https://www.ibm.com/developerworks/web/library/wa-datasets/
  104.  
  105. mapas
  106. https://camp2012.nwdrupal.org.uk/sessions/photos-georeferencing-and-drupal
  107. http://telesle.net/blog/2009/01/28/mapping-photos-using-georss/
  108. http://webapps.stackexchange.com/questions/23400/load-multiple-kmz-files-or-georss-feeds-in-google-maps
  109. http://openlayers.org/dev/examples/georss.html
  110.  
  111. require_once(drupal_get_path('module', 'rdfx') . '/vendor/arc/ARC2.php');
  112.  
  113. links
  114. http://wolfgangziegler.net/article/Creating-Linked-Open-Data-Austria-at-the-Vienna-Create-Camp-11
  115. http://www.drupal-austria.at/projekte/linked-open-data-austria
  116.  
  117. browser
  118. http://graphite.ecs.soton.ac.uk
  119.  
  120.  
  121. oai2
  122. http://www.mtnforum.org/oai2?verb=ListRecords&metadataPrefix=oai_dc
  123. http://www.mtnforum.org/oai2?verb=ListIdentifiers&metadataPrefix=oai_dc
  124. http://www.mtnforum.org/oai2?verb=Identify
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement