Copy the following HTML and paste into your webpage to embed this view.
<iframe src='https://catalog.sarawak.gov.my/dataset/data-on-electrical-installation-and-generatiion/resource/ac08052f-52c2-4b7f-94c3-52dec95cb940/view/e8a02b90-e396-4a7f-a0c8-6c2f8075d717' frameBorder="0"></iframe>
The Data API can be accessed via the following actions of the CKAN action API.
https://catalog.sarawak.gov.my/api/3/action/datastore_search
https://catalog.sarawak.gov.my/api/3/action/datastore_search?resource_id=ac08052f-52c2-4b7f-94c3-52dec95cb940&limit=5
https://catalog.sarawak.gov.my/api/3/action/datastore_search?resource_id=ac08052f-52c2-4b7f-94c3-52dec95cb940&q=jones
A simple ajax (JSONP) request to the data API using jQuery.
var data = { resource_id: 'ac08052f-52c2-4b7f-94c3-52dec95cb940', // the resource id limit: 5, // get 5 results q: 'jones' // query for 'jones' }; $.ajax({ url: 'https://catalog.sarawak.gov.my/api/3/action/datastore_search', data: data, dataType: 'jsonp', success: function(data) { alert('Total results found: ' + data.result.total) } });
import urllib url = 'https://catalog.sarawak.gov.my/api/3/action/datastore_search?resource_id=ac08052f-52c2-4b7f-94c3-52dec95cb940&limit=5&q=title:jones' fileobj = urllib.urlopen(url) print fileobj.read()