Just count number of trips in a data set from a particular station for now
mkdir data
then yeet some csvs into it from here:
https://s3.amazonaws.com/tripdata/index.html
mkdir build
cd build
cmake ..
make
cd ..
./CitiBike -c -s "N 10 St & Berry St"
The CSV parser I am using is pretty bad. It doesn't do streaming. I can't iterate across a file stream and just count instances. It literally has to pull all the column values out into a vector. It is SLOWSLOWSLOW.
I built this project to troll NIMBYs on Twitter and it is good enough for that purpose.