Skip to content
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

explore NTD non-revenue vehicles #1355

Merged
merged 24 commits into from
Jan 21, 2025
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
838e2c6
start notebook
csuyat-dot Jan 2, 2025
04cdc2d
fetching data from api, trying to access the elements in the JSON res…
csuyat-dot Jan 3, 2025
73c3ef9
exploring JSON of blackcat api to scrape a35 data. was able to get a …
csuyat-dot Jan 3, 2025
b1576dd
more explore work
csuyat-dot Jan 4, 2025
39fb2e2
testing using pd.json_normalize() to turn JSON into dataframe
csuyat-dot Jan 6, 2025
9daf550
comparing results from .json_normalize() and list comprehension method
csuyat-dot Jan 6, 2025
bfc4e3f
test querying fct_vehicles_type_count_by_agency since it has service …
csuyat-dot Jan 6, 2025
ba7e4e1
test mering the fct_vehilces_type_count_by_agency and fct_metrics
csuyat-dot Jan 6, 2025
339503a
test comparing upt against nrv count
csuyat-dot Jan 7, 2025
282d3a8
testing out removing outlier and plotting a regression chart, just fo…
csuyat-dot Jan 7, 2025
5e770d8
trying to read in service hours from digest, but need schedule names.…
csuyat-dot Jan 8, 2025
63c50bb
moving some things around, trying to aggregate gtfs service hours by …
csuyat-dot Jan 8, 2025
66f0339
attempt to crosswalk between ntd ID to schedule
csuyat-dot Jan 9, 2025
a0ef631
cleaned up some cells, cleaned up outlier identification and scatterplot
csuyat-dot Jan 10, 2025
3bbe6d0
testing ratios for service veh:upt & veh:vrh
csuyat-dot Jan 10, 2025
2875ba5
found there are a lot of agencies with zero service vehicles, testing…
csuyat-dot Jan 10, 2025
c8a8440
spoke with Evan, he showed me some NTD data products for rev and serv…
csuyat-dot Jan 13, 2025
a5cffca
cleaning some of the NTD products, need to filter by CA
csuyat-dot Jan 13, 2025
7edaa80
using CA ntd ID, upt, vrm, vrh from dim_annual_agency_information
csuyat-dot Jan 14, 2025
3d5c084
minor changes
csuyat-dot Jan 14, 2025
c7b8136
removed old work about fetching the blackcat api and .mart_ntd_annual…
csuyat-dot Jan 18, 2025
91836f1
minor cleaning, peaking into the serv veh inv data to see what kind o…
csuyat-dot Jan 21, 2025
6f9d505
minor changes
csuyat-dot Jan 21, 2025
3681fa4
major cleanup, got rid of old tables, updated variable name. will pic…
csuyat-dot Jan 21, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
test comparing upt against nrv count
csuyat-dot committed Jan 7, 2025

Verified

This commit was signed with the committer’s verified signature.
battery-staple Rohen Giralt
commit 339503a8241b95b282884522597f55b13f816063
129 changes: 128 additions & 1 deletion ntd/non_rev_vehicles_explore.ipynb
Original file line number Diff line number Diff line change
@@ -2004,10 +2004,137 @@
")"
]
},
{
"cell_type": "code",
"execution_count": 56,
"id": "2d4b6dc7-70a2-434a-b11a-67ca6151b1b4",
"metadata": {},
"outputs": [],
"source": [
"import altair as alt"
]
},
{
"cell_type": "code",
"execution_count": 64,
"id": "665aee78-61ac-4f86-8a69-10db3cbb60aa",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"200"
]
},
"execution_count": 64,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"test = join.sort_values(by=\"total_service_vehicles\", ascending= False).tail(200)\n",
"\n",
"len(test)"
]
},
{
"cell_type": "code",
"execution_count": 65,
"id": "7c24fd79-a43c-4ec6-9b25-ba9aec5f6b1f",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"\n",
"<style>\n",
" #altair-viz-af432b23df274b0aa4be9e88f42b8bb3.vega-embed {\n",
" width: 100%;\n",
" display: flex;\n",
" }\n",
"\n",
" #altair-viz-af432b23df274b0aa4be9e88f42b8bb3.vega-embed details,\n",
" #altair-viz-af432b23df274b0aa4be9e88f42b8bb3.vega-embed details summary {\n",
" position: relative;\n",
" }\n",
"</style>\n",
"<div id=\"altair-viz-af432b23df274b0aa4be9e88f42b8bb3\"></div>\n",
"<script type=\"text/javascript\">\n",
" var VEGA_DEBUG = (typeof VEGA_DEBUG == \"undefined\") ? {} : VEGA_DEBUG;\n",
" (function(spec, embedOpt){\n",
" let outputDiv = document.currentScript.previousElementSibling;\n",
" if (outputDiv.id !== \"altair-viz-af432b23df274b0aa4be9e88f42b8bb3\") {\n",
" outputDiv = document.getElementById(\"altair-viz-af432b23df274b0aa4be9e88f42b8bb3\");\n",
" }\n",
" const paths = {\n",
" \"vega\": \"https://cdn.jsdelivr.net/npm/vega@5?noext\",\n",
" \"vega-lib\": \"https://cdn.jsdelivr.net/npm/vega-lib?noext\",\n",
" \"vega-lite\": \"https://cdn.jsdelivr.net/npm/vega-lite@5.17.0?noext\",\n",
" \"vega-embed\": \"https://cdn.jsdelivr.net/npm/vega-embed@6?noext\",\n",
" };\n",
"\n",
" function maybeLoadScript(lib, version) {\n",
" var key = `${lib.replace(\"-\", \"\")}_version`;\n",
" return (VEGA_DEBUG[key] == version) ?\n",
" Promise.resolve(paths[lib]) :\n",
" new Promise(function(resolve, reject) {\n",
" var s = document.createElement('script');\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" s.async = true;\n",
" s.onload = () => {\n",
" VEGA_DEBUG[key] = version;\n",
" return resolve(paths[lib]);\n",
" };\n",
" s.onerror = () => reject(`Error loading script: ${paths[lib]}`);\n",
" s.src = paths[lib];\n",
" });\n",
" }\n",
"\n",
" function showError(err) {\n",
" outputDiv.innerHTML = `<div class=\"error\" style=\"color:red;\">${err}</div>`;\n",
" throw err;\n",
" }\n",
"\n",
" function displayChart(vegaEmbed) {\n",
" vegaEmbed(outputDiv, spec, embedOpt)\n",
" .catch(err => showError(`Javascript Error: ${err.message}<br>This usually means there's a typo in your chart specification. See the javascript console for the full traceback.`));\n",
" }\n",
"\n",
" if(typeof define === \"function\" && define.amd) {\n",
" requirejs.config({paths});\n",
" require([\"vega-embed\"], displayChart, err => showError(`Error loading script: ${err.message}`));\n",
" } else {\n",
" maybeLoadScript(\"vega\", \"5\")\n",
" .then(() => maybeLoadScript(\"vega-lite\", \"5.17.0\"))\n",
" .then(() => maybeLoadScript(\"vega-embed\", \"6\"))\n",
" .catch(showError)\n",
" .then(() => displayChart(vegaEmbed));\n",
" }\n",
" })({\"config\": {\"view\": {\"continuousWidth\": 300, \"continuousHeight\": 300}}, \"layer\": [{\"mark\": {\"type\": \"point\"}, \"encoding\": {\"x\": {\"field\": \"total_service_vehicles\", \"type\": \"quantitative\"}, \"y\": {\"field\": \"unlinked_passenger_trips\", \"type\": \"quantitative\"}}}, {\"mark\": {\"type\": \"line\"}, \"encoding\": {\"x\": {\"field\": \"total_service_vehicles\", \"type\": \"quantitative\"}, \"y\": {\"field\": \"unlinked_passenger_trips\", \"type\": \"quantitative\"}}, \"transform\": [{\"on\": \"total_service_vehicles\", \"regression\": \"unlinked_passenger_trips\"}]}], \"data\": {\"name\": \"data-3e1dab29a35a491a6ee9ed272338cac8\"}, \"$schema\": \"https://vega.github.io/schema/vega-lite/v5.17.0.json\", \"datasets\": {\"data-3e1dab29a35a491a6ee9ed272338cac8\": [{\"ntd_id\": \"90134\", \"agency\": \"Peninsula Corridor Joint Powers Board, dba: Caltrain\", \"city\": \"San Carlos\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 85.0, \"total_revenue_vehicles\": 163.0, \"total_service_vehicles\": 99.0, \"unlinked_passenger_trips\": 7012116.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90016\", \"agency\": \"Golden Gate Bridge, Highway and Transportation District\", \"city\": \"San Francisco\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 62.0, \"total_revenue_vehicles\": 171.0, \"total_service_vehicles\": 91.0, \"unlinked_passenger_trips\": 2476565.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90009\", \"agency\": \"San Mateo County Transit District, dba: SamTrans\", \"city\": \"San Carlos\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 331.0, \"total_revenue_vehicles\": 434.0, \"total_service_vehicles\": 78.0, \"unlinked_passenger_trips\": 8773845.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90029\", \"agency\": \"Omnitrans, dba: OMNI\", \"city\": \"San Bernardino\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 154.0, \"total_revenue_vehicles\": 239.0, \"total_service_vehicles\": 66.0, \"unlinked_passenger_trips\": 6101602.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90027\", \"agency\": \"City of Fresno, dba: Fresno Area Express\", \"city\": \"Fresno\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 144.0, \"total_revenue_vehicles\": 176.0, \"total_service_vehicles\": 62.0, \"unlinked_passenger_trips\": 8324054.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90031\", \"agency\": \"Riverside Transit Agency\", \"city\": \"Riverside\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 211.0, \"total_revenue_vehicles\": 281.0, \"total_service_vehicles\": 62.0, \"unlinked_passenger_trips\": 5246457.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90023\", \"agency\": \"Long Beach Transit\", \"city\": \"Long Beach\", \"organization_type\": \"Other Publicly-Owned or Privately Chartered Corporation\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 167.0, \"total_revenue_vehicles\": 234.0, \"total_service_vehicles\": 57.0, \"unlinked_passenger_trips\": 16803005.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90079\", \"agency\": \"SunLine Transit Agency, dba: SunLine\", \"city\": \"Thousand Palms\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 82.0, \"total_revenue_vehicles\": 130.0, \"total_service_vehicles\": 52.0, \"unlinked_passenger_trips\": 2689531.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90148\", \"agency\": \"Victor Valley Transit Authority\", \"city\": \"Hesperia\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 277.0, \"total_revenue_vehicles\": 307.0, \"total_service_vehicles\": 42.0, \"unlinked_passenger_trips\": 1350506.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90062\", \"agency\": \"Monterey-Salinas Transit\", \"city\": \"Monterey\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 165.0, \"total_revenue_vehicles\": 268.0, \"total_service_vehicles\": 42.0, \"unlinked_passenger_trips\": 2218131.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90006\", \"agency\": \"Santa Cruz Metropolitan Transit District\", \"city\": \"Santa Cruz\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 93.0, \"total_revenue_vehicles\": 125.0, \"total_service_vehicles\": 41.0, \"unlinked_passenger_trips\": 3350026.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90012\", \"agency\": \"San Joaquin Regional Transit District, dba: San Joaquin RTD\", \"city\": \"Stockton\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 93.0, \"total_revenue_vehicles\": 160.0, \"total_service_vehicles\": 40.0, \"unlinked_passenger_trips\": 2301789.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90121\", \"agency\": \"Antelope Valley Transit Authority\", \"city\": \"Lancaster\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 86.0, \"total_revenue_vehicles\": 95.0, \"total_service_vehicles\": 39.0, \"unlinked_passenger_trips\": 1310857.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90299\", \"agency\": \"Sonoma-Marin Area Rail Transit District\", \"city\": \"Petaluma\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 12.0, \"total_revenue_vehicles\": 18.0, \"total_service_vehicles\": 38.0, \"unlinked_passenger_trips\": 640099.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90146\", \"agency\": \"Foothill Transit\", \"city\": \"West Covina\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 303.0, \"total_revenue_vehicles\": 363.0, \"total_service_vehicles\": 28.0, \"unlinked_passenger_trips\": 7864856.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90020\", \"agency\": \"Santa Barbara Metropolitan Transit District\", \"city\": \"Santa Barbara\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 63.0, \"total_revenue_vehicles\": 112.0, \"total_service_vehicles\": 28.0, \"unlinked_passenger_trips\": 4534476.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90004\", \"agency\": \"Golden Empire Transit District\", \"city\": \"Bakersfield\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 89.0, \"total_revenue_vehicles\": 137.0, \"total_service_vehicles\": 26.0, \"unlinked_passenger_trips\": 3293593.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90010\", \"agency\": \"City of Torrance, dba: Torrance Transit System\", \"city\": \"Torrance\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 74.0, \"total_revenue_vehicles\": 99.0, \"total_service_vehicles\": 25.0, \"unlinked_passenger_trips\": 1840079.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90035\", \"agency\": \"Gold Coast Transit District\", \"city\": \"Oxnard\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 72.0, \"total_revenue_vehicles\": 91.0, \"total_service_vehicles\": 23.0, \"unlinked_passenger_trips\": 3043329.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90041\", \"agency\": \"City of Montebello, dba: Montebello Bus Lines\", \"city\": \"Montebello\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 85.0, \"total_revenue_vehicles\": 111.0, \"total_service_vehicles\": 22.0, \"unlinked_passenger_trips\": 2681282.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90026\", \"agency\": \"San Diego Metropolitan Transit System\", \"city\": \"San Diego\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 774.0, \"total_revenue_vehicles\": 1218.0, \"total_service_vehicles\": 22.0, \"unlinked_passenger_trips\": 68511363.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90008\", \"agency\": \"City of Santa Monica, dba: Big Blue Bus\", \"city\": \"Santa Monica\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 143.0, \"total_revenue_vehicles\": 221.0, \"total_service_vehicles\": 20.0, \"unlinked_passenger_trips\": 7767725.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90157\", \"agency\": \"Access Services\", \"city\": \"El Monte\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 920.0, \"total_revenue_vehicles\": 1289.0, \"total_service_vehicles\": 17.0, \"unlinked_passenger_trips\": 3545374.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90039\", \"agency\": \"City of Culver City, dba: Culver CityBus\", \"city\": \"Culver City\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 41.0, \"total_revenue_vehicles\": 60.0, \"total_service_vehicles\": 17.0, \"unlinked_passenger_trips\": 2668340.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90144\", \"agency\": \"Livermore / Amador Valley Transit Authority\", \"city\": \"Livermore\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 49.0, \"total_revenue_vehicles\": 60.0, \"total_service_vehicles\": 17.0, \"unlinked_passenger_trips\": 1145515.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90206\", \"agency\": \"San Luis Obispo Regional Transit Authority\", \"city\": \"San Luis Obispo\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 41.0, \"total_revenue_vehicles\": 68.0, \"total_service_vehicles\": 17.0, \"unlinked_passenger_trips\": 739238.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90042\", \"agency\": \"City of Gardena, dba: GTrans\", \"city\": \"Gardena\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 29.0, \"total_revenue_vehicles\": 59.0, \"total_service_vehicles\": 17.0, \"unlinked_passenger_trips\": 1910285.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90078\", \"agency\": \"Central Contra Costa Transit Authority, dba: County Connection\", \"city\": \"Concord\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 129.0, \"total_revenue_vehicles\": 199.0, \"total_service_vehicles\": 14.0, \"unlinked_passenger_trips\": 2538112.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90196\", \"agency\": \"County of Placer, dba: Placer County Transit/TART\", \"city\": \"Auburn\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 47.0, \"total_revenue_vehicles\": 72.0, \"total_service_vehicles\": 13.0, \"unlinked_passenger_trips\": 826049.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90173\", \"agency\": \"Transit Joint Powers Authority for Merced County, dba: Merced The Bus\", \"city\": \"Merced\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 45.0, \"total_revenue_vehicles\": 75.0, \"total_service_vehicles\": 13.0, \"unlinked_passenger_trips\": 599759.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90162\", \"agency\": \"The Eastern Contra Costa Transit Authority, dba: Tri Delta Transit\", \"city\": \"Antioch\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 98.0, \"total_revenue_vehicles\": 121.0, \"total_service_vehicles\": 13.0, \"unlinked_passenger_trips\": 1211883.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90022\", \"agency\": \"City of Norwalk , dba: Norwalk Transit System\", \"city\": \"Norwalk\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 27.0, \"total_revenue_vehicles\": 43.0, \"total_service_vehicles\": 13.0, \"unlinked_passenger_trips\": 1039766.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90089\", \"agency\": \"County of Sonoma , dba: Sonoma County Transit\", \"city\": \"Santa Rosa\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 47.0, \"total_revenue_vehicles\": 80.0, \"total_service_vehicles\": 12.0, \"unlinked_passenger_trips\": 649873.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90168\", \"agency\": \"City of Roseville\", \"city\": \"Roseville\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 24.0, \"total_revenue_vehicles\": 47.0, \"total_service_vehicles\": 12.0, \"unlinked_passenger_trips\": 154903.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90229\", \"agency\": \"El Dorado County Transit Authority, dba: El Dorado Transit\", \"city\": \"Diamond Springs\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 17.0, \"total_revenue_vehicles\": 51.0, \"total_service_vehicles\": 10.0, \"unlinked_passenger_trips\": 135151.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91062\", \"agency\": \"Eastern Sierra Transit Authority\", \"city\": \"Bishop\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 37.0, \"total_revenue_vehicles\": 58.0, \"total_service_vehicles\": 10.0, \"unlinked_passenger_trips\": 907249.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90090\", \"agency\": \"Yolo County Transportation District\", \"city\": \"Woodland\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 40.0, \"total_revenue_vehicles\": 69.0, \"total_service_vehicles\": 10.0, \"unlinked_passenger_trips\": 677394.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90232\", \"agency\": \"Solano County Transit, dba: SolTrans\", \"city\": \"Vallejo\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 35.0, \"total_revenue_vehicles\": 59.0, \"total_service_vehicles\": 10.0, \"unlinked_passenger_trips\": 967820.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90017\", \"agency\": \"City of Santa Rosa, dba: Santa Rosa CityBus\", \"city\": \"Santa Rosa\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 29.0, \"total_revenue_vehicles\": 43.0, \"total_service_vehicles\": 9.0, \"unlinked_passenger_trips\": 1319746.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90217\", \"agency\": \"City of Manteca, dba: Manteca Transit\", \"city\": \"Manteca\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 6.0, \"total_revenue_vehicles\": 9.0, \"total_service_vehicles\": 9.0, \"unlinked_passenger_trips\": 56501.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91036\", \"agency\": \"Humboldt Transit Authority\", \"city\": \"Eureka\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 14.0, \"total_revenue_vehicles\": 31.0, \"total_service_vehicles\": 9.0, \"unlinked_passenger_trips\": 303929.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91047\", \"agency\": \"Mendocino Transit Authority\", \"city\": \"Ukiah\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 24.0, \"total_revenue_vehicles\": 33.0, \"total_service_vehicles\": 9.0, \"unlinked_passenger_trips\": 139627.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90182\", \"agency\": \"Altamont Corridor Express\", \"city\": \"Stockton\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 27.0, \"total_revenue_vehicles\": 36.0, \"total_service_vehicles\": 8.0, \"unlinked_passenger_trips\": 474498.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91090\", \"agency\": \"Morongo Basin Transit Authority, dba: Basin Transit\", \"city\": \"Joshua Tree\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 13.0, \"total_revenue_vehicles\": 23.0, \"total_service_vehicles\": 8.0, \"unlinked_passenger_trips\": 169710.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91012\", \"agency\": \"Mountain Area Regional Transit Authority, dba: Mountain Transit\", \"city\": \"Big Bear Lake\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 30.0, \"total_revenue_vehicles\": 34.0, \"total_service_vehicles\": 8.0, \"unlinked_passenger_trips\": 838867.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90225\", \"agency\": \"San Francisco Bay Area Water Emergency Transportation Authority, dba: San Francisco Bay Ferry\", \"city\": \"San Francisco\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 11.0, \"total_revenue_vehicles\": 16.0, \"total_service_vehicles\": 8.0, \"unlinked_passenger_trips\": 2024646.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90093\", \"agency\": \"Redding Area Bus Authority\", \"city\": \"Redding\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 21.0, \"total_revenue_vehicles\": 38.0, \"total_service_vehicles\": 8.0, \"unlinked_passenger_trips\": 406268.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90155\", \"agency\": \"City of Vacaville, dba: City Coach\", \"city\": \"Vacaville\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 15.0, \"total_revenue_vehicles\": 38.0, \"total_service_vehicles\": 7.0, \"unlinked_passenger_trips\": 278020.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90142\", \"agency\": \"University of California, Davis, dba: Unitrans\", \"city\": \"Davis\", \"organization_type\": \"University\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 30.0, \"total_revenue_vehicles\": 50.0, \"total_service_vehicles\": 7.0, \"unlinked_passenger_trips\": 3028186.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90159\", \"agency\": \"Western Contra Costa Transit Authority, dba: WestCAT\", \"city\": \"Pinole\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 33.0, \"total_revenue_vehicles\": 50.0, \"total_service_vehicles\": 7.0, \"unlinked_passenger_trips\": 667920.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91095\", \"agency\": \"County of Nevada, dba: Nevada County Connects\", \"city\": \"Nevada City\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 17.0, \"total_revenue_vehicles\": 24.0, \"total_service_vehicles\": 6.0, \"unlinked_passenger_trips\": 136043.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90211\", \"agency\": \"Anaheim Transportation Network, dba: Anaheim Regional Transportation\", \"city\": \"Anaheim\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 54.0, \"total_revenue_vehicles\": 80.0, \"total_service_vehicles\": 6.0, \"unlinked_passenger_trips\": 8289646.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90201\", \"agency\": \"City of Turlock, dba: Turlock Transit\", \"city\": \"Turlock\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 12.0, \"total_revenue_vehicles\": 19.0, \"total_service_vehicles\": 6.0, \"unlinked_passenger_trips\": 265956.0, \"_merge\": \"both\"}, {\"ntd_id\": \"99454\", \"agency\": \"Palo Verde Valley Transit Agency, dba: RidePV\", \"city\": \"Blythe\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 6.0, \"total_revenue_vehicles\": 10.0, \"total_service_vehicles\": 6.0, \"unlinked_passenger_trips\": 39447.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90050\", \"agency\": \"City of Simi Valley, dba: Simi Valley Transit\", \"city\": \"Simi Valley\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 15.0, \"total_revenue_vehicles\": 23.0, \"total_service_vehicles\": 6.0, \"unlinked_passenger_trips\": 206836.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90265\", \"agency\": \"City of El Monte\", \"city\": \"El Monte\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 14.0, \"total_revenue_vehicles\": 23.0, \"total_service_vehicles\": 5.0, \"unlinked_passenger_trips\": 255839.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90230\", \"agency\": \"California Vanpool Authority, dba: CalVans\", \"city\": \"Hanford\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 743.0, \"total_revenue_vehicles\": 784.0, \"total_service_vehicles\": 5.0, \"unlinked_passenger_trips\": 3569288.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90092\", \"agency\": \"City of Fairfield, California, dba: FAST Transit\", \"city\": \"Fairfield\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 26.0, \"total_revenue_vehicles\": 39.0, \"total_service_vehicles\": 5.0, \"unlinked_passenger_trips\": 273784.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90306\", \"agency\": \"Stanislaus Regional Transit Authority\", \"city\": \"Modesto\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 102.0, \"total_revenue_vehicles\": 122.0, \"total_service_vehicles\": 4.0, \"unlinked_passenger_trips\": 2434940.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90147\", \"agency\": \"City of Los Angeles\", \"city\": \"Los Angeles\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 370.0, \"total_revenue_vehicles\": 472.0, \"total_service_vehicles\": 4.0, \"unlinked_passenger_trips\": 15482662.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91048\", \"agency\": \"County of Siskiyou, dba: Siskiyou County Transit\", \"city\": \"Yreka\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 6.0, \"total_revenue_vehicles\": 10.0, \"total_service_vehicles\": 4.0, \"unlinked_passenger_trips\": 27929.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90238\", \"agency\": \"City of Delano, dba: Delano Area Rapid Transit\", \"city\": \"Delano\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 9.0, \"total_revenue_vehicles\": 17.0, \"total_service_vehicles\": 4.0, \"unlinked_passenger_trips\": 86236.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90234\", \"agency\": \"Marin County Transit District, dba: Marin Transit\", \"city\": \"San Rafael\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 78.0, \"total_revenue_vehicles\": 111.0, \"total_service_vehicles\": 3.0, \"unlinked_passenger_trips\": 2694428.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90091\", \"agency\": \"City of Visalia , dba: Visalia Transit\", \"city\": \"Visalia\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 37.0, \"total_revenue_vehicles\": 60.0, \"total_service_vehicles\": 3.0, \"unlinked_passenger_trips\": 635887.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90226\", \"agency\": \"Imperial County Transportation Commission\", \"city\": \"El Centro\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 24.0, \"total_revenue_vehicles\": 44.0, \"total_service_vehicles\": 3.0, \"unlinked_passenger_trips\": 629887.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90119\", \"agency\": \"City of Laguna Beach, dba: Laguna Beach Transit\", \"city\": \"Laguna Beach\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 24.0, \"total_revenue_vehicles\": 31.0, \"total_service_vehicles\": 3.0, \"unlinked_passenger_trips\": 668909.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91018\", \"agency\": \"City of Arcata, dba: Arcata & Mad River Transit System\", \"city\": \"Arcata\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 2.0, \"total_revenue_vehicles\": 2.0, \"total_service_vehicles\": 3.0, \"unlinked_passenger_trips\": 63140.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90200\", \"agency\": \"Kings County Area Public Transit Agency\", \"city\": \"Hanford\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 57.0, \"total_revenue_vehicles\": 77.0, \"total_service_vehicles\": 3.0, \"unlinked_passenger_trips\": 582762.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91007\", \"agency\": \"Fresno County Rural Transit Agency\", \"city\": \"Fresno\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 65.0, \"total_revenue_vehicles\": 120.0, \"total_service_vehicles\": 3.0, \"unlinked_passenger_trips\": 169754.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91000\", \"agency\": \"Amador Transit\", \"city\": \"Jackson\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 18.0, \"total_revenue_vehicles\": 18.0, \"total_service_vehicles\": 3.0, \"unlinked_passenger_trips\": 32626.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90156\", \"agency\": \"City of San Luis Obispo, dba: SLO Transit\", \"city\": \"San Luis Obispo\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 15.0, \"total_revenue_vehicles\": 17.0, \"total_service_vehicles\": 3.0, \"unlinked_passenger_trips\": 515025.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90213\", \"agency\": \"City of Petaluma, dba: Petaluma Transit\", \"city\": \"Petaluma\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 12.0, \"total_revenue_vehicles\": 22.0, \"total_service_vehicles\": 2.0, \"unlinked_passenger_trips\": 213607.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90149\", \"agency\": \"City of Lompoc, dba: City of Lompoc Transit\", \"city\": \"Lompoc\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 10.0, \"total_revenue_vehicles\": 16.0, \"total_service_vehicles\": 2.0, \"unlinked_passenger_trips\": 63727.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91089\", \"agency\": \"Tehama County, dba: Tehama Rural Area Express\", \"city\": \"Gerber\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 14.0, \"total_revenue_vehicles\": 20.0, \"total_service_vehicles\": 2.0, \"unlinked_passenger_trips\": 119863.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91112\", \"agency\": \"County of Colusa, dba: Colusa County Transit Agency\", \"city\": \"Colusa\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 7.0, \"total_revenue_vehicles\": 11.0, \"total_service_vehicles\": 2.0, \"unlinked_passenger_trips\": 32263.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90171\", \"agency\": \"City of Santa Clarita, dba: Santa Clarita Transit\", \"city\": \"Santa Clarita\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 88.0, \"total_revenue_vehicles\": 117.0, \"total_service_vehicles\": 2.0, \"unlinked_passenger_trips\": 2289665.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90165\", \"agency\": \"City of Thousand Oaks, dba: Thousand Oaks Transit\", \"city\": \"Thousand Oaks\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 19.0, \"total_revenue_vehicles\": 35.0, \"total_service_vehicles\": 2.0, \"unlinked_passenger_trips\": 191874.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90175\", \"agency\": \"City of Lodi, dba: GrapeLine\", \"city\": \"Lodi\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 13.0, \"total_revenue_vehicles\": 24.0, \"total_service_vehicles\": 2.0, \"unlinked_passenger_trips\": 184061.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90088\", \"agency\": \"Napa Valley Transportation Authority\", \"city\": \"Napa\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 44.0, \"total_revenue_vehicles\": 60.0, \"total_service_vehicles\": 2.0, \"unlinked_passenger_trips\": 487995.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90223\", \"agency\": \"Paratransit, Inc.\", \"city\": \"Sacramento\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 25.0, \"total_revenue_vehicles\": 55.0, \"total_service_vehicles\": 2.0, \"unlinked_passenger_trips\": 41481.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91097\", \"agency\": \"Redwood Coast Transit Authority\", \"city\": \"Crescent City\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 7.0, \"total_revenue_vehicles\": 14.0, \"total_service_vehicles\": 2.0, \"unlinked_passenger_trips\": 72351.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91006\", \"agency\": \"City of Ridgecrest, dba: Ridgerunner\", \"city\": \"Ridgecrest\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 5.0, \"total_revenue_vehicles\": 9.0, \"total_service_vehicles\": 1.0, \"unlinked_passenger_trips\": 10326.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90292\", \"agency\": \"City of South Pasadena\", \"city\": \"South Pasadena\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 3.0, \"total_revenue_vehicles\": 6.0, \"total_service_vehicles\": 1.0, \"unlinked_passenger_trips\": 6897.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91009\", \"agency\": \"San Benito County Local Transportation Authority, dba: San Benito County Express\", \"city\": \"Hollister\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 9.0, \"total_revenue_vehicles\": 27.0, \"total_service_vehicles\": 1.0, \"unlinked_passenger_trips\": 63114.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90061\", \"agency\": \"Yuba-Sutter Transit Authority\", \"city\": \"Marysville\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 29.0, \"total_revenue_vehicles\": 51.0, \"total_service_vehicles\": 1.0, \"unlinked_passenger_trips\": 516376.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91035\", \"agency\": \"Trinity County, dba: Trinity Transit\", \"city\": \"Weaverville\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 4.0, \"total_revenue_vehicles\": 8.0, \"total_service_vehicles\": 1.0, \"unlinked_passenger_trips\": 7278.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90086\", \"agency\": \"City of Riverside, dba: Riverside Connect\", \"city\": \"Riverside\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 18.0, \"total_revenue_vehicles\": 35.0, \"total_service_vehicles\": 1.0, \"unlinked_passenger_trips\": 74107.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91058\", \"agency\": \"City of Ojai\", \"city\": \"Ojai\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 2.0, \"total_revenue_vehicles\": 5.0, \"total_service_vehicles\": 1.0, \"unlinked_passenger_trips\": 48294.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91059\", \"agency\": \"Kern Regional Transit\", \"city\": \"Bakersfield\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 40.0, \"total_revenue_vehicles\": 60.0, \"total_service_vehicles\": 1.0, \"unlinked_passenger_trips\": 215876.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90310\", \"agency\": \"Tulare County Regional Transit Agency\", \"city\": \"Visalia\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 41.0, \"total_revenue_vehicles\": 94.0, \"total_service_vehicles\": 1.0, \"unlinked_passenger_trips\": 673925.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91027\", \"agency\": \"City of Arvin, dba: Arvin Transit\", \"city\": \"Arvin\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 4.0, \"total_revenue_vehicles\": 6.0, \"total_service_vehicles\": 1.0, \"unlinked_passenger_trips\": 59676.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90043\", \"agency\": \"City of Commerce, dba: City of Commerce Transit\", \"city\": \"Commerce\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 14.0, \"total_revenue_vehicles\": 28.0, \"total_service_vehicles\": 1.0, \"unlinked_passenger_trips\": 453890.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90087\", \"agency\": \"City of Santa Maria, dba: Santa Maria Regional Transit\", \"city\": \"Santa Maria\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 26.0, \"total_revenue_vehicles\": 34.0, \"total_service_vehicles\": 1.0, \"unlinked_passenger_trips\": 455860.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90256\", \"agency\": \"City of Burbank\", \"city\": \"Burbank\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 17.0, \"total_revenue_vehicles\": 26.0, \"total_service_vehicles\": 1.0, \"unlinked_passenger_trips\": 171517.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91098\", \"agency\": \"Lassen Transit Service Agency\", \"city\": \"Susanville\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 5.0, \"total_revenue_vehicles\": 13.0, \"total_service_vehicles\": 1.0, \"unlinked_passenger_trips\": 76542.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90194\", \"agency\": \"City of Atascadero\", \"city\": \"Atascadero\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 2.0, \"total_revenue_vehicles\": 4.0, \"total_service_vehicles\": 1.0, \"unlinked_passenger_trips\": 7403.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90208\", \"agency\": \"Butte County Association of Governments, dba: Butte Regional Transit/B-Line\", \"city\": \"Chico\", \"organization_type\": \"MPO, COG or Other Planning Agency\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 37.0, \"total_revenue_vehicles\": 51.0, \"total_service_vehicles\": 1.0, \"unlinked_passenger_trips\": 630109.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90197\", \"agency\": \"City of Tracy, dba: TRACER\", \"city\": \"Tracy\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 13.0, \"total_revenue_vehicles\": 20.0, \"total_service_vehicles\": 1.0, \"unlinked_passenger_trips\": 121148.0, \"_merge\": \"both\"}, {\"ntd_id\": \"99316\", \"agency\": \"Chemehuevi Indian Tribe\", \"city\": \"Havasu Lake\", \"organization_type\": \"Tribe\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 2.0, \"total_revenue_vehicles\": 2.0, \"total_service_vehicles\": 1.0, \"unlinked_passenger_trips\": 200000.0, \"_merge\": \"both\"}, {\"ntd_id\": \"99442\", \"agency\": \"Calaveras Transit Agency, dba: Calaveras Connect\", \"city\": \"San Andreas\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 11.0, \"total_revenue_vehicles\": 11.0, \"total_service_vehicles\": 1.0, \"unlinked_passenger_trips\": 28321.0, \"_merge\": \"both\"}, {\"ntd_id\": \"99425\", \"agency\": \"Pomona Valley Transportation Authority\", \"city\": \"La Verne\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 27.0, \"total_revenue_vehicles\": 45.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 85358.0, \"_merge\": \"both\"}, {\"ntd_id\": \"99422\", \"agency\": \"San Joaquin Council, dba: Dibs\", \"city\": \"Stockton\", \"organization_type\": \"MPO, COG or Other Planning Agency\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 429.0, \"total_revenue_vehicles\": 428.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 909739.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91032\", \"agency\": \"City of Auburn, dba: Auburn Transit\", \"city\": \"Auburn\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 6.0, \"total_revenue_vehicles\": 8.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 27355.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91028\", \"agency\": \"City of Solvang, dba: Santa Ynez Valley Transit\", \"city\": \"Solvang\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 5.0, \"total_revenue_vehicles\": 6.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 45539.0, \"_merge\": \"both\"}, {\"ntd_id\": \"99358\", \"agency\": \"Morongo Band of Mission Indians, dba: Morongo Dial- A-Ride\", \"city\": \"Banning\", \"organization_type\": \"Tribe\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 2.0, \"total_revenue_vehicles\": 2.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 2829.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91020\", \"agency\": \"City of Needles, dba: Needles Area Transit\", \"city\": \"Needles\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 1.0, \"total_revenue_vehicles\": 3.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 19201.0, \"_merge\": \"both\"}, {\"ntd_id\": \"99364\", \"agency\": \"North Fork Rancheria of Mono Indians of California, dba: NFR Tranportation\", \"city\": \"North Fork\", \"organization_type\": \"Tribe\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 2.0, \"total_revenue_vehicles\": 4.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 602.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91014\", \"agency\": \"City of Rio Vista, dba: Rio Vista Delta Breeze\", \"city\": \"Rio Vista\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 2.0, \"total_revenue_vehicles\": 5.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 4082.0, \"_merge\": \"both\"}, {\"ntd_id\": \"99423\", \"agency\": \"City of Glendale, dba: Beeline Bus/Dial-A-Ride\", \"city\": \"Glendale\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 41.0, \"total_revenue_vehicles\": 54.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 743854.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91002\", \"agency\": \"City of Corcoran, dba: Corcoran Area Transit\", \"city\": \"Corcoran\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 4.0, \"total_revenue_vehicles\": 6.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 25199.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90052\", \"agency\": \"City of Corona\", \"city\": \"Corona\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 10.0, \"total_revenue_vehicles\": 20.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 158413.0, \"_merge\": \"both\"}, {\"ntd_id\": \"99424\", \"agency\": \"City of Pasadena, dba: Pasadena Transit\", \"city\": \"Pasadena\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 33.0, \"total_revenue_vehicles\": 50.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 1149981.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90311\", \"agency\": \"Stanislaus Council of Governments, dba: StanisCruise\", \"city\": \"Modesto\", \"organization_type\": \"MPO, COG or Other Planning Agency\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 62.0, \"total_revenue_vehicles\": 65.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 52346.0, \"_merge\": \"both\"}, {\"ntd_id\": \"99426\", \"agency\": \"City of Wasco\", \"city\": \"Wasco\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 3.0, \"total_revenue_vehicles\": 3.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 11236.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91005\", \"agency\": \"Madera County\", \"city\": \"Madera\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 9.0, \"total_revenue_vehicles\": 13.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 28801.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91008\", \"agency\": \"Modoc Transportation Agency, dba: Sage Stage\", \"city\": \"Alturas\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 3.0, \"total_revenue_vehicles\": 5.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 10721.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91038\", \"agency\": \"Sierra County , dba: Sierra County Transportation Commission\", \"city\": \"Downieville\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 4.0, \"total_revenue_vehicles\": 4.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 2534.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91101\", \"agency\": \"Town of Truckee, dba: Truckee TART\", \"city\": \"Truckee\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 6.0, \"total_revenue_vehicles\": 7.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 41913.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91041\", \"agency\": \"City of Dixon , dba: Readi-Ride\", \"city\": \"Dixon\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 10.0, \"total_revenue_vehicles\": 11.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 35377.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90303\", \"agency\": \"Santa Barbara County Association of Governments, dba: Clean Air Express\", \"city\": \"Santa Barbara\", \"organization_type\": \"MPO, COG or Other Planning Agency\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 10.0, \"total_revenue_vehicles\": 18.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 106075.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91093\", \"agency\": \"City of Eureka , dba: Eureka Transit Service\", \"city\": \"Eureka\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 9.0, \"total_revenue_vehicles\": 11.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 142049.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91110\", \"agency\": \"City of McFarland, dba: McFarland City Transit Bus\", \"city\": \"Mcfarland\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 1.0, \"total_revenue_vehicles\": 2.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 3433.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91111\", \"agency\": \"City of California City\", \"city\": \"California City\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 2.0, \"total_revenue_vehicles\": 3.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 9224.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91088\", \"agency\": \"County of Glenn, dba: Glenn Transit Services\", \"city\": \"Willows\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 4.0, \"total_revenue_vehicles\": 8.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 24357.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91082\", \"agency\": \"Mariposa County\", \"city\": \"Mariposa\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 8.0, \"total_revenue_vehicles\": 11.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 9014.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91078\", \"agency\": \"City of Escalon, dba: eTrans\", \"city\": \"Escalon\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 4.0, \"total_revenue_vehicles\": 4.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 1242.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91116\", \"agency\": \"County of Alpine\", \"city\": \"Markleeville\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 1.0, \"total_revenue_vehicles\": 2.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 325.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91071\", \"agency\": \"City of Chowchilla, dba: Chowchilla Area Transit Express\", \"city\": \"Chowchilla\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 2.0, \"total_revenue_vehicles\": 3.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 12742.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91070\", \"agency\": \"Yosemite Area Regional Transportation System\", \"city\": \"Merced\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 9.0, \"total_revenue_vehicles\": 9.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 61950.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91066\", \"agency\": \"City of Taft, dba: Taft Area Transit\", \"city\": \"Taft\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 3.0, \"total_revenue_vehicles\": 9.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 25855.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90044\", \"agency\": \"City of Arcadia, dba: Arcadia Transit\", \"city\": \"Arcadia\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 14.0, \"total_revenue_vehicles\": 18.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 39121.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91119\", \"agency\": \"Plumas County Transportation Commission\", \"city\": \"Quincy\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 6.0, \"total_revenue_vehicles\": 10.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 24699.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91120\", \"agency\": \"City of Shafter, dba: Shafter Dial-A-Ride\", \"city\": \"Shafter\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 2.0, \"total_revenue_vehicles\": 5.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 17665.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91057\", \"agency\": \"Tuolumne County Transit\", \"city\": \"Sonora\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 12.0, \"total_revenue_vehicles\": 22.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 67086.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91053\", \"agency\": \"Lake Transit Authority\", \"city\": \"Lower Lake\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 26.0, \"total_revenue_vehicles\": 35.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 187473.0, \"_merge\": \"both\"}, {\"ntd_id\": \"99262\", \"agency\": \"Yurok Tribe, dba: Tribe Yurok\", \"city\": \"Klamath\", \"organization_type\": \"Tribe\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 3.0, \"total_revenue_vehicles\": 12.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 17672.0, \"_merge\": \"both\"}, {\"ntd_id\": \"99292\", \"agency\": \"Blue Lake Rancheria, dba: Blue Lake Rancheria Transit System\", \"city\": \"Blue Lake\", \"organization_type\": \"Tribe\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 2.0, \"total_revenue_vehicles\": 3.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 2405.0, \"_merge\": \"both\"}, {\"ntd_id\": \"91043\", \"agency\": \"City of Guadalupe\", \"city\": \"Guadalupe\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Rural Reporter\", \"agency_voms\": 3.0, \"total_revenue_vehicles\": 4.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 69963.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90024\", \"agency\": \"City of La Mirada , dba: La Mirada Transit\", \"city\": \"La Mirada\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 5.0, \"total_revenue_vehicles\": 10.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 27805.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90164\", \"agency\": \"Ventura County Transportation Commission\", \"city\": \"Camarillo\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 45.0, \"total_revenue_vehicles\": 51.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 419280.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90302\", \"agency\": \"San Bernardino County Transportation Authority\", \"city\": \"San Bernardino\", \"organization_type\": \"MPO, COG or Other Planning Agency\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 79.0, \"total_revenue_vehicles\": 78.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 140210.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90301\", \"agency\": \"City of Lakewood , dba: DASH Transit\", \"city\": \"Lakewood\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 12.0, \"total_revenue_vehicles\": 12.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 8399.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90263\", \"agency\": \"City of Downey\", \"city\": \"Downey\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 15.0, \"total_revenue_vehicles\": 15.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 87055.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90262\", \"agency\": \"City of Cudahy, dba: Cudahy Area Rapid Transit\", \"city\": \"Cudahy\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 6.0, \"total_revenue_vehicles\": 11.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 45897.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90261\", \"agency\": \"City of Covina\", \"city\": \"Covina\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 5.0, \"total_revenue_vehicles\": 5.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 10680.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90260\", \"agency\": \"City of Compton , dba: Compton Renaissance Transit Service\", \"city\": \"Compton\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 6.0, \"total_revenue_vehicles\": 10.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 64030.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90259\", \"agency\": \"City of Cerritos, dba: Cerritos Transit Services\", \"city\": null, \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 16.0, \"total_revenue_vehicles\": 18.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 36805.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90258\", \"agency\": \"City of Carson\", \"city\": \"Carson\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 19.0, \"total_revenue_vehicles\": 19.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 35263.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90257\", \"agency\": \"City of Calabasas\", \"city\": \"Calabasas\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 8.0, \"total_revenue_vehicles\": 12.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 23743.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90255\", \"agency\": \"City of Beverly Hills, dba: Beverly Hills Dial-A-Ride\", \"city\": \"Beverly Hills\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 4.0, \"total_revenue_vehicles\": 5.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 5440.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90254\", \"agency\": \"City of Bellflower\", \"city\": \"Bellflower\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 4.0, \"total_revenue_vehicles\": 6.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 41103.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90253\", \"agency\": \"City of Bell Gardens\", \"city\": \"Bell\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 5.0, \"total_revenue_vehicles\": 6.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 125520.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90252\", \"agency\": \"City of Bell\", \"city\": \"Bell\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 10.0, \"total_revenue_vehicles\": 22.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 23051.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90251\", \"agency\": \"City of Baldwin Park, dba: Baldwin Park Transit\", \"city\": \"Baldwin Park\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 8.0, \"total_revenue_vehicles\": 9.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 67519.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90250\", \"agency\": \"City of Azusa\", \"city\": \"Azusa\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 6.0, \"total_revenue_vehicles\": 8.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 16059.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90249\", \"agency\": \"City of Avalon, dba: Avalon Transit\", \"city\": \"Avalon\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 4.0, \"total_revenue_vehicles\": 3.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 24488.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90247\", \"agency\": \"City of Alhambra, dba: Alhambra Community Transit\", \"city\": \"Alhambra\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 17.0, \"total_revenue_vehicles\": 17.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 234593.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90246\", \"agency\": \"City of Agoura Hills\", \"city\": \"Agoura Hills\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 2.0, \"total_revenue_vehicles\": 23.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 2012.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90243\", \"agency\": \"Easy Lift Transportation\", \"city\": \"Goleta\", \"organization_type\": \"Private-Non-Profit Corporation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 28.0, \"total_revenue_vehicles\": 29.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 60087.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90227\", \"agency\": \"City of Moorpark, dba: Moorpark City Transit\", \"city\": \"Moorpark\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 2.0, \"total_revenue_vehicles\": 5.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 26853.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90218\", \"agency\": \"Riverside County Transportation Commission\", \"city\": \"Riverside\", \"organization_type\": \"MPO, COG or Other Planning Agency\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 40.0, \"total_revenue_vehicles\": 35.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 75754.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90094\", \"agency\": \"Metropolitan Transportation Commission, dba: MTC\", \"city\": \"San Francisco\", \"organization_type\": \"MPO, COG or Other Planning Agency\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 530.0, \"total_revenue_vehicles\": 556.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 1113315.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90216\", \"agency\": \"County of Sacramento Municipal Services Agency, dba: South County Transit\", \"city\": \"Sacramento\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 12.0, \"total_revenue_vehicles\": 19.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 47989.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90214\", \"agency\": \"City of Redondo Beach, dba: Beach Cities Transit\", \"city\": \"Redondo Beach\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 17.0, \"total_revenue_vehicles\": 20.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 277558.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90095\", \"agency\": \"San Diego Association of Governments, dba: SANDAG\", \"city\": \"San Diego\", \"organization_type\": \"MPO, COG or Other Planning Agency\", \"reporter_type\": \"Full Reporter\", \"agency_voms\": 413.0, \"total_revenue_vehicles\": 653.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 1048584.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90199\", \"agency\": \"City of Madera, dba: Madera Metro\", \"city\": \"Madera\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 17.0, \"total_revenue_vehicles\": 17.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 75934.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90161\", \"agency\": \"City of Union City, dba: Union City Transit\", \"city\": \"Union City\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 20.0, \"total_revenue_vehicles\": 26.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 259096.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90163\", \"agency\": \"City of Camarillo, dba: Camarillo Area Transit\", \"city\": \"Camarillo\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 18.0, \"total_revenue_vehicles\": 19.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 67360.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90167\", \"agency\": \"City of Davis, dba: Davis Community Transit\", \"city\": \"Davis\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 3.0, \"total_revenue_vehicles\": 4.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 12956.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90266\", \"agency\": \"City of Glendora\", \"city\": \"Glendora\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 12.0, \"total_revenue_vehicles\": 9.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 20009.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90267\", \"agency\": \"City of Huntington Park\", \"city\": \"Huntington Park\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 16.0, \"total_revenue_vehicles\": 25.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 126224.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90268\", \"agency\": \"City of Inglewood, dba: Inglewood Senior Center\", \"city\": \"Inglewood\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 9.0, \"total_revenue_vehicles\": 9.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 17910.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90284\", \"agency\": \"City of Maywood\", \"city\": \"Maywood\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 5.0, \"total_revenue_vehicles\": 7.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 85400.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90300\", \"agency\": \"City of Artesia\", \"city\": \"Artesia\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 5.0, \"total_revenue_vehicles\": 5.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 1996.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90298\", \"agency\": \"County of Ventura\", \"city\": \"Ventura\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 4.0, \"total_revenue_vehicles\": 3.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 36267.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90296\", \"agency\": \"City of Claremont\", \"city\": \"Claremont\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 22.0, \"total_revenue_vehicles\": 28.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 9356.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90295\", \"agency\": \"City of Whittier\", \"city\": \"Whittier\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 10.0, \"total_revenue_vehicles\": 16.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 38843.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90294\", \"agency\": \"City of West Hollywood\", \"city\": \"West Hollywood\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 8.0, \"total_revenue_vehicles\": 15.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 62677.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90293\", \"agency\": \"City of West Covina\", \"city\": \"West Covina\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 8.0, \"total_revenue_vehicles\": 11.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 34976.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90291\", \"agency\": \"City of South Gate\", \"city\": \"South Gate\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 15.0, \"total_revenue_vehicles\": 15.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 103009.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90289\", \"agency\": \"City of Rosemead, dba: Rosemead Explorer/Dial-A-Ride\", \"city\": \"Rosemead\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 7.0, \"total_revenue_vehicles\": 7.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 52264.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90288\", \"agency\": \"City of Pico Rivera\", \"city\": \"Pico Rivera\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 2.0, \"total_revenue_vehicles\": 2.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 4090.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90287\", \"agency\": \"Palos Verdes Peninsula Transit Authority\", \"city\": \"Rolling Hills\", \"organization_type\": \"Independent Public Agency or Authority of Transit Service\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 27.0, \"total_revenue_vehicles\": 27.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 131176.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90286\", \"agency\": \"City of Monterey Park, dba: Spirit Bus\", \"city\": \"Montery Park\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 12.0, \"total_revenue_vehicles\": 12.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 37169.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90285\", \"agency\": \"City of Monrovia, dba: GoMonrovia\", \"city\": \"Monrovia\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 3.0, \"total_revenue_vehicles\": 8.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 8716.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90283\", \"agency\": \"City of Manhattan Beach , dba: City of Manhattan Beach Dial-A-Ride\", \"city\": \"Manhattan Beach\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 3.0, \"total_revenue_vehicles\": 4.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 9343.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90269\", \"agency\": \"Los Angeles County, dba: LA County Public Works\", \"city\": \"Alhambra\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 2.0, \"total_revenue_vehicles\": 2.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 28232.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90282\", \"agency\": \"City of Malibu\", \"city\": \"Malibu\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 2.0, \"total_revenue_vehicles\": 5.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 239.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90281\", \"agency\": \"City of Lynwood, dba: Lynwood Breeze\", \"city\": \"Lynwood\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 4.0, \"total_revenue_vehicles\": 4.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 104052.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90279\", \"agency\": \"Los Angeles County\", \"city\": \"Alhambra\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 3.0, \"total_revenue_vehicles\": 7.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 3246.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90278\", \"agency\": \"Los Angeles County\", \"city\": \"Alhambra\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 3.0, \"total_revenue_vehicles\": 3.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 24769.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90277\", \"agency\": \"Los Angeles County\", \"city\": \"Alhambra\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 10.0, \"total_revenue_vehicles\": 10.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 17730.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90276\", \"agency\": \"Los Angeles County\", \"city\": \"Alhambra\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 5.0, \"total_revenue_vehicles\": 6.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 89132.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90275\", \"agency\": \"Los Angeles County\", \"city\": \"Alhambra\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 1.0, \"total_revenue_vehicles\": 1.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 30019.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90274\", \"agency\": \"Los Angeles County\", \"city\": \"Alhambra\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 2.0, \"total_revenue_vehicles\": 2.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 20089.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90273\", \"agency\": \"Los Angeles County\", \"city\": \"Alhambra\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 2.0, \"total_revenue_vehicles\": 4.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 125593.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90272\", \"agency\": \"Los Angeles County\", \"city\": \"Alhambra\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 1.0, \"total_revenue_vehicles\": 4.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 22798.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90271\", \"agency\": \"Los Angeles County\", \"city\": \"Alhambra\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 16.0, \"total_revenue_vehicles\": 17.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 350502.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90270\", \"agency\": \"Los Angeles County\", \"city\": \"Alhambra\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 1.0, \"total_revenue_vehicles\": 4.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 19920.0, \"_merge\": \"both\"}, {\"ntd_id\": \"90290\", \"agency\": \"City of Santa Fe Springs\", \"city\": \"Santa Fe Springs\", \"organization_type\": \"City, County or Local Government Unit or Department of Transportation\", \"reporter_type\": \"Reduced Reporter\", \"agency_voms\": 2.0, \"total_revenue_vehicles\": 3.0, \"total_service_vehicles\": 0.0, \"unlinked_passenger_trips\": 5668.0, \"_merge\": \"both\"}]}}, {\"mode\": \"vega-lite\"});\n",
"</script>"
],
"text/plain": [
"alt.LayerChart(...)"
]
},
"execution_count": 65,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"chart = alt.Chart(test).mark_point().encode(\n",
" x = \"total_service_vehicles\",\n",
" y = \"unlinked_passenger_trips\"\n",
")\n",
"\n",
"chart + chart.transform_regression(\"total_service_vehicles\",\"unlinked_passenger_trips\").mark_line()"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "03160bfd-f8f3-49cd-8f8e-adfa42ba2a3c",
"id": "9a63bb11-851e-4199-a76d-45f8b7d4405c",
"metadata": {},
"outputs": [],
"source": []