Socrata was acquired by Tyler Technologies in 2018 and is now the Data and Insights division of Tyler. The platform is still powered by the same software formerly known as Socrata but you will see references to Data & Insights going forward.

Using a jQueryUI date slider to build a SODA Query

This example shows how to use a jQueryUI date range slider to build a SODA API query on demand. The user selects the range of data they want, JavaScript builds the corresponding SoQL call and fetches the data from a Socrata dataset.

Let’s start with Fort Worth’s Certificate of Occupancy Dataset [Editors Note: This dataset has since been removed, but we’ll keep this example up since it’s still useful]. It contains over 36,000 records dating back to the mid 1990s. The task at hand will be to allow a user to easily select a range of dates, and see the corresponding data in an HTML table. (In the real world, we’d want to spruce up the UI for the results a bit more or actually do something with the data, but a table will suffice for now)

Let’s get down to business. jQueryUI does have a simple slider out of the box, but there’s a great plugin called jQRangeSlider that greatly simplifies the setup and interaction for sliders. With just a few lines of code, we can initialize a date slider with a specified range. Just make a div with id ‘slider’ and jQRangeSlider takes care of the rest:

// Today
var dateMax = new Date();

// Hard-coded min date. Could get this programmatically later
var dateMin = new Date(2000, 0, 1);

$("#slider").dateRangeSlider({
    bounds: {
        min: dateMin,
        max: dateMax
    },
    defaultValues: {
        min: new Date(2014, 0, 1),
        max: dateMax
    }
});

Next, we’ll add a listener for when the user clicks the submit button. We’ll want to grab the dates that were set on the slider, and transform them into the format that SODA expects for date queries.

Our target dataset has two date columns, but we’ll be focused on codate, the date the certificate of occupancy was issued. The API call we eventually want will have a $where clause with two date comparisons that will look something like this:

/resource/i85s-46fv.json?$where=codate >= '2014-07-01' AND codate < '2014-07-31'

We make use of another great javascript library called moment.js to handle the reformatting of the time objects. Here’s our submit button listener, which gets the dates, reformats them, then builds the API call:

$('#submitButton').on('click', function() {
    // Base SODA endpoint. Leave off .json file type so we can use it later for csv download
    baseURL = 'https://data.fortworthtexas.gov/resource/i85s-46fv';

    // Get the selected dates from the slider
    inputMax = $("#slider").dateRangeSlider("max");
    inputMin = $("#slider").dateRangeSlider("min");

    // Sample API call: https://data.fortworthtexas.gov/resource/i85s-46fv.json?$where=codate >= '2014-07-01' AND codate < '2014-07-31'

    // Format the min and max date into YYYY-MM-DD required for SODA
    inputMax = moment(inputMax)
      .add(1, 'days')
      .format("YYYY-MM-DD");

    inputMin = moment(inputMin)
      .format("YYYY-MM-DD");

    // Build the API call
    var apiCall = baseURL 
      + '.json?$where=codate >= \''
      + inputMin 
      + '\' AND codate < \'' 
      + inputMax + '\'';

    getSodaData(apiCall);
});

Note, to ensure that results are inclusive of both the start and end date, we use >= on our lower bound.

The getSodaData() function uses jQuery’s $.getJSON() to fetch the data.

function getSodaData(apiCall) {
  // Make the API call
   $.getJSON(apiCall, function(data) {

        // Populate the table using dynatable.js
        $('#my-final-table').dynatable({
            dataset: {
                records: data
            }
        });

        // Reveal the table and the download button
        $('#downloadButton').fadeIn();
        $('.tableContainer').slideDown(1200);
    });
}

A library called dynatable.js allows us to quickly populate a table from this raw json. The table already exists on the page, but only has column headers. dynatable.js compares the data we pass in to the headers in the table and displays only the data that has a header (the raw data from the API call has 36 columns, we’ve chosen the first few to display in the results table in this example) Once we have our table populated, we can reveal it with a jQuery .slidedown() and show the CSV download button.

The CSV download button is really just doing the same API call, except with .csv as the file type. By opening a new window location with this CSV file, the browser wants to download it as a file.

$('#downloadButton').on('click', function(e) {
  var csvURL = baseURL 
    + '.csv?$where=codate >= \'' 
    + inputMin 
    + '\' AND codate < \'' 
    + inputMax + '\'';

  e.preventDefault(); // Stop the browser from following
  window.location.href = csvURL;
}); 

There you have it. This technique could be useful for building little contextual data widgets on a city agency’s website that leverage the same Open Data they release to the world. This is an example of “dogfooding” in Open Data, or the idea that the Open Data should be of such high quality that the producer of the data could actually use it for real-world applications.

Take a look at the working demonstration, or fork the code here.

Happy hacking!