Prístup k zdrojom dát prostredníctvom webového API s podporou dopytovania. Further information in the main CKAN Data API and DataStore documentation.
Prístup k dátovému API prostredníctvom nasledujúcich CKAN akcií API
Vytvoriť | https://geodirekt.sokigohosting.com/sk/api/3/action/datastore_create |
---|---|
Aktualizovať / Vložiť | https://geodirekt.sokigohosting.com/sk/api/3/action/datastore_upsert |
Dopyt | https://geodirekt.sokigohosting.com/sk/api/3/action/datastore_search |
Dopyt (prostredníctvom SQL) | https://geodirekt.sokigohosting.com/sk/api/3/action/datastore_search_sql |
https://geodirekt.sokigohosting.com/sk/api/3/action/datastore_search?resource_id=e8d873cf-1dc5-4d8d-85f7-3ef52d276883&limit=5
https://geodirekt.sokigohosting.com/sk/api/3/action/datastore_search?q=jones&resource_id=e8d873cf-1dc5-4d8d-85f7-3ef52d276883
https://geodirekt.sokigohosting.com/sk/api/3/action/datastore_search_sql?sql=SELECT * from "e8d873cf-1dc5-4d8d-85f7-3ef52d276883" WHERE title LIKE 'jones'
Jednoduchá ajaxová (JSONP) požiadavka pre dátovú API využívajúcu jQuery
var data = { resource_id: 'e8d873cf-1dc5-4d8d-85f7-3ef52d276883', // the resource id limit: 5, // get 5 results q: 'jones' // query for 'jones' }; $.ajax({ url: 'https://geodirekt.sokigohosting.com/sk/api/3/action/datastore_search', data: data, dataType: 'jsonp', success: function(data) { alert('Total results found: ' + data.result.total) } });
import urllib url = 'https://geodirekt.sokigohosting.com/sk/api/3/action/datastore_search?resource_id=e8d873cf-1dc5-4d8d-85f7-3ef52d276883&limit=5&q=title:jones' fileobj = urllib.urlopen(url) print fileobj.read()