Skip to content

Commit

Permalink
Updating Pandas to 2.x (#936)
Browse files Browse the repository at this point in the history
* Updating Pandas to 2.x

* Update to show dec 2023 data
  • Loading branch information
devinmatte committed Jan 16, 2024
1 parent 0f0631d commit 52d9d95
Show file tree
Hide file tree
Showing 4 changed files with 265 additions and 233 deletions.
2 changes: 1 addition & 1 deletion common/constants/dates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const THREE_MONTHS_AGO_STRING = TODAY.subtract(90, 'days').format(DATE_FO
const OVERVIEW_TRAIN_MIN_DATE = '2016-02-01';
const TRAIN_MIN_DATE = '2016-01-15';
const BUS_MIN_DATE = '2018-08-01';
export const BUS_MAX_DATE = '2023-11-30';
export const BUS_MAX_DATE = '2023-12-31';
const BUS_MAX_DAY = dayjs(BUS_MAX_DATE);
export const BUS_MAX_DATE_MINUS_ONE_WEEK = dayjs(BUS_MAX_DATE)
.subtract(7, 'days')
Expand Down
2 changes: 1 addition & 1 deletion server/bus/setup_bus_input.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ unzip -d data/input/MBTA_GTFS/ data/input/gtfs.zip

cd data/input
for i in `seq 2018 2023`; do
unzip -d $i $i.zip
unzip -o -d $i $i.zip
done

mv 2021/MBTA*/*.csv 2021/
Expand Down
Loading

0 comments on commit 52d9d95

Please sign in to comment.