-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CTA bus ridership dataset is visualized on wrong field #272
Comments
Hi Steve, thanks for bringing this to our attention. That map is very misleading! Generating a map that depicted the number of riders per grid would require that we add a feature to sum (or apply aggregation functions more generally) to arbitrary columns within a boundary. That could be useful in many cases. Our development time now (and for the coming months) is focused on features for Array of Things, so this will go on the backburner. However, as a short-term fix, we might consider blacklisting some datasets such that they are still available to discover and download, but they wouldn't display this kind of heat map when it doesn't make sense or is flat-out misleading. |
"they wouldn't display this kind of heat map when it doesn't make sense or is flat-out misleading" This came to my attention because the Better Transit breakout group wanted to visualize more recent data about where people are boarding and alighting buses in Chicago. We throught that Plenario would be a good place to do that since it already had a process to take in submitted datasets and automatically visualize them. Before we submitted our new data we were going to take a look at this already-established CTA ridership dataset. I stared at this dataset for a while before realizing why the map "felt" wrong. |
I'm removing the "front end" label from this, as there's not really anything that can be done there without a significant backend change.
{
"geometry": {
"coordinates": [ ... ],
"type": "Polygon"
},
"properties": {
"count": 3
},
"type": "Feature"
} with only a single, non-semantic "count" property. The front-end has to assume the backend is making the correct decision re: that value. At such time the API bug is fixed (perhaps by supplying named fields instead of just the single "count" property) we'll handle it as UrbanCCD-UChicago/plenario-explorer#15 about implementing the more detailed display as a front-end feature. |
The CTA bus ridership dataset is visualized by the number of bus stops per grid, and not the number of boardings at stops in that grid.
There are definitely more than 62 boardings in this grid!
The text was updated successfully, but these errors were encountered: