This application is a simple demonstration of FFT usage using the 311 data available through NYC OPEN DATA API
The NYC 311 data is made available through SOCRDATA API and the following end point is used for getting the data
URL : https://data.cityofnewyork.us/resource/erm2-nwe9.json
$select : date_trunc_ymd(created_date) as month, count(*) as total&$group=month
$where : $where=created_date >= '2014-01-01' and agency_name='Department of Health and Mental Hygiene'
$order=created_date
ALl the code relavant for this example is available in public/lib folder