├── .gitignore ├── LICENSE ├── README.md ├── data └── README.md ├── package.json ├── public ├── apple-touch-icon.png ├── favicon.png ├── index.html ├── manifest.json ├── robots.txt └── screenshot.png ├── scripts ├── generateDataJson.js └── generateStationJson.js ├── src ├── App.jsx ├── App.scss ├── App.test.jsx ├── configBox.jsx ├── data │ ├── README.md │ ├── complexId │ │ └── README.md │ ├── days │ │ └── README.md │ ├── months │ │ └── README.md │ └── weeks │ │ └── README.md ├── dataBox.jsx ├── detailsCompareDates.jsx ├── detailsDate.jsx ├── graph.jsx ├── index.jsx ├── mapbox.jsx ├── overallDetails.jsx ├── overallGraph.jsx ├── serviceWorker.js ├── setupTests.js ├── stationDetails.jsx ├── stationGraph.jsx ├── stationList.jsx ├── stationRoutes.jsx ├── trainBullet.jsx └── utils.jsx └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahblahblah-/subway-ridership/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahblahblah-/subway-ridership/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahblahblah-/subway-ridership/HEAD/README.md -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahblahblah-/subway-ridership/HEAD/data/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahblahblah-/subway-ridership/HEAD/package.json -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahblahblah-/subway-ridership/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahblahblah-/subway-ridership/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahblahblah-/subway-ridership/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahblahblah-/subway-ridership/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahblahblah-/subway-ridership/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahblahblah-/subway-ridership/HEAD/public/screenshot.png -------------------------------------------------------------------------------- /scripts/generateDataJson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahblahblah-/subway-ridership/HEAD/scripts/generateDataJson.js -------------------------------------------------------------------------------- /scripts/generateStationJson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahblahblah-/subway-ridership/HEAD/scripts/generateStationJson.js -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahblahblah-/subway-ridership/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahblahblah-/subway-ridership/HEAD/src/App.scss -------------------------------------------------------------------------------- /src/App.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahblahblah-/subway-ridership/HEAD/src/App.test.jsx -------------------------------------------------------------------------------- /src/configBox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahblahblah-/subway-ridership/HEAD/src/configBox.jsx -------------------------------------------------------------------------------- /src/data/README.md: -------------------------------------------------------------------------------- 1 | * Placeholder for generated files -------------------------------------------------------------------------------- /src/data/complexId/README.md: -------------------------------------------------------------------------------- 1 | * Placeholder for generated files -------------------------------------------------------------------------------- /src/data/days/README.md: -------------------------------------------------------------------------------- 1 | * Placeholder for generated files -------------------------------------------------------------------------------- /src/data/months/README.md: -------------------------------------------------------------------------------- 1 | * Placeholder for generated files -------------------------------------------------------------------------------- /src/data/weeks/README.md: -------------------------------------------------------------------------------- 1 | * Placeholder for generated files -------------------------------------------------------------------------------- /src/dataBox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahblahblah-/subway-ridership/HEAD/src/dataBox.jsx -------------------------------------------------------------------------------- /src/detailsCompareDates.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahblahblah-/subway-ridership/HEAD/src/detailsCompareDates.jsx -------------------------------------------------------------------------------- /src/detailsDate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahblahblah-/subway-ridership/HEAD/src/detailsDate.jsx -------------------------------------------------------------------------------- /src/graph.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahblahblah-/subway-ridership/HEAD/src/graph.jsx -------------------------------------------------------------------------------- /src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahblahblah-/subway-ridership/HEAD/src/index.jsx -------------------------------------------------------------------------------- /src/mapbox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahblahblah-/subway-ridership/HEAD/src/mapbox.jsx -------------------------------------------------------------------------------- /src/overallDetails.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahblahblah-/subway-ridership/HEAD/src/overallDetails.jsx -------------------------------------------------------------------------------- /src/overallGraph.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahblahblah-/subway-ridership/HEAD/src/overallGraph.jsx -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahblahblah-/subway-ridership/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahblahblah-/subway-ridership/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/stationDetails.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahblahblah-/subway-ridership/HEAD/src/stationDetails.jsx -------------------------------------------------------------------------------- /src/stationGraph.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahblahblah-/subway-ridership/HEAD/src/stationGraph.jsx -------------------------------------------------------------------------------- /src/stationList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahblahblah-/subway-ridership/HEAD/src/stationList.jsx -------------------------------------------------------------------------------- /src/stationRoutes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahblahblah-/subway-ridership/HEAD/src/stationRoutes.jsx -------------------------------------------------------------------------------- /src/trainBullet.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahblahblah-/subway-ridership/HEAD/src/trainBullet.jsx -------------------------------------------------------------------------------- /src/utils.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahblahblah-/subway-ridership/HEAD/src/utils.jsx -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahblahblah-/subway-ridership/HEAD/yarn.lock --------------------------------------------------------------------------------