-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsql_queries.js
456 lines (413 loc) · 14.4 KB
/
sql_queries.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
import sls from 'single-line-string';
import { cartoTables } from './app_config';
const { nyc_borough,
nyc_city_council,
nyc_community_board,
nyc_neighborhood,
nyc_nypd_precinct,
nyc_senate,
nyc_assembly,
nyc_intersections,
nyc_crashes } = cartoTables;
// Links each boundary filter name to a SQL query
export const filterByAreaSQL = {
borough: sls`
SELECT DISTINCT
identifier,
ST_Collect(the_geom) as the_geom
FROM
${nyc_borough}
GROUP BY
identifier
`,
city_council: sls`
SELECT DISTINCT
identifier,
ST_Collect(the_geom) as the_geom
FROM
${nyc_city_council}
GROUP BY
identifier
`,
community_board: sls`
SELECT DISTINCT
identifier,
ST_Collect(the_geom) as the_geom
FROM
${nyc_community_board}
GROUP BY
identifier
`,
neighborhood: sls`
SELECT DISTINCT
identifier,
ST_Collect(the_geom) as the_geom
FROM
${nyc_neighborhood}
GROUP BY
identifier
`,
nypd_precinct: sls`
SELECT DISTINCT
identifier,
ST_Collect(the_geom) as the_geom
FROM
${nyc_nypd_precinct}
GROUP BY
identifier
`,
assembly: sls`
SELECT DISTINCT
identifier,
ST_Collect(the_geom) as the_geom
FROM
${nyc_assembly}
GROUP BY
identifier
`,
senate: sls`
SELECT DISTINCT
identifier,
ST_Collect(the_geom) as the_geom
FROM
${nyc_senate}
GROUP BY
identifier
`,
intersection: sls`
SELECT
CONCAT(UPPER(borough), ', ', name, '|', cartodb_id) AS identifier,
the_geom
FROM
${nyc_intersections}
WHERE crashcount IS NOT NULL AND borough != ''
ORDER BY crashcount DESC
LIMIT 500
`,
};
// TO DO: Use a single Query for the following 3 date queries
// selects all years for crash data, used by MonthYearSelector.js component
export const crashesYearRangeSQL = () => sls`
SELECT DISTINCT year
FROM ${nyc_crashes}
ORDER BY year DESC
`;
// selects min and max year-month formatted like "YYYY-MM"
// used by MonthYearSelector.js component
export const minMaxDateRange = () => sls`
SELECT
min(year::text || '-' || LPAD(month::text, 2, '0')),
max(year::text || '-' || LPAD(month::text, 2, '0'))
FROM ${nyc_crashes}
`;
// selects max date, used for DownloadData.js component's "last updated on" msg
export const crashesMaxDate = () => sls`
SELECT max(date_val) as max_date
FROM ${nyc_crashes}
`;
/*
***************************** SQL HELPERS **************************************
*/
// Generates the SQL WHERE clause for "Filter by Date Range"
// @param {object} startDate, a moment.js object
// @param {object} endDate, a moment.js object
const filterByDateWhereClause = (startDate, endDate) =>
sls`
(
year::text || LPAD(month::text, 2, '0') <=
'${endDate.year()}' || LPAD(${endDate.month() + 1}::text, 2, '0')
)
AND
(
year::text || LPAD(month::text, 2, '0') >=
'${startDate.year()}' || LPAD(${startDate.month() + 1}::text, 2, '0')
)
`;
// Generates the SQL WHERE clause for "Filter by Type"
// @param {object} the store.filterType piece of state
const filterByTypeWhereClause = (filterType) => {
const { injury, fatality, noInjuryFatality } = filterType;
let whereClause = '';
const mapTypes = (personTypes, harmType) =>
Object.keys(personTypes).filter((type) => {
const val = personTypes[type];
if (val) return type;
return false;
})
.map((type) => {
const hurtTerm = harmType === 'injury' ? 'injured' : 'killed';
return ` number_of_${type}_${hurtTerm} > 0 `;
})
.join('OR');
const typesInjuredSelected = Object.values(injury).filter(i => i).length;
const typesKilledSelected = Object.values(fatality).filter(i => i).length;
const typesInjuredMapped = mapTypes(injury, 'injury');
const typesKilledMapped = mapTypes(fatality, 'fatality');
if (typesInjuredSelected === 3 && typesKilledSelected === 3) {
whereClause += 'AND (number_of_persons_injured > 0 OR number_of_persons_killed > 0)';
} else if (typesInjuredSelected > 0 && typesKilledSelected === 3) {
whereClause += `AND (${typesInjuredMapped} OR number_of_persons_killed > 0)`;
} else if (typesInjuredSelected === 3 && typesKilledSelected > 0) {
whereClause += `AND (number_of_persons_injured > 0 OR ${typesKilledMapped})`;
} else if (typesInjuredMapped.length > 0 && typesKilledMapped.length > 0) {
whereClause += `AND (${typesInjuredMapped} OR ${typesKilledMapped})`;
} else if (typesInjuredMapped.length > 0) {
whereClause += `AND (${typesInjuredMapped})`;
} else if (typesKilledMapped.length > 0) {
whereClause += `AND (${typesKilledMapped})`;
} else if (noInjuryFatality) {
whereClause += sls`AND
number_of_cyclist_injured = 0 AND
number_of_cyclist_killed = 0 AND
number_of_motorist_injured = 0 AND
number_of_motorist_killed = 0 AND
number_of_pedestrian_injured = 0 AND
number_of_pedestrian_killed = 0 AND
number_of_persons_injured = 0 AND
number_of_persons_killed = 0
`;
}
console.debug(['GDA', typesInjuredSelected, typesKilledSelected, whereClause ]); //eslint-disable-line
return whereClause;
};
// Generates the SQL WHERE clause for "Filter by Type"
// @param {object} the store.filterType piece of state
const filterByVehicleWhereClause = (filterVehicle) => {
const { vehicle } = filterVehicle;
const anyofthese = [];
if (vehicle.car) anyofthese.push('hasvehicle_car');
if (vehicle.truck) anyofthese.push('hasvehicle_truck');
if (vehicle.motorcycle) anyofthese.push('hasvehicle_motorcycle');
if (vehicle.bicycle) anyofthese.push('hasvehicle_bicycle');
if (vehicle.suv) anyofthese.push('hasvehicle_suv');
if (vehicle.busvan) anyofthese.push('hasvehicle_busvan');
if (vehicle.scooter) anyofthese.push('hasvehicle_scooter');
// other is really other OR unknown/unmatched
if (vehicle.other) {
anyofthese.push(sls`
hasvehicle_other OR (
NOT hasvehicle_car AND
NOT hasvehicle_truck AND
NOT hasvehicle_motorcycle AND
NOT hasvehicle_bicycle AND
NOT hasvehicle_suv AND
NOT hasvehicle_busvan AND
NOT hasvehicle_scooter AND
NOT hasvehicle_other
)
`);
}
const whereClause = anyofthese.length ? `AND (${anyofthese.join(' OR ')})` : '';
console.debug(whereClause); // eslint-disable-line
return whereClause;
};
// Links the Filter by Boundary button name to corresponding Carto table name
// NOTE: Deliberately not using Borough, because when > 1 year of data is selected
// the spatial join will time out on Borough polygons
export const filterAreaBtnTableMap = {
borough: undefined,
community_board: nyc_community_board,
city_council: nyc_city_council,
neighborhood: nyc_neighborhood,
assembly: nyc_assembly,
senate: nyc_senate,
nypd_precinct: nyc_nypd_precinct,
intersection: nyc_intersections,
};
// Creates the spatial join clause with a boundary table geom
// @param {string} areaName, name of boundary, eg 'Borough' or 'City Council Districts'
const joinToGeoTableClause = (areaName) => {
const geoTable = filterAreaBtnTableMap[areaName];
if (geoTable) {
return sls`
JOIN ${geoTable} a
ON ST_Within(c.the_geom, a.the_geom)
`;
}
return '';
};
// Creates the WHERE clause for boundary table identifier
// NOTE: Deliberately not using Borough, because when > 1 year of data is selected
// the spatial join will time out on Borough polygons
// @param {number || string} identifier, unique id of boundary polygon
// @param {string} geo, name of boundary table identifier column belongs to
const filterByIdentifierWhereClause = (identifier, geo) => {
if (geo === 'borough' && identifier) {
return `AND c.borough ilike '%${identifier}%'`;
} else if (geo === 'intersection' && identifier) {
const cartodb_id = identifier.split('|')[1];
return `AND a.cartodb_id = ${cartodb_id}`;
} else if (geo !== 'borough' && identifier) {
return `AND a.identifier = $$${identifier}$$`;
}
return '';
};
// Creates the PostGIS query for selecting crash data by custom area created by Leaflet.Draw
// @param {array} lonLatArray, an array of longitude, latitude arrays that form an enclosed polygon
const filterByCustomAreaClause = (lonLatArray) => {
if (lonLatArray && lonLatArray.length) {
// PostGIS GeomFromText expects lon lat coords like (-73.91 40.74, -73.89 40.73, ...)
const coordinates = lonLatArray.map(lonLat => lonLat.join(' '));
return sls`
AND
ST_Contains(
ST_GeomFromText(
'POLYGON(( ${coordinates} ))',
4326),
c.the_geom
)
`;
}
return '';
};
/*
********************************** MAP ****************************************
*/
// Generates the SQL query for the Carto layer based on filter params & app element
// @param {object} params: key values associated with filters derived from app state
// @param {string} startDate: min date; required
// @param {string} endDate: max date; required
// @param {string} harm: crash type, one of 'ALL', 'cyclist', 'motorist', 'ped'
// @param {string} persona: crash type, of of 'ALL', 'fatality', 'injury', 'no inj/fat'
export const configureMapSQL = (params) => {
const { startDate, endDate, filterType, filterVehicle, geo, identifier, lngLats } = params;
return sls`
SELECT * FROM
(
SELECT
c.the_geom as the_geom,
c.the_geom_webmercator as the_geom_webmercator,
c.on_street_name as on_street_name,
c.cross_street_name as cross_street_name,
COUNT(c.crash_count) as total_crashes,
SUM(c.number_of_cyclist_injured) as cyclist_injured,
SUM(c.number_of_cyclist_killed) as cyclist_killed,
SUM(c.number_of_motorist_injured) as motorist_injured,
SUM(c.number_of_motorist_killed) as motorist_killed,
SUM(c.number_of_pedestrian_injured) as pedestrian_injured,
SUM(c.number_of_pedestrian_killed) as pedestrian_killed,
SUM(c.number_of_persons_injured - (c.number_of_pedestrian_injured + c.number_of_cyclist_injured + c.number_of_motorist_injured)) as other_injured,
SUM(c.number_of_persons_killed - (c.number_of_pedestrian_killed + c.number_of_cyclist_killed + c.number_of_motorist_killed)) as other_killed,
SUM(c.number_of_persons_injured) as persons_injured,
SUM(c.number_of_persons_killed) as persons_killed
FROM
${nyc_crashes} c
${joinToGeoTableClause(geo)}
WHERE
${filterByDateWhereClause(startDate, endDate)}
${filterByCustomAreaClause(lngLats)}
${filterByTypeWhereClause(filterType)}
${filterByVehicleWhereClause(filterVehicle)}
${filterByIdentifierWhereClause(identifier, geo)}
AND
c.the_geom IS NOT NULL
GROUP BY
c.the_geom, c.the_geom_webmercator, c.on_street_name, c.cross_street_name
) _
ORDER BY
CASE WHEN (persons_killed > 0) THEN 3
WHEN (persons_injured > 0) THEN 2
WHEN (total_crashes > 11) THEN 1
ELSE 0
END
`;
};
/*
******************************* STATS *****************************************
*/
export const configureStatsSQL = (params) => {
const { startDate, endDate, filterType, filterVehicle, geo, identifier, lngLats } = params;
return sls`
SELECT
COUNT(c.cartodb_id) as total_crashes,
SUM(c.number_of_cyclist_injured) as cyclist_injured,
SUM(c.number_of_cyclist_killed) as cyclist_killed,
SUM(c.number_of_motorist_injured) as motorist_injured,
SUM(c.number_of_motorist_killed) as motorist_killed,
SUM(c.number_of_pedestrian_injured) as pedestrian_injured,
SUM(c.number_of_pedestrian_killed) as pedestrian_killed,
SUM(c.number_of_persons_injured - (c.number_of_pedestrian_injured + c.number_of_cyclist_injured + c.number_of_motorist_injured)) as other_injured,
SUM(c.number_of_persons_killed - (c.number_of_pedestrian_killed + c.number_of_cyclist_killed + c.number_of_motorist_killed)) as other_killed,
SUM(c.number_of_persons_injured) as persons_injured,
SUM(c.number_of_persons_killed) as persons_killed
FROM
${nyc_crashes} c
${joinToGeoTableClause(geo)}
WHERE
${filterByDateWhereClause(startDate, endDate)}
${filterByCustomAreaClause(lngLats)}
${filterByTypeWhereClause(filterType)}
${filterByVehicleWhereClause(filterVehicle)}
${filterByIdentifierWhereClause(identifier, geo)}
`;
};
/*
*************************** CONTRIBUTING FACTORS ******************************
*/
export const configureFactorsSQL = (params) => {
const { startDate, endDate, filterType, filterVehicle, geo, identifier, lngLats } = params;
return sls`
WITH all_factors as (
SELECT
unnest(c.contributing_factor) as factor
FROM
${nyc_crashes} c
${joinToGeoTableClause(geo)}
WHERE
${filterByDateWhereClause(startDate, endDate)}
${filterByCustomAreaClause(lngLats)}
${filterByTypeWhereClause(filterType)}
${filterByVehicleWhereClause(filterVehicle)}
${filterByIdentifierWhereClause(identifier, geo)}
)
SELECT
COUNT(af.factor) as count_factor,
af.factor
FROM
all_factors af
GROUP BY
af.factor
ORDER BY
count_factor desc
`;
};
/*
******************************* Download Data *********************************
*/
// Creates the SQL query for "Download Data" buttons
export const configureDownloadDataSQL = (params) => {
const { startDate, endDate, filterArea, filterType, filterVehicle } = params;
const { geo, lngLats, identifier } = filterArea;
return sls`
SELECT
c.cartodb_id,
c.socrata_id,
c.the_geom,
c.on_street_name,
c.cross_street_name,
c.date_val AS date_time,
c.latitude,
c.longitude,
c.borough,
c.zip_code,
c.crash_count,
c.number_of_cyclist_injured,
c.number_of_cyclist_killed,
c.number_of_motorist_injured,
c.number_of_motorist_killed,
c.number_of_pedestrian_injured,
c.number_of_pedestrian_killed,
c.number_of_persons_injured,
c.number_of_persons_killed,
array_to_string(c.contributing_factor, ',') as contributing_factors,
array_to_string(c.vehicle_type, ',') as vehicle_types
FROM ${nyc_crashes} c
${joinToGeoTableClause(geo)}
WHERE
${filterByDateWhereClause(startDate, endDate)}
${filterByCustomAreaClause(lngLats)}
${filterByTypeWhereClause(filterType)}
${filterByVehicleWhereClause(filterVehicle)}
${filterByIdentifierWhereClause(identifier, geo)}
`;
};