Ci-dessous, les différences entre deux révisions de la page.
| Prochaine révision | Révision précédente | ||
|
thatcamp_2014:ressources_sparql [2014/09/01 07:31] Francesco Beretta créée |
thatcamp_2014:ressources_sparql [2014/10/29 12:03] (Version actuelle) |
||
|---|---|---|---|
| Ligne 1: | Ligne 1: | ||
| - | Ressources concernant le web des données | + | ====== Ressources concernant le web des données ====== |
| + | |||
| + | |||
| + | ===== SPARQL Endpoints ===== | ||
| + | |||
| + | |||
| + | ==== Listes / présentations ==== | ||
| + | |||
| + | |||
| + | [[http://sparqles.okfn.org/availability|Liste des sites actifs]], mise à jour régulièrement | ||
| + | |||
| + | [[http://datahub.io/fr/dataset?q=sparql&sort=score+desc%2C+metadata_modified+desc|Datahub]]: site recensant des points d'accès aux données. | ||
| + | |||
| + | |||
| + | ==== Endpoints ==== | ||
| + | |||
| + | |||
| + | [[http://factforge.net/sparql|FactForge]] | ||
| + | |||
| + | [[http://www.geosparql.org/|GeoSPARQL]] Adresse du service: http://www.lotico.com:3030/lotico/sparql | ||
| + | |||
| + | |||
| + | ==== CLAROS Data ==== | ||
| + | |||
| + | |||
| + | [[http://data.clarosnet.org/|CLAROS data]] – [[http://data.clarosnet.org/sparql/|SPARQL Endpoint]] | ||
| + | |||
| + | Exemple | ||
| + | |||
| + | * compter le nombre de papyrus | ||
| + | <code> | ||
| + | SELECT (count(?s) as ?nombre) WHERE {?s crm:P2_has_type | ||
| + | <http://id.clarosnet.org/type/object/papyrus>} | ||
| + | </code> | ||
| + | * les propriétés des papyrus | ||
| + | <code> | ||
| + | SELECT DISTINCT ?p WHERE { ?s crm:P2_has_type | ||
| + | <http://id.clarosnet.org/type/object/papyrus>. | ||
| + | ?s ?p ?o} | ||
| + | </code> | ||
| + | rdf:type | ||
| + | crm:P70i_is_documented_in | ||
| + | crm:P102_has_title | ||
| + | rdfs:label | ||
| + | crm:P108i_was_produced_by | ||
| + | crm:P67i_is_referred_to_by | ||
| + | crm:P138i_has_representation | ||
| + | crm:P2_has_type | ||
| + | crm:P53_has_former_or_current_location | ||
| + | crm:P16i_was_used_for | ||
| + | crm:P45_consists_of | ||
| + | crm:P44_has_condition | ||
| + | claros:coordinates-find | ||
| + | claros:coordinates-current | ||
| + | |||
| + | <code> | ||
| + | SELECT DISTINCT ?o ?o2 WHERE { ?s crm:P2_has_type | ||
| + | <http://id.clarosnet.org/type/object/papyrus>. | ||
| + | ?s claros:coordinates-find ?o. | ||
| + | ?o ?p ?o2. | ||
| + | #?o2 claros:has_geoObject ?o3 | ||
| + | } | ||
| + | </code> | ||