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.
OGDI DataLab exposes data through REST Web services. The basic format of an OGDI service call is http://ogdi.cloudapp.net/v1/container/dataset?query, where:
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.
By default, OGDI DataLab returns data in the Open Data Protocol (OData) format. This format extends the broadly adopted 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.
OGDI Lab can also return data in the JavaScript Object Notation (JSON) 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
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 technique described by Michael Mahemoff.
OGDI DataLab's data services also provide direct support for the 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.
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
Many of the data sets in OGDI DataLab also include geospatial data, which is returned in the Keyhole Markup Language (KML) format. This format is compatible with popular desktop and Web-based mapping technologies including Microsoft Bing Maps, Google Maps, Yahoo! Maps, and 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.
OGDI DataLab and the underlying Windows Azure Table Storage service support paging through large sets of query results. The documentation for 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.
Developers using Microsoft Visual Studio 2010 (or later) can use 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 Reference feature (see .NET samples on the Data Browser page). To make accessing OGDI data easier, Java developers can use Restlet Extension for WCF Data Services. PHP developers can take advantage of the Toolkit for Toolkit for PHP with WCF Data Services.