Data Visit Provence
Open Government Data Initiative version 5.0
For Developers

Overview

OGDI DataLab is written using C# and the .NET Framework, targeted for Microsoft's Windows Azure Platform cloud-computing platform. Data Service.

The DataService uses RESTful Web service to expose data for programmatic access via a number of formats, including Open Data Protocol (OData)**, an extension to **Atom Publishing Protocol (AtomPub), Keyhole Markup Language (KML), JSON and JSONP.

The Data Browser is written an ASP.NET MVC 3.0 and uses jQuery and a variety of other open source components and enables users to browse and query published data.

The Data Loader is desktop client tool that includes both GUI-based and console-based data loader tools.

Querying OGDI DataLab

OGDI DataLab exposes data through RESTClick to get REST article on the Wikipedia Web services. The basic format of an OGDI service call is http://ogdi.cloudapp.net/v1/container/dataset?query, where:

  • container is the name of the container (for example, "dc" for the District of Columbia's data sets).
  • dataset is the name of the data set (for example, "CrimeIncidents" for the Crime Incidents data set in the DC container).
  • query is your set of query parameters, expressed using a subset of the WCF Data Services query syntax.Click to get WCF Data Services query syntax

Note that OGDI DataLab currently only supports the $filter and $top query options in the WCF Data Services query syntax.

Also note that if a property has a null value for a particular entity in the data set, it will be omitted entirely from the result set returned by OGDI DataLab. For example, in the Crime Incidents data set, the "method" property is only returned for records that have a "method" value in the underlying data set. Your application design should take this into account and handle potentially missing properties.

Data Formats

AtomPub

By default, OGDI DataLab returns data in the Open Data Protocol (OData)Open Data Protocol (OData) format. This format extends the broadly adopted Atom Publishing ProtocolClick to get Atom Publishing Protocol and can be easily consumed by a variety of platforms, including Microsoft .NET, Java, Ruby, PHP, and Python. Refer to the code samples on the Data Browser page for examples.

JSON

OGDI Lab can also return data in the JavaScript Object Notation (JSON)Click to get JavaScript Object Notation format, which can be conveniently consumed using JavaScript and other technologies. To return data in JSON format, simply append the format=json parameter to your query. For example, to retrieve crime incidents in Washington, DC that occurred during the police department's evening shift in JSON format:

http://ogdi.cloudapp.net/v1/dc/CrimeIncidents?$filter=shift eq 'EVN'&format=json

JSONP

To mitigate security vulnerabilities associated with cross-site scripting attacks, Web browsers generally prevent client-side JavaScript applications originating in one network domain (for example, yourdomain.com) from making HTTP requests to other network domains (for example, the ogdi.cloudapp.net network domain that hosts the OGDI DataLab data services). This can prevent JavaScript applications hosted in another domain from making straight-forward calls to the OGDI DataLab data services, but there a variety of techniques that can be used, such as this widely-used IFRAMES-based techniqueClick to get IFRAMES-based technique described by Michael Mahemoff.

OGDI DataLab's data services also provide direct support for the JSONPClick to get JSONP technique. Using this technique, OGDI's data services will call a callback function that you specify, passing in the results of your query in JSON format as an input format. To use this technique, issue a query with the following additional parameters: format=json&callback=yourCallback, where yourCallback is the name of a JavaScript callback function defined on the Web page issuing the request.

Refer to the JavaScript sample on the Data Browser page for an example of using JSONP with OGDI DataLab. In that sample, the AdditionalDataLoaded() function is the JSONP callback function.

RDF

OGDI DataLab can also return data in the RDF (Resource Description Framework) format. RDF is a graph model for describing formally web resources and their associated metadata. Developed by W3C, RDF is a base language for semantic Web. To return data in RDF format, simply append the format=rdf parameter to your query:

http://ogdi.cloudapp.net/v1/dc/CrimeIncidents?$filter=shift eq 'EVN'&format=rdf

Geospatial Data

Many of the data sets in OGDI DataLab also include geospatial data, which is returned in the Keyhole Markup Language (KML)Click to get Keyhole Markup Language format. This format is compatible with popular desktop and Web-based mapping technologies including Microsoft Bing MapsClick to get Bing Maps, Google MapsClick to get Google Maps, Yahoo! MapsClick to get Yahoo! Maps, and Google EarthClick to get Google Earth.

To return geospatial data in KML format, append the format=kml parameter to your query. For example, to retrieve geospatial points in KML format for crime incidents in DC that occurred during the police department's evening shift:

http://ogdi.cloudapp.net/v1/dc/CrimeIncidents?$filter=shift eq 'EVN'&format=kml

Note that if the data set that you are using does not include any geospatial data, a KML query to OGDI DataLab will return an empty result set.

Paging

OGDI DataLab and the underlying Windows Azure Table Storage service support paging through large sets of query results. The documentation for Query Timeout and PaginationClick to get Query Timeout and Pagination in the Windows Azure Table Storage service provides a complete description of how OGDI and the underlying Azure platform support paging. You can also refer to the "C#/ASP.NET Paging" sample on the Data Browser page, which demonstrates how to perform paged queries using the WCF Data Services client library.

Client Libraries

Developers using Microsoft Visual Studio 2010Click to get Microsoft Visual Studio 2010 (or later) can use WCF Data ServicesClick to get WCF Data Services to access data from OGDI through easy-to-use .NET classes. Within Visual Studio, this is accomplished by using the Add Service ReferenceA video showing how to consume ADO.NET Data Service in a .NET Application feature (see .NET samples on the Data Browser page). To make accessing OGDI data easier, Java developers can use Restlet Extension for WCF Data ServicesRestlet Extension for WCF Data Services. PHP developers can take advantage of the Toolkit for Toolkit for PHP with WCF Data ServicesToolkit for PHP with WCF Data Services.

On click of Bookmark and Share, will open new window for saving this web page as a bookmark
Fork me on GitHub