diff --git a/ntd/explore_new_dim_monthly_ridership.ipynb b/ntd/explore_new_dim_monthly_ridership.ipynb index c77033351..553995e04 100644 --- a/ntd/explore_new_dim_monthly_ridership.ipynb +++ b/ntd/explore_new_dim_monthly_ridership.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "code", - "execution_count": 2, + "execution_count": 1, "id": "6781e154-b5bf-482a-9682-7a70478378d2", "metadata": {}, "outputs": [], @@ -23,7 +23,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 2, "id": "d917c821-e6b0-4ab4-9b5f-d295db7e68ca", "metadata": {}, "outputs": [], @@ -43,7 +43,7 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 15, "id": "cf74e852-9e21-4006-8aaf-6fb5d7fd0c71", "metadata": {}, "outputs": [ @@ -51,22 +51,25 @@ "name": "stdout", "output_type": "stream", "text": [ - "both 94185\n", - "left_only 819\n", + "both 95352\n", + "left_only 0\n", "right_only 0\n", "Name: _merge, dtype: int64\n" ] }, { - "ename": "ValueError", - "evalue": "There are unmerged rows to crosswalk", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mValueError\u001b[0m Traceback (most recent call last)", - "Cell \u001b[0;32mIn[5], line 2\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01mmonthly_ridership_by_rtpa\u001b[39;00m \u001b[38;5;28;01mimport\u001b[39;00m produce_ntd_monthly_ridership_by_rtpa\n\u001b[0;32m----> 2\u001b[0m df \u001b[38;5;241m=\u001b[39m \u001b[43mproduce_ntd_monthly_ridership_by_rtpa\u001b[49m\u001b[43m(\u001b[49m\u001b[43mYEAR\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mMONTH\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/data-analyses/ntd/monthly_ridership_by_rtpa.py:218\u001b[0m, in \u001b[0;36mproduce_ntd_monthly_ridership_by_rtpa\u001b[0;34m(year, month)\u001b[0m\n\u001b[1;32m 215\u001b[0m \u001b[38;5;28mprint\u001b[39m(df\u001b[38;5;241m.\u001b[39m_merge\u001b[38;5;241m.\u001b[39mvalue_counts())\n\u001b[1;32m 217\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mlen\u001b[39m(df[df\u001b[38;5;241m.\u001b[39m_merge\u001b[38;5;241m==\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mleft_only\u001b[39m\u001b[38;5;124m\"\u001b[39m]) \u001b[38;5;241m>\u001b[39m \u001b[38;5;241m0\u001b[39m:\n\u001b[0;32m--> 218\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mValueError\u001b[39;00m(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mThere are unmerged rows to crosswalk\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 220\u001b[0m df \u001b[38;5;241m=\u001b[39m add_change_columns(df)\n\u001b[1;32m 222\u001b[0m df \u001b[38;5;241m=\u001b[39m df\u001b[38;5;241m.\u001b[39massign(\n\u001b[1;32m 223\u001b[0m Mode_full \u001b[38;5;241m=\u001b[39m df[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mmode\u001b[39m\u001b[38;5;124m\"\u001b[39m]\u001b[38;5;241m.\u001b[39mmap(NTD_MODES),\n\u001b[1;32m 224\u001b[0m TOS_full \u001b[38;5;241m=\u001b[39m df[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mtos\u001b[39m\u001b[38;5;124m\"\u001b[39m]\u001b[38;5;241m.\u001b[39mmap(NTD_TOS)\n\u001b[1;32m 225\u001b[0m )\n", - "\u001b[0;31mValueError\u001b[0m: There are unmerged rows to crosswalk" + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/jovyan/data-analyses/ntd/monthly_ridership_by_rtpa.py:40: FutureWarning: Not prepending group keys to the result index of transform-like apply. In the future, the group keys will be included in the index, regardless of whether the applied function returns a like-indexed object.\n", + "To preserve the previous behavior, use\n", + "\n", + "\t>>> .groupby(..., group_keys=False)\n", + "\n", + "To adopt the future behavior and silence this warning, use \n", + "\n", + "\t>>> .groupby(..., group_keys=True)\n", + " previous_y_m_upt = (df.sort_values(sort_cols2)\n" ] } ], @@ -82,13 +85,16 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 9, "id": "4f1c721b-f3f9-4e87-a189-044ad256a4b4", "metadata": {}, "outputs": [], "source": [ "# first part of that func, read in the warehouse data\n", - "full_upt = (tbls.mart_ntd.dim_monthly_ntd_ridership_with_adjustments() >> collect()).rename(columns = {\"mode_type_of_service_status\": \"Status\"})\n", + "# 12/10/2024: old table `mart_ntd.dim_monthly_ntd_ridership_with_adjustments` is deprecated\n", + "# replaced with `mart_ntd.dim_monthly_ridership_with_adjustments`\n", + "\n", + "full_upt = (tbls.mart_ntd.dim_monthly_ridership_with_adjustments() >> collect()).rename(columns = {\"mode_type_of_service_status\": \"Status\",\"primary_uza_name\":\"uza_name\"})\n", " \n", "full_upt = full_upt[full_upt.agency.notna()].reset_index(drop=True)\n", "\n" @@ -96,7 +102,7 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 10, "id": "75e54dfc-98a6-4682-9bc0-a738ba13e636", "metadata": {}, "outputs": [ @@ -105,34 +111,34 @@ "output_type": "stream", "text": [ "\n", - "RangeIndex: 627900 entries, 0 to 627899\n", + "RangeIndex: 630474 entries, 0 to 630473\n", "Data columns (total 22 columns):\n", " # Column Non-Null Count Dtype \n", "--- ------ -------------- ----- \n", - " 0 uza_name 626262 non-null object \n", - " 1 uace_cd 626262 non-null object \n", - " 2 _dt 627900 non-null object \n", - " 3 ts 627900 non-null datetime64[ns, UTC]\n", - " 4 ntd_id 627900 non-null object \n", - " 5 year 627900 non-null int64 \n", - " 6 reporter_type 627900 non-null object \n", - " 7 agency 627900 non-null object \n", - " 8 Status 627900 non-null object \n", - " 9 mode 627900 non-null object \n", - " 10 mode_full_name 627354 non-null object \n", - " 11 service_type 627900 non-null object \n", - " 12 _3_mode 627900 non-null object \n", - " 13 tos 627900 non-null object \n", - " 14 legacy_ntd_id 604422 non-null object \n", - " 15 period_year_month 627900 non-null object \n", - " 16 period_year 627900 non-null object \n", - " 17 period_month 627900 non-null object \n", - " 18 upt 342911 non-null float64 \n", - " 19 vrm 339567 non-null float64 \n", - " 20 vrh 338930 non-null float64 \n", - " 21 voms 340716 non-null float64 \n", - "dtypes: datetime64[ns, UTC](1), float64(4), int64(1), object(16)\n", - "memory usage: 105.4+ MB\n" + " 0 key 630474 non-null object \n", + " 1 ntd_id 630474 non-null object \n", + " 2 legacy_ntd_id 606910 non-null object \n", + " 3 agency 630474 non-null object \n", + " 4 reporter_type 630474 non-null object \n", + " 5 period_year_month 630474 non-null object \n", + " 6 period_year 630474 non-null object \n", + " 7 period_month 630474 non-null object \n", + " 8 uza_name 628830 non-null object \n", + " 9 primary_uza_code 628830 non-null object \n", + " 10 _3_mode 630474 non-null object \n", + " 11 mode 630474 non-null object \n", + " 12 mode_name 629926 non-null object \n", + " 13 service_type 630474 non-null object \n", + " 14 Status 630474 non-null object \n", + " 15 tos 630474 non-null object \n", + " 16 upt 339058 non-null float64 \n", + " 17 vrm 340270 non-null float64 \n", + " 18 vrh 340257 non-null float64 \n", + " 19 voms 342043 non-null float64 \n", + " 20 _dt 630474 non-null object \n", + " 21 execution_ts 630474 non-null datetime64[ns, UTC]\n", + "dtypes: datetime64[ns, UTC](1), float64(4), object(17)\n", + "memory usage: 105.8+ MB\n" ] } ], @@ -142,7 +148,7 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 11, "id": "1d9a8149-b216-4da9-a210-e2ae68c56a15", "metadata": {}, "outputs": [ @@ -151,34 +157,34 @@ "output_type": "stream", "text": [ "\n", - "RangeIndex: 95004 entries, 0 to 95003\n", + "RangeIndex: 95352 entries, 0 to 95351\n", "Data columns (total 22 columns):\n", " # Column Non-Null Count Dtype \n", "--- ------ -------------- ----- \n", - " 0 uza_name 95004 non-null object \n", - " 1 uace_cd 95004 non-null object \n", - " 2 _dt 95004 non-null object \n", - " 3 ts 95004 non-null datetime64[ns, UTC]\n", - " 4 ntd_id 95004 non-null object \n", - " 5 year 95004 non-null int64 \n", - " 6 reporter_type 95004 non-null object \n", - " 7 agency 95004 non-null object \n", - " 8 Status 95004 non-null object \n", - " 9 mode 95004 non-null object \n", - " 10 mode_full_name 95004 non-null object \n", - " 11 service_type 95004 non-null object \n", - " 12 _3_mode 95004 non-null object \n", - " 13 tos 95004 non-null object \n", - " 14 legacy_ntd_id 89544 non-null object \n", - " 15 period_year_month 95004 non-null object \n", - " 16 period_year 95004 non-null object \n", - " 17 period_month 95004 non-null object \n", - " 18 upt 52388 non-null float64 \n", - " 19 vrm 52010 non-null float64 \n", - " 20 vrh 51928 non-null float64 \n", - " 21 voms 52132 non-null float64 \n", - "dtypes: datetime64[ns, UTC](1), float64(4), int64(1), object(16)\n", - "memory usage: 15.9+ MB\n" + " 0 key 95352 non-null object \n", + " 1 ntd_id 95352 non-null object \n", + " 2 legacy_ntd_id 89872 non-null object \n", + " 3 agency 95352 non-null object \n", + " 4 reporter_type 95352 non-null object \n", + " 5 period_year_month 95352 non-null object \n", + " 6 period_year 95352 non-null object \n", + " 7 period_month 95352 non-null object \n", + " 8 uza_name 95352 non-null object \n", + " 9 primary_uza_code 95352 non-null object \n", + " 10 _3_mode 95352 non-null object \n", + " 11 mode 95352 non-null object \n", + " 12 mode_name 95352 non-null object \n", + " 13 service_type 95352 non-null object \n", + " 14 Status 95352 non-null object \n", + " 15 tos 95352 non-null object \n", + " 16 upt 51956 non-null float64 \n", + " 17 vrm 52114 non-null float64 \n", + " 18 vrh 52114 non-null float64 \n", + " 19 voms 52318 non-null float64 \n", + " 20 _dt 95352 non-null object \n", + " 21 execution_ts 95352 non-null datetime64[ns, UTC]\n", + "dtypes: datetime64[ns, UTC](1), float64(4), object(17)\n", + "memory usage: 16.0+ MB\n" ] } ], @@ -192,7 +198,7 @@ }, { "cell_type": "code", - "execution_count": 29, + "execution_count": 12, "id": "5fe8dc41-12ad-4c0f-80f9-b8297833f33d", "metadata": {}, "outputs": [ @@ -226,43 +232,43 @@ " \n", " \n", " \n", - " 50778\n", + " 50964\n", " Santa Barbara, CA\n", " 90303\n", " Santa Barbara County Association of Governments\n", - " 2004-07\n", + " 2019-12\n", " NaN\n", " \n", " \n", - " 50779\n", + " 50965\n", " Santa Barbara, CA\n", " 90303\n", " Santa Barbara County Association of Governments\n", - " 2013-12\n", + " 2005-12\n", " NaN\n", " \n", " \n", - " 50780\n", + " 50966\n", " Santa Barbara, CA\n", " 90303\n", " Santa Barbara County Association of Governments\n", - " 2012-11\n", + " 2008-07\n", " NaN\n", " \n", " \n", - " 50781\n", + " 50967\n", " Santa Barbara, CA\n", " 90303\n", " Santa Barbara County Association of Governments\n", - " 2016-09\n", + " 2022-06\n", " NaN\n", " \n", " \n", - " 50782\n", + " 50968\n", " Santa Barbara, CA\n", " 90303\n", " Santa Barbara County Association of Governments\n", - " 2016-11\n", + " 2011-09\n", " NaN\n", " \n", " \n", @@ -271,21 +277,21 @@ ], "text/plain": [ " uza_name ntd_id \\\n", - "50778 Santa Barbara, CA 90303 \n", - "50779 Santa Barbara, CA 90303 \n", - "50780 Santa Barbara, CA 90303 \n", - "50781 Santa Barbara, CA 90303 \n", - "50782 Santa Barbara, CA 90303 \n", + "50964 Santa Barbara, CA 90303 \n", + "50965 Santa Barbara, CA 90303 \n", + "50966 Santa Barbara, CA 90303 \n", + "50967 Santa Barbara, CA 90303 \n", + "50968 Santa Barbara, CA 90303 \n", "\n", " agency period_year_month upt \n", - "50778 Santa Barbara County Association of Governments 2004-07 NaN \n", - "50779 Santa Barbara County Association of Governments 2013-12 NaN \n", - "50780 Santa Barbara County Association of Governments 2012-11 NaN \n", - "50781 Santa Barbara County Association of Governments 2016-09 NaN \n", - "50782 Santa Barbara County Association of Governments 2016-11 NaN " + "50964 Santa Barbara County Association of Governments 2019-12 NaN \n", + "50965 Santa Barbara County Association of Governments 2005-12 NaN \n", + "50966 Santa Barbara County Association of Governments 2008-07 NaN \n", + "50967 Santa Barbara County Association of Governments 2022-06 NaN \n", + "50968 Santa Barbara County Association of Governments 2011-09 NaN " ] }, - "execution_count": 29, + "execution_count": 12, "metadata": {}, "output_type": "execute_result" } @@ -299,7 +305,7 @@ }, { "cell_type": "code", - "execution_count": 30, + "execution_count": 13, "id": "9fa55990-21c6-405c-9b64-dbc8d104ee79", "metadata": {}, "outputs": [ @@ -336,7 +342,7 @@ }, { "cell_type": "code", - "execution_count": 31, + "execution_count": 14, "id": "a10a46de-e6b3-4288-97e4-02aa5d5d378b", "metadata": {}, "outputs": [ @@ -345,36 +351,36 @@ "output_type": "stream", "text": [ "\n", - "Int64Index: 95004 entries, 0 to 95003\n", + "Int64Index: 95352 entries, 0 to 95351\n", "Data columns (total 24 columns):\n", " # Column Non-Null Count Dtype \n", "--- ------ -------------- ----- \n", - " 0 uza_name 95004 non-null object \n", - " 1 uace_cd 95004 non-null object \n", - " 2 _dt 95004 non-null object \n", - " 3 ts 95004 non-null datetime64[ns, UTC]\n", - " 4 ntd_id 95004 non-null object \n", - " 5 year 95004 non-null int64 \n", - " 6 reporter_type 95004 non-null object \n", - " 7 agency 95004 non-null object \n", - " 8 Status 95004 non-null object \n", - " 9 mode 95004 non-null object \n", - " 10 mode_full_name 95004 non-null object \n", - " 11 service_type 95004 non-null object \n", - " 12 _3_mode 95004 non-null object \n", - " 13 tos 95004 non-null object \n", - " 14 legacy_ntd_id 89544 non-null object \n", - " 15 period_year_month 95004 non-null object \n", - " 16 period_year 95004 non-null object \n", - " 17 period_month 95004 non-null object \n", - " 18 upt 52388 non-null float64 \n", - " 19 vrm 52010 non-null float64 \n", - " 20 vrh 51928 non-null float64 \n", - " 21 voms 52132 non-null float64 \n", - " 22 RTPA 95004 non-null object \n", - " 23 _merge 95004 non-null category \n", - "dtypes: category(1), datetime64[ns, UTC](1), float64(4), int64(1), object(17)\n", - "memory usage: 17.5+ MB\n" + " 0 key 95352 non-null object \n", + " 1 ntd_id 95352 non-null object \n", + " 2 legacy_ntd_id 89872 non-null object \n", + " 3 agency 95352 non-null object \n", + " 4 reporter_type 95352 non-null object \n", + " 5 period_year_month 95352 non-null object \n", + " 6 period_year 95352 non-null object \n", + " 7 period_month 95352 non-null object \n", + " 8 uza_name 95352 non-null object \n", + " 9 primary_uza_code 95352 non-null object \n", + " 10 _3_mode 95352 non-null object \n", + " 11 mode 95352 non-null object \n", + " 12 mode_name 95352 non-null object \n", + " 13 service_type 95352 non-null object \n", + " 14 Status 95352 non-null object \n", + " 15 tos 95352 non-null object \n", + " 16 upt 51956 non-null float64 \n", + " 17 vrm 52114 non-null float64 \n", + " 18 vrh 52114 non-null float64 \n", + " 19 voms 52318 non-null float64 \n", + " 20 _dt 95352 non-null object \n", + " 21 execution_ts 95352 non-null datetime64[ns, UTC]\n", + " 22 RTPA 95352 non-null object \n", + " 23 _merge 95352 non-null category \n", + "dtypes: category(1), datetime64[ns, UTC](1), float64(4), object(18)\n", + "memory usage: 17.6+ MB\n" ] } ], diff --git a/ntd/monthly_ridership_by_rtpa.py b/ntd/monthly_ridership_by_rtpa.py index 0d445177b..2998755ce 100644 --- a/ntd/monthly_ridership_by_rtpa.py +++ b/ntd/monthly_ridership_by_rtpa.py @@ -126,8 +126,11 @@ def save_rtpa_outputs( (df[df["RTPA"] == i] .sort_values("ntd_id") - #got error from excel not recognizing timezone, made list to include dropping "ts" column - .drop(columns = ["_merge","ts"]) + #got error from excel not recognizing timezone, made list to include dropping "execution_ts" column + .drop(columns = [ + "_merge", + "execution_ts" + ]) #cleaning column names .rename(columns=lambda x: x.replace("_"," ").title().strip()) #rename columns @@ -184,7 +187,11 @@ def produce_ntd_monthly_ridership_by_rtpa( merge in crosswalk, checks for unmerged rows, then creates new columns for full Mode and TOS name. """ - full_upt = (tbls.mart_ntd.dim_monthly_ntd_ridership_with_adjustments() >> collect()).rename(columns = {"mode_type_of_service_status": "Status"}) + full_upt = (tbls.mart_ntd.dim_monthly_ridership_with_adjustments() >> collect()).rename( + columns = { + "mode_type_of_service_status": "Status", + "primary_uza_name":"uza_name" + }) full_upt = full_upt[full_upt.agency.notna()].reset_index(drop=True) diff --git a/ntd/ntd_dates.py b/ntd/ntd_dates.py index 89cdad706..9d458d4d8 100644 --- a/ntd/ntd_dates.py +++ b/ntd/ntd_dates.py @@ -25,7 +25,8 @@ def get_public_filename(monthyear_string: str) -> str: DATES = { # key is month of NTD data - # value is the month_updated in the url we're downloading from + # value is the month_updated in the url we're downloading from (2 months ahead from key) + # ex oct data is reported in december, so (oct20XX:"20XX-12") "oct2023": "2023-12", "nov2023": "2024-01", "dec2023": "2024-02", @@ -36,6 +37,7 @@ def get_public_filename(monthyear_string: str) -> str: "may2024": "2024-07", "jun2024": "2024-08", "jul2024": "2024-09", - "aug2024": "2024-08", - "sep2024": "2024-09" + "aug2024": "2024-10", + "sep2024": "2024-11", + "oct2024": "2024-12" } \ No newline at end of file diff --git a/ntd/update_vars.py b/ntd/update_vars.py index 681d8ce9a..7b929d567 100644 --- a/ntd/update_vars.py +++ b/ntd/update_vars.py @@ -4,7 +4,7 @@ GCS_FILE_PATH = "gs://calitp-analytics-data/data-analyses/ntd/" -current_month = "sep2024" +current_month = "oct2024" YEAR, MONTH = ntd_dates.parse_monthyear_string(current_month) PUBLIC_FILENAME = ntd_dates.get_public_filename(current_month) MONTH_CREATED = ntd_dates.DATES[current_month] @@ -12,7 +12,7 @@ # Check this url each month # https://www.transit.dot.gov/ntd/data-product/monthly-module-adjusted-data-release # Depending on if they fixed the Excel, there may be an additional suffix -suffix = "_241101" +suffix = "_241202" FULL_URL = ( "https://www.transit.dot.gov/sites/fta.dot.gov/files/" f"{MONTH_CREATED}/{MONTH}%20{YEAR}%20" diff --git a/portfolio/ntd_monthly_ridership/rtpa_alpine-county-transportation-commission/00__monthly_ridership_report__rtpa_alpine-county-transportation-commission.ipynb b/portfolio/ntd_monthly_ridership/rtpa_alpine-county-transportation-commission/00__monthly_ridership_report__rtpa_alpine-county-transportation-commission.ipynb index e9b0d3239..2b4de639b 100644 --- a/portfolio/ntd_monthly_ridership/rtpa_alpine-county-transportation-commission/00__monthly_ridership_report__rtpa_alpine-county-transportation-commission.ipynb +++ b/portfolio/ntd_monthly_ridership/rtpa_alpine-county-transportation-commission/00__monthly_ridership_report__rtpa_alpine-county-transportation-commission.ipynb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:11b57f23984b2c215c8d59f03bcb5a440e224b80d3e60d0c3bc67590cb84c281 -size 282993 +oid sha256:5a276d75088f0b1f3a8c57564d0d8da6f1b73f5597b6bb6477bc2b6daea96d9d +size 285768 diff --git a/portfolio/ntd_monthly_ridership/rtpa_butte-county-association-of-governments/00__monthly_ridership_report__rtpa_butte-county-association-of-governments.ipynb b/portfolio/ntd_monthly_ridership/rtpa_butte-county-association-of-governments/00__monthly_ridership_report__rtpa_butte-county-association-of-governments.ipynb index 98ca376d2..a76c97328 100644 --- a/portfolio/ntd_monthly_ridership/rtpa_butte-county-association-of-governments/00__monthly_ridership_report__rtpa_butte-county-association-of-governments.ipynb +++ b/portfolio/ntd_monthly_ridership/rtpa_butte-county-association-of-governments/00__monthly_ridership_report__rtpa_butte-county-association-of-governments.ipynb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:98e3a5e1083c385c68f91ee03db6490c7c9909c46ae919c39827f8541c57046e -size 240691 +oid sha256:c64de10d540d6424a865b05a483d3e43a664219850ac6afe5c0f86e59fc0985c +size 242916 diff --git a/portfolio/ntd_monthly_ridership/rtpa_el-dorado-county-transportation-commission/00__monthly_ridership_report__rtpa_el-dorado-county-transportation-commission.ipynb b/portfolio/ntd_monthly_ridership/rtpa_el-dorado-county-transportation-commission/00__monthly_ridership_report__rtpa_el-dorado-county-transportation-commission.ipynb index 136da3169..ce029e99b 100644 --- a/portfolio/ntd_monthly_ridership/rtpa_el-dorado-county-transportation-commission/00__monthly_ridership_report__rtpa_el-dorado-county-transportation-commission.ipynb +++ b/portfolio/ntd_monthly_ridership/rtpa_el-dorado-county-transportation-commission/00__monthly_ridership_report__rtpa_el-dorado-county-transportation-commission.ipynb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f58f4d940854ae99dbd685b7f7e21d2ae427922b547236b8a2a668209f9f27da -size 171056 +oid sha256:997edb1a71b96bccf3f865ac2f530984c6859fb9e68576d6f499e8d6b6bced9a +size 172082 diff --git a/portfolio/ntd_monthly_ridership/rtpa_fresno-county-council-of-governments/00__monthly_ridership_report__rtpa_fresno-county-council-of-governments.ipynb b/portfolio/ntd_monthly_ridership/rtpa_fresno-county-council-of-governments/00__monthly_ridership_report__rtpa_fresno-county-council-of-governments.ipynb index 04ec3c328..7b1a7e25d 100644 --- a/portfolio/ntd_monthly_ridership/rtpa_fresno-county-council-of-governments/00__monthly_ridership_report__rtpa_fresno-county-council-of-governments.ipynb +++ b/portfolio/ntd_monthly_ridership/rtpa_fresno-county-council-of-governments/00__monthly_ridership_report__rtpa_fresno-county-council-of-governments.ipynb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3421bc6911b8c77ed8ee084d3a8e12a91aec43c19144c05929a5829d5baeba8b -size 288405 +oid sha256:7d04a2d51ef33edd60ef8c2a171fb27fab896570169bc61094fbb1e89f36820e +size 289290 diff --git a/portfolio/ntd_monthly_ridership/rtpa_imperial-county-transportation-commission/00__monthly_ridership_report__rtpa_imperial-county-transportation-commission.ipynb b/portfolio/ntd_monthly_ridership/rtpa_imperial-county-transportation-commission/00__monthly_ridership_report__rtpa_imperial-county-transportation-commission.ipynb index a410ebd16..f36043669 100644 --- a/portfolio/ntd_monthly_ridership/rtpa_imperial-county-transportation-commission/00__monthly_ridership_report__rtpa_imperial-county-transportation-commission.ipynb +++ b/portfolio/ntd_monthly_ridership/rtpa_imperial-county-transportation-commission/00__monthly_ridership_report__rtpa_imperial-county-transportation-commission.ipynb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:65ccf8037fc8ec86f95ba304fca070b4fee0f0cc175e62ab1a5ac266166d1853 -size 242322 +oid sha256:c67d2641700055fd75f1e84bdf3e5e086e5f714aa35444f82105b3bddabb184a +size 243104 diff --git a/portfolio/ntd_monthly_ridership/rtpa_kern-council-of-governments/00__monthly_ridership_report__rtpa_kern-council-of-governments.ipynb b/portfolio/ntd_monthly_ridership/rtpa_kern-council-of-governments/00__monthly_ridership_report__rtpa_kern-council-of-governments.ipynb index 6f8084192..460b889a7 100644 --- a/portfolio/ntd_monthly_ridership/rtpa_kern-council-of-governments/00__monthly_ridership_report__rtpa_kern-council-of-governments.ipynb +++ b/portfolio/ntd_monthly_ridership/rtpa_kern-council-of-governments/00__monthly_ridership_report__rtpa_kern-council-of-governments.ipynb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5bfb223e711f397445b14ef314d48906192845f1eb0fcb3fe06b18cb1c3dfdcb -size 264079 +oid sha256:8469d0c4ed4738b572f638df6a8e614e9b12c9d7dd881712d3e6e217d4ba9252 +size 267362 diff --git a/portfolio/ntd_monthly_ridership/rtpa_kings-county-association-of-governments/00__monthly_ridership_report__rtpa_kings-county-association-of-governments.ipynb b/portfolio/ntd_monthly_ridership/rtpa_kings-county-association-of-governments/00__monthly_ridership_report__rtpa_kings-county-association-of-governments.ipynb index b89aa2313..e5f56c41b 100644 --- a/portfolio/ntd_monthly_ridership/rtpa_kings-county-association-of-governments/00__monthly_ridership_report__rtpa_kings-county-association-of-governments.ipynb +++ b/portfolio/ntd_monthly_ridership/rtpa_kings-county-association-of-governments/00__monthly_ridership_report__rtpa_kings-county-association-of-governments.ipynb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a4153830e233511bb68f505b61dc3896b193347b91d2dae39965c05c3cbe60bf -size 378946 +oid sha256:ad663579ae80c120a055b8ceab62d7efed22e41f56e630a520edbd03a58968c6 +size 382975 diff --git a/portfolio/ntd_monthly_ridership/rtpa_los-angeles-county-metropolitan-transportation-authority/00__monthly_ridership_report__rtpa_los-angeles-county-metropolitan-transportation-authority.ipynb b/portfolio/ntd_monthly_ridership/rtpa_los-angeles-county-metropolitan-transportation-authority/00__monthly_ridership_report__rtpa_los-angeles-county-metropolitan-transportation-authority.ipynb index 08c7c0407..d70bb1399 100644 --- a/portfolio/ntd_monthly_ridership/rtpa_los-angeles-county-metropolitan-transportation-authority/00__monthly_ridership_report__rtpa_los-angeles-county-metropolitan-transportation-authority.ipynb +++ b/portfolio/ntd_monthly_ridership/rtpa_los-angeles-county-metropolitan-transportation-authority/00__monthly_ridership_report__rtpa_los-angeles-county-metropolitan-transportation-authority.ipynb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a6ccb6729c6742ab3e03ac4d5f3fba0761e5e4baa5f793abf348206b8c83f1d0 -size 1696565 +oid sha256:2293626268ed34b7057941856c7f40e7d5efcab44c95fd9ba1d44e2b8b26cfce +size 1703520 diff --git a/portfolio/ntd_monthly_ridership/rtpa_merced-county-association-of-governments/00__monthly_ridership_report__rtpa_merced-county-association-of-governments.ipynb b/portfolio/ntd_monthly_ridership/rtpa_merced-county-association-of-governments/00__monthly_ridership_report__rtpa_merced-county-association-of-governments.ipynb index efcbcf271..c2d9c4ea4 100644 --- a/portfolio/ntd_monthly_ridership/rtpa_merced-county-association-of-governments/00__monthly_ridership_report__rtpa_merced-county-association-of-governments.ipynb +++ b/portfolio/ntd_monthly_ridership/rtpa_merced-county-association-of-governments/00__monthly_ridership_report__rtpa_merced-county-association-of-governments.ipynb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1ee56ec01a9268bd0aa7f7064b159f07b0c13b964d5ec674f4b1bde275de8aea -size 264146 +oid sha256:4ecb49c3bb8c480cad496c9fbfe64927c555a64a04017a1dbc00a470b2ce1e20 +size 266622 diff --git a/portfolio/ntd_monthly_ridership/rtpa_metropolitan-transportation-commission/00__monthly_ridership_report__rtpa_metropolitan-transportation-commission.ipynb b/portfolio/ntd_monthly_ridership/rtpa_metropolitan-transportation-commission/00__monthly_ridership_report__rtpa_metropolitan-transportation-commission.ipynb index a72698b58..bdea3fc3a 100644 --- a/portfolio/ntd_monthly_ridership/rtpa_metropolitan-transportation-commission/00__monthly_ridership_report__rtpa_metropolitan-transportation-commission.ipynb +++ b/portfolio/ntd_monthly_ridership/rtpa_metropolitan-transportation-commission/00__monthly_ridership_report__rtpa_metropolitan-transportation-commission.ipynb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:89be12a513dad22328889c8417449a0253087eee1dc716895cee2f43d05420c7 -size 1859000 +oid sha256:1eea1099aaddb36720b4035df4e1044bd55da4e6da0959d3d4de95d86ff4efa6 +size 1876738 diff --git a/portfolio/ntd_monthly_ridership/rtpa_orange-county-transportation-authority/00__monthly_ridership_report__rtpa_orange-county-transportation-authority.ipynb b/portfolio/ntd_monthly_ridership/rtpa_orange-county-transportation-authority/00__monthly_ridership_report__rtpa_orange-county-transportation-authority.ipynb index 6876a9494..866cb6e6c 100644 --- a/portfolio/ntd_monthly_ridership/rtpa_orange-county-transportation-authority/00__monthly_ridership_report__rtpa_orange-county-transportation-authority.ipynb +++ b/portfolio/ntd_monthly_ridership/rtpa_orange-county-transportation-authority/00__monthly_ridership_report__rtpa_orange-county-transportation-authority.ipynb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bbd88d68820e182335cadb6c73d8d94e8b4f97ecadf1e1e5cb4fb6524d004e39 -size 467126 +oid sha256:15c2b5782aeb17381411bf05925e3f0d05acce5e981ef54e7e164c3e226e96fd +size 471566 diff --git a/portfolio/ntd_monthly_ridership/rtpa_placer-county-transportation-planning-agency/00__monthly_ridership_report__rtpa_placer-county-transportation-planning-agency.ipynb b/portfolio/ntd_monthly_ridership/rtpa_placer-county-transportation-planning-agency/00__monthly_ridership_report__rtpa_placer-county-transportation-planning-agency.ipynb index 8eeb95af6..68e79c1f1 100644 --- a/portfolio/ntd_monthly_ridership/rtpa_placer-county-transportation-planning-agency/00__monthly_ridership_report__rtpa_placer-county-transportation-planning-agency.ipynb +++ b/portfolio/ntd_monthly_ridership/rtpa_placer-county-transportation-planning-agency/00__monthly_ridership_report__rtpa_placer-county-transportation-planning-agency.ipynb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:25a2f8e5f4503a622ff09436f81dec95553dc0bbcc05542c483c3273a844ce5e -size 393727 +oid sha256:325117e4d6203a1aff736e37b29b8aa6d646abedce2bca61220cf461f11d5a99 +size 397570 diff --git a/portfolio/ntd_monthly_ridership/rtpa_riverside-county-transportation-commission/00__monthly_ridership_report__rtpa_riverside-county-transportation-commission.ipynb b/portfolio/ntd_monthly_ridership/rtpa_riverside-county-transportation-commission/00__monthly_ridership_report__rtpa_riverside-county-transportation-commission.ipynb index 8e83a9588..a86a2a111 100644 --- a/portfolio/ntd_monthly_ridership/rtpa_riverside-county-transportation-commission/00__monthly_ridership_report__rtpa_riverside-county-transportation-commission.ipynb +++ b/portfolio/ntd_monthly_ridership/rtpa_riverside-county-transportation-commission/00__monthly_ridership_report__rtpa_riverside-county-transportation-commission.ipynb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7acce82a90f913d8a04b104497628be2dce82c86f4ef5c20b0bf72dba14579b4 -size 553156 +oid sha256:ab177dfee04294fa76f87e2825d6395f0fe792a343ad798ca5e55aa13489c050 +size 559223 diff --git a/portfolio/ntd_monthly_ridership/rtpa_sacramento-area-council-of-governments/00__monthly_ridership_report__rtpa_sacramento-area-council-of-governments.ipynb b/portfolio/ntd_monthly_ridership/rtpa_sacramento-area-council-of-governments/00__monthly_ridership_report__rtpa_sacramento-area-council-of-governments.ipynb index 86b80abc2..653fc6522 100644 --- a/portfolio/ntd_monthly_ridership/rtpa_sacramento-area-council-of-governments/00__monthly_ridership_report__rtpa_sacramento-area-council-of-governments.ipynb +++ b/portfolio/ntd_monthly_ridership/rtpa_sacramento-area-council-of-governments/00__monthly_ridership_report__rtpa_sacramento-area-council-of-governments.ipynb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:80102ba332169e80bf958d308a292e2edb0650ac9672d5ae803690a542c2d659 -size 638436 +oid sha256:430fae617c35b2e10aa026984352780668cd51bfe7b3bf5953c5c176da7d6512 +size 643895 diff --git a/portfolio/ntd_monthly_ridership/rtpa_san-bernardino-county-transportation-authority/00__monthly_ridership_report__rtpa_san-bernardino-county-transportation-authority.ipynb b/portfolio/ntd_monthly_ridership/rtpa_san-bernardino-county-transportation-authority/00__monthly_ridership_report__rtpa_san-bernardino-county-transportation-authority.ipynb index a70871154..e26214f63 100644 --- a/portfolio/ntd_monthly_ridership/rtpa_san-bernardino-county-transportation-authority/00__monthly_ridership_report__rtpa_san-bernardino-county-transportation-authority.ipynb +++ b/portfolio/ntd_monthly_ridership/rtpa_san-bernardino-county-transportation-authority/00__monthly_ridership_report__rtpa_san-bernardino-county-transportation-authority.ipynb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ff5c308c4edb5c099e0a880737a15a32d698f922c7e41af19573ec8bbc21aeca -size 476251 +oid sha256:68da547505174438aa25d03ab7709e3dcc624763246c9de49753cf480633ddac +size 481470 diff --git a/portfolio/ntd_monthly_ridership/rtpa_san-diego-association-of-governments/00__monthly_ridership_report__rtpa_san-diego-association-of-governments.ipynb b/portfolio/ntd_monthly_ridership/rtpa_san-diego-association-of-governments/00__monthly_ridership_report__rtpa_san-diego-association-of-governments.ipynb index aa080fdb9..8700f4413 100644 --- a/portfolio/ntd_monthly_ridership/rtpa_san-diego-association-of-governments/00__monthly_ridership_report__rtpa_san-diego-association-of-governments.ipynb +++ b/portfolio/ntd_monthly_ridership/rtpa_san-diego-association-of-governments/00__monthly_ridership_report__rtpa_san-diego-association-of-governments.ipynb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:70944726c39fe7451a20acf959a6d1baf43269c033fa7bcd8b4e092ad10c9d85 -size 645771 +oid sha256:ed1ed101ac668d27c68aa924eb2e893883ea8fbad59366dd0c78f9deb135c7a5 +size 651290 diff --git a/portfolio/ntd_monthly_ridership/rtpa_san-joaquin-council-of-governments/00__monthly_ridership_report__rtpa_san-joaquin-council-of-governments.ipynb b/portfolio/ntd_monthly_ridership/rtpa_san-joaquin-council-of-governments/00__monthly_ridership_report__rtpa_san-joaquin-council-of-governments.ipynb index 37584f367..98a7ecedd 100644 --- a/portfolio/ntd_monthly_ridership/rtpa_san-joaquin-council-of-governments/00__monthly_ridership_report__rtpa_san-joaquin-council-of-governments.ipynb +++ b/portfolio/ntd_monthly_ridership/rtpa_san-joaquin-council-of-governments/00__monthly_ridership_report__rtpa_san-joaquin-council-of-governments.ipynb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:49e86a7b3de8a2ee743d46815250087d0274c9bb6a0523ff208296c4c13ea15d -size 542052 +oid sha256:3cf105fa7eea1644e9d0e8f7d6869eccf5d698394b333a8d8a7dc0154ff995b2 +size 547511 diff --git a/portfolio/ntd_monthly_ridership/rtpa_san-luis-obispo-council-of-governments/00__monthly_ridership_report__rtpa_san-luis-obispo-council-of-governments.ipynb b/portfolio/ntd_monthly_ridership/rtpa_san-luis-obispo-council-of-governments/00__monthly_ridership_report__rtpa_san-luis-obispo-council-of-governments.ipynb index 281c8c934..bcaefe292 100644 --- a/portfolio/ntd_monthly_ridership/rtpa_san-luis-obispo-council-of-governments/00__monthly_ridership_report__rtpa_san-luis-obispo-council-of-governments.ipynb +++ b/portfolio/ntd_monthly_ridership/rtpa_san-luis-obispo-council-of-governments/00__monthly_ridership_report__rtpa_san-luis-obispo-council-of-governments.ipynb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6e456d2c747fab26d1b741a3f493875bade2096bd8eb9a9e70dff5881e5742a0 -size 402642 +oid sha256:19f18edc26b6f102f4d7a0476e9de5cfe5cef76f029c52e4abcac4c6c3ca7d49 +size 405964 diff --git a/portfolio/ntd_monthly_ridership/rtpa_santa-barbara-county-association-of-governments/00__monthly_ridership_report__rtpa_santa-barbara-county-association-of-governments.ipynb b/portfolio/ntd_monthly_ridership/rtpa_santa-barbara-county-association-of-governments/00__monthly_ridership_report__rtpa_santa-barbara-county-association-of-governments.ipynb index 9b1e4406e..acc9a5999 100644 --- a/portfolio/ntd_monthly_ridership/rtpa_santa-barbara-county-association-of-governments/00__monthly_ridership_report__rtpa_santa-barbara-county-association-of-governments.ipynb +++ b/portfolio/ntd_monthly_ridership/rtpa_santa-barbara-county-association-of-governments/00__monthly_ridership_report__rtpa_santa-barbara-county-association-of-governments.ipynb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:214720da763f29bd41f06b881ce98b44cba04f9d9fba20f1875c66edea700914 -size 284160 +oid sha256:3626a477ac7ed8f97c3da99e0abc7d329c1812700b34f6cb8123d935186850b8 +size 286678 diff --git a/portfolio/ntd_monthly_ridership/rtpa_santa-cruz-county-transportation-commission/00__monthly_ridership_report__rtpa_santa-cruz-county-transportation-commission.ipynb b/portfolio/ntd_monthly_ridership/rtpa_santa-cruz-county-transportation-commission/00__monthly_ridership_report__rtpa_santa-cruz-county-transportation-commission.ipynb index fe0264f63..953124ea9 100644 --- a/portfolio/ntd_monthly_ridership/rtpa_santa-cruz-county-transportation-commission/00__monthly_ridership_report__rtpa_santa-cruz-county-transportation-commission.ipynb +++ b/portfolio/ntd_monthly_ridership/rtpa_santa-cruz-county-transportation-commission/00__monthly_ridership_report__rtpa_santa-cruz-county-transportation-commission.ipynb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:223b1512bf1c095172fbfb1c8716829a3c2c583702c9aa0f5cb6e890aaf8d912 -size 331462 +oid sha256:28fac554d1b57006129e31c4ac876c0d311b29f96f553999eac9ff875c5d64ee +size 334857 diff --git a/portfolio/ntd_monthly_ridership/rtpa_shasta-regional-transportation-agency/00__monthly_ridership_report__rtpa_shasta-regional-transportation-agency.ipynb b/portfolio/ntd_monthly_ridership/rtpa_shasta-regional-transportation-agency/00__monthly_ridership_report__rtpa_shasta-regional-transportation-agency.ipynb index c56463db0..f7921cbff 100644 --- a/portfolio/ntd_monthly_ridership/rtpa_shasta-regional-transportation-agency/00__monthly_ridership_report__rtpa_shasta-regional-transportation-agency.ipynb +++ b/portfolio/ntd_monthly_ridership/rtpa_shasta-regional-transportation-agency/00__monthly_ridership_report__rtpa_shasta-regional-transportation-agency.ipynb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f056cd23b8afed61c3e2be52a022ceb364bce5443dd7df9741559c505e07a42b -size 217775 +oid sha256:708194f890f7db0be8f385766fce790dc1df1f69b625d5ba5f11e68eb19853be +size 218791 diff --git a/portfolio/ntd_monthly_ridership/rtpa_stanislaus-council-of-governments/00__monthly_ridership_report__rtpa_stanislaus-council-of-governments.ipynb b/portfolio/ntd_monthly_ridership/rtpa_stanislaus-council-of-governments/00__monthly_ridership_report__rtpa_stanislaus-council-of-governments.ipynb index 4babbfe4d..aa2332d31 100644 --- a/portfolio/ntd_monthly_ridership/rtpa_stanislaus-council-of-governments/00__monthly_ridership_report__rtpa_stanislaus-council-of-governments.ipynb +++ b/portfolio/ntd_monthly_ridership/rtpa_stanislaus-council-of-governments/00__monthly_ridership_report__rtpa_stanislaus-council-of-governments.ipynb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fcec6c5e43f03e5d9ffee7f1b1e7d7b498202e9ecad720ba4dba9fe92087f84e -size 382064 +oid sha256:2d416c7eee7306eb1860e79bf7b4fa57c95f4a0195818b4d13fcf05ac2e105c9 +size 386786 diff --git a/portfolio/ntd_monthly_ridership/rtpa_tahoe-regional-planning-agency/00__monthly_ridership_report__rtpa_tahoe-regional-planning-agency.ipynb b/portfolio/ntd_monthly_ridership/rtpa_tahoe-regional-planning-agency/00__monthly_ridership_report__rtpa_tahoe-regional-planning-agency.ipynb index f2bc9eaa0..c8aecb5e3 100644 --- a/portfolio/ntd_monthly_ridership/rtpa_tahoe-regional-planning-agency/00__monthly_ridership_report__rtpa_tahoe-regional-planning-agency.ipynb +++ b/portfolio/ntd_monthly_ridership/rtpa_tahoe-regional-planning-agency/00__monthly_ridership_report__rtpa_tahoe-regional-planning-agency.ipynb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1acd2c4f90d819bdffa5f83d50c79f42518b7584db8411a58270dffe81389080 -size 309805 +oid sha256:78a415dbe91e6c22723cbcbed9884667ef4bc9e9f953c800c356362f95389e54 +size 312772 diff --git a/portfolio/ntd_monthly_ridership/rtpa_transportation-agency-for-monterey-county/00__monthly_ridership_report__rtpa_transportation-agency-for-monterey-county.ipynb b/portfolio/ntd_monthly_ridership/rtpa_transportation-agency-for-monterey-county/00__monthly_ridership_report__rtpa_transportation-agency-for-monterey-county.ipynb index 6b01e3d54..5f7b51604 100644 --- a/portfolio/ntd_monthly_ridership/rtpa_transportation-agency-for-monterey-county/00__monthly_ridership_report__rtpa_transportation-agency-for-monterey-county.ipynb +++ b/portfolio/ntd_monthly_ridership/rtpa_transportation-agency-for-monterey-county/00__monthly_ridership_report__rtpa_transportation-agency-for-monterey-county.ipynb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ba572d078751f904bfcf74104fc368a8b6985e2aec2c0d5191165e3542a0ba8e -size 364978 +oid sha256:f2167e17f9e1ea68463222a639c1f17c1f0f919c30a65ea959deb3494343f9df +size 369190 diff --git a/portfolio/ntd_monthly_ridership/rtpa_tulare-county-association-of-governments/00__monthly_ridership_report__rtpa_tulare-county-association-of-governments.ipynb b/portfolio/ntd_monthly_ridership/rtpa_tulare-county-association-of-governments/00__monthly_ridership_report__rtpa_tulare-county-association-of-governments.ipynb index eb41e2200..e5f482332 100644 --- a/portfolio/ntd_monthly_ridership/rtpa_tulare-county-association-of-governments/00__monthly_ridership_report__rtpa_tulare-county-association-of-governments.ipynb +++ b/portfolio/ntd_monthly_ridership/rtpa_tulare-county-association-of-governments/00__monthly_ridership_report__rtpa_tulare-county-association-of-governments.ipynb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2d1a61ee0f1b40a7177b64b409987ac6ee529d646cb9289f226df13bb4e08041 -size 331064 +oid sha256:243ab8491cb44017d0168405251d2b3ab336bd7298fcc4ab47c5572f3d9bbc93 +size 330267 diff --git a/portfolio/ntd_monthly_ridership/rtpa_ventura-county-transportation-commission/00__monthly_ridership_report__rtpa_ventura-county-transportation-commission.ipynb b/portfolio/ntd_monthly_ridership/rtpa_ventura-county-transportation-commission/00__monthly_ridership_report__rtpa_ventura-county-transportation-commission.ipynb index dd3df5c8b..0a2acf1f0 100644 --- a/portfolio/ntd_monthly_ridership/rtpa_ventura-county-transportation-commission/00__monthly_ridership_report__rtpa_ventura-county-transportation-commission.ipynb +++ b/portfolio/ntd_monthly_ridership/rtpa_ventura-county-transportation-commission/00__monthly_ridership_report__rtpa_ventura-county-transportation-commission.ipynb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:925a08adc8115e4057ef0c9ec61da9bbd9cf45bf25498e113c371378a7a4bc85 -size 381172 +oid sha256:9f79e1488c4f4f1f20b59a6ee40043509d544b8b2d6509ad5bcd4c244c06c6cf +size 384881