Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- prefix bibo: <http://purl.org/ontology/bibo/>
- prefix dcterms: <http://purl.org/dc/terms/>
- select distinct ?s ?title ?uri
- where {
- ?s dcterms:title ?title .
- ?s dcterms:subject ?subject .
- ?s bibo:uri ?uri
- FILTER (str(?subject) = 'http://aims.fao.org/aos/agrovoc/c_35332')
- }
- limit 50
- ==============================================
- PREFIX skos:<http://www.w3.org/2004/02/skos/core#>
- select ?uri
- where {
- ?termuri skos:broader ?uri
- FILTER (str(?termuri) = 'http://aims.fao.org/aos/agrovoc/c_6599')
- }
- ==============================================
- select ?p ?o
- where {
- <http://aims.fao.org/aos/agrovoc/c_6599> ?p ?o
- }
- ==============================================
- select ?p ?o
- where {
- <http://dbpedia.org/resource/The_Lord_of_the_Rings> ?p ?o
- }
- ==============================================
- http://librdf.org/query
- http://www.cambridgesemantics.com/semantic-university/sparql-by-example
- http://code.google.com/p/tdwg-rdf/wiki/Beginners6SPARQL
- http://spcdata.digitpa.gov.it:8899/sparql?nsdecl
- http://www.w3.org/TR/rdf-sparql-query/#BGPsparql
- http://linkeddata.org/
- ===========================================
- ===========================================
- http://www.w3.org/2000/08/w3c-synd/home.rss
- PREFIX atom: <http://www.w3.org/2005/Atom>
- SELECT ?title ?summary
- WHERE {
- ?x atom:title ?title. FILTER regex(?title, "^W")
- ?x atom:summary ?summary
- }
- ========================================
- http://infoandina.org/rss.xml
- PREFIX dc: <http://purl.org/dc/elements/1.1/>
- SELECT DISTINCT ?title ?description ?identifier
- WHERE {
- ?x dc:title ?title.
- ?x dc:description ?description.
- ?x dc:identifier ?identifier
- }
- LIMIT 1
- ======================================
- http://dig.csail.mit.edu/2008/webdav/timbl/foaf.rdf
- PREFIX foaf: <http://xmlns.com/foaf/0.1/>
- PREFIX dc: <http://purl.org/dc/elements/1.1/>
- SELECT DISTINCT ?name ?img ?mbox ?org
- WHERE {
- ?x foaf:name ?name.
- OPTIONAL {?x foaf:mbox ?mbox}
- OPTIONAL {?x foaf:organization ?org}
- OPTIONAL {?x foaf:img ?img}
- }
- ================================================================
- ================================================================
- ================================================================
- http://www.w3.org/TR/cooluris/
- http://rdfa.info
- confederacion hidrografica saih -> hebro taio
- UGICH
- Geosur
- Magrama
- Pfasteter
- http://prefix.cc/foaf
- http://linkedgeodata.org/About
- http://factforge.net/sparql
- http://ori.edina.ac.uk/sparql.html
- http://wifo5-04.informatik.uni-mannheim.de/factbook/
- http://www.geonames.org/ontology/documentation.html
- http://blog.kasabi.com/2012/07/30/so-long-and-thanks-for-all-the-data/
- http://datahub.io
- http://drupal.org/project/getdirections
- http://drupaldata.com/
- http://drupal.org/project/odv
- http://drupal.org/project/restws
- http://drupal.org/project/wsclient
- http://drupal.org/project/rules_web_hooks
- https://www.ibm.com/developerworks/web/library/wa-rdf/
- https://www.ibm.com/developerworks/web/library/wa-datasets/
- mapas
- https://camp2012.nwdrupal.org.uk/sessions/photos-georeferencing-and-drupal
- http://telesle.net/blog/2009/01/28/mapping-photos-using-georss/
- http://webapps.stackexchange.com/questions/23400/load-multiple-kmz-files-or-georss-feeds-in-google-maps
- http://openlayers.org/dev/examples/georss.html
- require_once(drupal_get_path('module', 'rdfx') . '/vendor/arc/ARC2.php');
- links
- http://wolfgangziegler.net/article/Creating-Linked-Open-Data-Austria-at-the-Vienna-Create-Camp-11
- http://www.drupal-austria.at/projekte/linked-open-data-austria
- browser
- http://graphite.ecs.soton.ac.uk
- oai2
- http://www.mtnforum.org/oai2?verb=ListRecords&metadataPrefix=oai_dc
- http://www.mtnforum.org/oai2?verb=ListIdentifiers&metadataPrefix=oai_dc
- http://www.mtnforum.org/oai2?verb=Identify
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement