Skip to content

Instantly share code, notes, and snippets.

@jalessio
Forked from irees/README.md
Last active September 13, 2016 17:51
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jalessio/87ee5943c57c12ca63c724328f55a0db to your computer and use it in GitHub Desktop.
Save jalessio/87ee5943c57c12ca63c724328f55a0db to your computer and use it in GitHub Desktop.
Forked: Transit dimensions: Transitland Schedule API

Minor updates by jalessio 2016-08-04

  • Reduce PER_PAGE from 1000 to 500 to get around API gateway timeout errors
  • Remove call to meta['total'] which is no longer part of the API response JSON
  • Update date to August 2016

Transitland Frequency Visualization

Accompanies blog post: Transit dimensions: Transitland Schedule API

The frequency.py script:

  • Fetches all trips on a given date, between a start time and end time, inside of a bounding box
  • Calculates the number of connections between every stop
  • Uses a colormap and line width to show more frequent service
  • Outputs a GeoJSON map as output.geojson

An example GeoJSON output

The script defines all the query parameters as constants; feel free to use it as a jumping off point. The example interface is an excerpt from a more fully featured client library in the works.

Please check out the Transitland Datastore Github Repository for the full schedule API documentation.

Note that your results may vary slightly from the image used in the blog post.

"""Transitland Schedule API: create GeoJSON map of transit frequency."""
import json
import urllib
import urllib2
import datetime
import math
import os
##########################################################
##### Transitland Datastore Interface #####
##########################################################
class Datastore(object):
"""A simple interface to the Transitland Datastore."""
def __init__(self, host):
self.host = host
def _request(self, uri):
print uri
req = urllib2.Request(uri)
req.add_header('Content-Type', 'application/json')
response = urllib2.urlopen(req)
return json.loads(response.read())
def request(self, endpoint, **data):
"""Request with JSON response."""
return self._request(
'%s%s?%s'%(self.host, endpoint, urllib.urlencode(data or {}))
)
def paginated(self, endpoint, key, **data):
"""Request with paginated JSON response. Returns generator."""
response = self.request(endpoint, **data)
while response:
meta = response['meta']
print '%s: %s -> %s'%(
key,
meta['offset'],
meta['offset']+meta['per_page']
)
for entity in response[key]:
yield entity
if meta.get('next'):
response = self._request(meta.get('next'))
else:
response = None
def schedule_stop_pairs(self, **data):
"""Request Schedule Stop Pairs."""
return self.paginated(
'/api/v1/schedule_stop_pairs',
'schedule_stop_pairs',
**data
)
def stops(self, **data):
"""Request Stops"""
return self.paginated(
'/api/v1/stops',
'stops',
**data
)
def stop(self, onestop_id):
"""Request a Stop by Onestop ID."""
return self.request('/api/v1/stops/%s'%onestop_id)
def duration(t1, t2):
"""Return the time between two HH:MM:SS times, in seconds."""
fmt = '%H:%M:%S'
t1 = datetime.datetime.strptime(t1, fmt)
t2 = datetime.datetime.strptime(t2, fmt)
return (t2 - t1).seconds
##########################################################
##### Count trips between stops, output GeoJSON #####
##########################################################
HOST = 'http://transit.land'
PER_PAGE = 500
BBOX = [
-122.554,
37.668,
-122.085,
37.912
]
DATE = '2016-08-01'
BETWEEN = [
'07:00:00',
'09:00:00'
]
HOURS = duration(BETWEEN[0], BETWEEN[1]) / 3600.0
# Minimum vehicles per hour
# http://colorbrewer2.org/
COLORMAP = {
0: '#fef0d9',
3: '#fdcc8a',
6: '#fc8d59',
10: '#d7301f'
}
OUTFILE = 'output.geojson'
if os.path.exists(OUTFILE):
raise Exception("File exists: %s"%OUTFILE)
# Transitland Datastore API
ds = Datastore(HOST)
# Group SSPs by (origin, destination) and count
edges = {}
ssps = ds.schedule_stop_pairs(
bbox=','.join(map(str, BBOX)),
origin_departure_between=','.join(BETWEEN),
date=DATE,
per_page=PER_PAGE
)
for ssp in ssps:
key = ssp['origin_onestop_id'], ssp['destination_onestop_id']
if key not in edges:
edges[key] = 0
edges[key] += 1
# Get Stop geometries
stops = {}
for stop in ds.stops(per_page=PER_PAGE, bbox=','.join(map(str, BBOX))):
stops[stop['onestop_id']] = stop
# Create GeoJSON Features
colorkeys = sorted(COLORMAP.keys())
features = []
edges_sorted = sorted(edges.items(), key=lambda x:x[1])
for (origin_onestop_id,destination_onestop_id),trips in edges_sorted:
# Origin and destination geometries
origin = stops.get(origin_onestop_id)
destination = stops.get(destination_onestop_id)
if not (origin and destination):
# Outside bounding box
continue
# Frequency is in trips per hour
frequency = trips / HOURS
frequency_class = [i for i in colorkeys if frequency >= i][-1]
print "Origin: %s Destination: %s Trips: %s Frequency: %s Freq. class: %s"%(
origin_onestop_id,
destination_onestop_id,
trips,
frequency,
frequency_class
)
# Create the GeoJSON Feature
features.append({
"type": "Feature",
"name": "%s -> %s"%(origin['name'], destination['name']),
"properties": {
"origin_onestop_id": origin_onestop_id,
"destination_onestop_id": destination_onestop_id,
"trips": trips,
"frequency": frequency,
"frequency_class": frequency_class,
"stroke": COLORMAP[frequency_class],
"stroke-width": frequency_class+1,
"stroke-opacity": 1.0
},
"geometry": {
"type": "LineString",
"coordinates": [
origin['geometry']['coordinates'],
destination['geometry']['coordinates']
]
}
})
# Create the GeoJSON Feature Collection
fc = {
"type": "FeatureCollection",
"features": features
}
with open(OUTFILE, 'wb') as f:
json.dump(fc, f)
Display the source blob
Display the rendered blob
Raw
{"type": "FeatureCollection", "features": [{"geometry": {"type": "LineString", "coordinates": [[-122.209018, 37.816097], [-122.207253, 37.816829]]}, "type": "Feature", "name": "Leimert Blvd:Carter St -> Leimert Blvd:Bywood Dr", "properties": {"origin_onestop_id": "s-9q9p5h4ner-leimertblvd~carterst", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5h76ux-leimertblvd~bywooddr", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.262238, 37.850042], [-122.265605, 37.849592]]}, "type": "Feature", "name": "Alcatraz Av:Raymond St -> Alcatraz Av:Shattuck Av", "properties": {"origin_onestop_id": "s-9q9p3f7k7r-alcatrazav~raymondst", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3f2cug-alcatrazav~shattuckav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.236689, 37.854225], [-122.198354, 37.810284]]}, "type": "Feature", "name": "Tunnel Rd:Roble Rd -> Lincoln Av:Monterey Blvd", "properties": {"origin_onestop_id": "s-9q9p67juyd-tunnelrd~roblerd", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p571ugg-lincolnav~montereyblvd", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.202336, 37.816009], [-122.200733, 37.813813]]}, "type": "Feature", "name": "Mountain Blvd:Joaquin Miller Ct -> Mountain Blvd:Woodcrest Cir", "properties": {"origin_onestop_id": "s-9q9p5hnypp-mountainblvd~joaquinmillerct", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p57b1kt-mountainblvd~woodcrestcir", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.247838, 37.846726], [-122.251819, 37.845483]]}, "type": "Feature", "name": "Miles Av:Presley Way -> College Av:Miles Av (Claremont Middle School)", "properties": {"origin_onestop_id": "s-9q9p61vc4v-milesav~presleyway", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p61dcyj-collegeav~milesavclaremontmiddleschool", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.229625, 37.812293], [-122.232859, 37.811795]]}, "type": "Feature", "name": "Mandana Blvd:Carlston Av -> Mandana Blvd:#804", "properties": {"origin_onestop_id": "s-9q9p4ee0e6-mandanablvd~carlstonav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4e2txv-mandanablvd~804", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.201223, 37.833913], [-122.202337, 37.834003]]}, "type": "Feature", "name": "Heartwood Dr:Colton Blvd -> Heartwood Dr:#6669", "properties": {"origin_onestop_id": "s-9q9p5pry90-heartwooddr~coltonblvd", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5pqzp1-heartwooddr~6669", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.090157, 37.670752], [-122.0865, 37.669718]]}, "type": "Feature", "name": "A St:Grand St -> Hayward BART Station", "properties": {"origin_onestop_id": "s-9q9nmcb8j1-ast~grandst", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmce4r2-haywardbartstation<0802140", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.206564, 37.829079], [-122.207168, 37.827955]]}, "type": "Feature", "name": "Snake Rd:Zinn Dr -> Snake Rd:Magellan Dr", "properties": {"origin_onestop_id": "s-9q9p5nefke-snakerd~zinndr", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5n77y9-snakerd~magellandr", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.253495, 37.888201], [-122.253155, 37.88964]]}, "type": "Feature", "name": "Shasta Rd:Queens Rd -> Shasta Rd:Miller Av", "properties": {"origin_onestop_id": "s-9q9pd13dz0-shastard~queensrd", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9pd19gph-shastard~millerav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.178234, 37.784678], [-122.180975, 37.793386]]}, "type": "Feature", "name": "Mountain Blvd:Frontage Rd -> Mountain Blvd:Stauffer Pl", "properties": {"origin_onestop_id": "s-9q9ngy2x8y-mountainblvd~frontagerd", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p58nd2v-mountainblvd~staufferpl", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.254512, 37.885766], [-122.254852, 37.886689]]}, "type": "Feature", "name": "Campus Dr:Glendale Av -> Campus Dr:Quail Av", "properties": {"origin_onestop_id": "s-9q9pd0bux6-campusdr~glendaleav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9pd109zq-campusdr~quailav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.261536, 37.896957], [-122.265173, 37.899359]]}, "type": "Feature", "name": "Grizzly Peak Blvd:Marin Av -> Grizzly Peak Blvd:Keeler Av", "properties": {"origin_onestop_id": "s-9q9p9fgvg8-grizzlypeakblvd~marinav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9g35yb-grizzlypeakblvd~keelerav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.205859, 37.807079], [-122.204878, 37.80645]]}, "type": "Feature", "name": "Alida St:Lincoln Av -> Alida St:Linnet Av", "properties": {"origin_onestop_id": "s-9q9p54s6jn-alidast~lincolnav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p54mnec-alidast~linnetav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.281774, 37.870129], [-122.281987, 37.872014]]}, "type": "Feature", "name": "Sacramento St:University Av -> Sacramento St:Hearst Av", "properties": {"origin_onestop_id": "s-9q9p3qj1kp-sacramentost~universityav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3qkurp-sacramentost~hearstav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.281987, 37.872014], [-122.282343, 37.875133]]}, "type": "Feature", "name": "Sacramento St:Hearst Av -> Sacramento St:Virginia St", "properties": {"origin_onestop_id": "s-9q9p3qkurp-sacramentost~hearstav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3quwwu-sacramentost~virginiast", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.245837, 37.760801], [-122.248661, 37.757812]]}, "type": "Feature", "name": "Park St:San Jose Av -> Otis Dr:Park St", "properties": {"origin_onestop_id": "s-9q9nf4pk9e-parkst~sanjoseav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nf1t3th-parkst~otisdr<0102500", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.225004, 37.806053], [-122.219005, 37.808655]]}, "type": "Feature", "name": "Park Blvd:Glen Park Rd -> Park Blvd:Everett Av", "properties": {"origin_onestop_id": "s-9q9p4dqknz-parkblvd~glenparkrd", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4ffg6u-parkblvd~everettav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.204184, 37.833582], [-122.204959, 37.833296]]}, "type": "Feature", "name": "Colton Blvd:Asilomar Cir (East Jctn) -> Colton Blvd:Asilomar Cir (West Jctn)", "properties": {"origin_onestop_id": "s-9q9p5pmss4-coltonblvd~asilomarcireastjctn", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5pm4fj-coltonblvd~asilomarcirwestjctn", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.27189, 37.848747], [-122.273522, 37.848533]]}, "type": "Feature", "name": "Alcatraz Av:Adeline St -> Alcatraz Av:King St", "properties": {"origin_onestop_id": "s-9q9p3dhkfm-alcatrazav~adelinest", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3d55sm-alcatrazav~kingst", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.200244, 37.833694], [-122.201223, 37.833913]]}, "type": "Feature", "name": "Heartwood Dr:Saroni Dr -> Heartwood Dr:Colton Blvd", "properties": {"origin_onestop_id": "s-9q9p5r2mpz-heartwooddr~saronidr", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5pry90-heartwooddr~coltonblvd", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.233463, 37.852871], [-122.198354, 37.810284]]}, "type": "Feature", "name": "Bentley School -> Lincoln Av:Monterey Blvd", "properties": {"origin_onestop_id": "s-9q9p6dbkcy-bentleyschool", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p571ugg-lincolnav~montereyblvd", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.188018, 37.783232], [-122.181423, 37.796173]]}, "type": "Feature", "name": "MacArthur Blvd:Richard's Gate (Mills College) -> Redwood Rd:Terrabella Way (West Jctn)", "properties": {"origin_onestop_id": "s-9q9ngw1rkb-macarthurblvd~richardsgatemillscollege", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p58w4wm-redwoodrd~terrabellawaywestjctn", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.216647, 37.798659], [-122.21293, 37.799478]]}, "type": "Feature", "name": "Montana St:Fruitvale Av -> MacArthur Blvd:Boston Av", "properties": {"origin_onestop_id": "s-9q9p4ch91s-montanast~fruitvaleav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4cpmbm-macarthurblvd~bostonav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.20708, 37.825569], [-122.206452, 37.824522]]}, "type": "Feature", "name": "Snake Rd:#5743 -> Snake Rd:Shepherd Canyon Rd", "properties": {"origin_onestop_id": "s-9q9p5jgtbt-snakerd~5743", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5jezz3-snakerd~shepherdcanyonrd", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.108299, 37.67501], [-122.104342, 37.671527]]}, "type": "Feature", "name": "Meekland Av:Grove Way -> Meekland Av:Sunset Blvd", "properties": {"origin_onestop_id": "s-9q9nm6e2y6-meeklandav~groveway", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nm3ykd9-meeklandav~sunsetblvd", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.241199, 37.848905], [-122.244923, 37.846613]]}, "type": "Feature", "name": "Broadway:Brookside Av (College Preparatory School) -> Broadway:Keith Av", "properties": {"origin_onestop_id": "s-9q9p664tve-broadway~brooksideavcollegepreparatoryschool", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p61zbwb-broadway~keithav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.208784, 37.812781], [-122.208846, 37.813903]]}, "type": "Feature", "name": "Leimert Blvd:Wrenn St -> Leimert Blvd:#2032", "properties": {"origin_onestop_id": "s-9q9p55d72v-leimertblvd~wrennst", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p55f1zq-leimertblvd~2032", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.198218, 37.810511], [-122.197808, 37.811319]]}, "type": "Feature", "name": "Monterey Blvd:Lincoln Av -> Mountain Blvd:Woodminster Ln(Near Joaquin Miller)", "properties": {"origin_onestop_id": "s-9q9p571ypn-montereyblvd~lincolnav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5766bs-mountainblvd~woodminsterlnnearjoaquinmiller", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.242579, 37.829967], [-122.239152, 37.830427]]}, "type": "Feature", "name": "Moraga Av:Ramona Av -> Moraga Av:Monticello Av", "properties": {"origin_onestop_id": "s-9q9p4q9xt2-moragaav~ramonaav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4qu4jq-moragaav~monticelloav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.39343, 37.790109], [-122.249096, 37.810236]]}, "type": "Feature", "name": "Transbay Temp Terminal -> MacArthur Blvd:Grand Av", "properties": {"origin_onestop_id": "s-9q8yyz7y5b-sanfranciscoterminal<1410350", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p45hutd-macarthurblvd~grandav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.19575, 37.838023], [-122.194738, 37.83728]]}, "type": "Feature", "name": "Glencourt Dr:Homeglen Ln -> Saroni Dr:Glencourt Dr", "properties": {"origin_onestop_id": "s-9q9p725y2w-glencourtdr~homeglenln", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p72hd0h-saronidr~glencourtdr", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.258339, 37.850553], [-122.260889, 37.850217]]}, "type": "Feature", "name": "Alcatraz Av:Dana St -> Alcatraz Av:Telegraph Av", "properties": {"origin_onestop_id": "s-9q9p3fqpqn-alcatrazav~danast", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3fkm6z-alcatrazav~telegraphav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.236689, 37.854225], [-122.233463, 37.852871]]}, "type": "Feature", "name": "Tunnel Rd:Roble Rd -> Bentley School", "properties": {"origin_onestop_id": "s-9q9p67juyd-tunnelrd~roblerd", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p6dbkcy-bentleyschool", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.215093, 37.831552], [-122.214535, 37.832601]]}, "type": "Feature", "name": "Moraga Av:Thornhill Dr -> Thornhill Dr:Mountain Blvd", "properties": {"origin_onestop_id": "s-9q9p4zj8vb-moragaav~thornhilldr", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4znnfg-thornhilldr~mountainblvd", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.249175, 37.839799], [-122.248943, 37.837271]]}, "type": "Feature", "name": "Broadway:Ada St -> Broadway Ter:Arts Jr High School/Far West High Sch", "properties": {"origin_onestop_id": "s-9q9p60sbgc-broadway~adast", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p60j414-broadwayter~artsjrhighschool~farwesthighsch", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.174806, 37.796697], [-122.171883, 37.799721]]}, "type": "Feature", "name": "Redwood Rd:Crestmont Dr -> Skyline Blvd:Redwood Rd", "properties": {"origin_onestop_id": "s-9q9p5bej8w-redwoodrd~crestmontdr", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5cjpkf-skylineblvd~redwoodrd", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.201105, 37.834996], [-122.200133, 37.836295]]}, "type": "Feature", "name": "Colton Blvd:Chambers Dr -> Colton Blvd:Hemlock Ln", "properties": {"origin_onestop_id": "s-9q9p5pxugf-coltonblvd~chambersdr", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5rbs6s-coltonblvd~hemlockln", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.251761, 37.883547], [-122.252289, 37.882765]]}, "type": "Feature", "name": "Avenida Dr:Queens Rd -> Avenida Dr:Campus Dr", "properties": {"origin_onestop_id": "s-9q9pd06zxm-avenidadr~queensrd", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9pd06e55-avenidadr~campusdr", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.19922, 37.812253], [-122.197557, 37.81105]]}, "type": "Feature", "name": "Mountain Blvd:Kearney Av -> Mountain Blvd:Joaquin Miller Rd", "properties": {"origin_onestop_id": "s-9q9p5790rf-mountainblvd~kearneyav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5763qd-mountainblvd~joaquinmillerrd", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.283172, 37.880911], [-122.282045, 37.881563]]}, "type": "Feature", "name": "Sacramento St:Hopkins St -> Hopkins St:California St", "properties": {"origin_onestop_id": "s-9q9p92h079-sacramentost~hopkinsst", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p92hujg-hopkinsst~californiast", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.210075, 37.811573], [-122.210663, 37.812526]]}, "type": "Feature", "name": "Leimert Blvd:Hoover Av -> Leimert Blvd:#1789", "properties": {"origin_onestop_id": "s-9q9p553k6u-leimertblvd~hooverav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p558cvj-leimertblvd~1789", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.234874, 37.810975], [-122.239408, 37.810527]]}, "type": "Feature", "name": "Mandana Blvd:Paloma Av -> Mandana Blvd:Calmar Av", "properties": {"origin_onestop_id": "s-9q9p47r2bu-mandanablvd~palomaav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p475yr3-mandanablvd~calmarav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.252289, 37.882765], [-122.253042, 37.883805]]}, "type": "Feature", "name": "Avenida Dr:Campus Dr -> Campus Dr:Del Mar Av", "properties": {"origin_onestop_id": "s-9q9pd06e55-avenidadr~campusdr", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9pd0d11t-campusdr~delmarav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.204203, 37.833416], [-122.201561, 37.833857]]}, "type": "Feature", "name": "Colton Blvd:Heartwood Dr (West Jctn) -> Heartwood Dr:Colton Blvd (East Jctn)", "properties": {"origin_onestop_id": "s-9q9p5pmeee-coltonblvd~heartwooddrwestjctn", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5prw1n-heartwooddr~coltonblvdeastjctn", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.254414, 37.851052], [-122.258339, 37.850553]]}, "type": "Feature", "name": "Alcatraz Av:Hillegass Av -> Alcatraz Av:Dana St", "properties": {"origin_onestop_id": "s-9q9p64943e-alcatrazav~hillegassav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3fqpqn-alcatrazav~danast", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.29095, 37.776361], [-122.291221, 37.779655]]}, "type": "Feature", "name": "Central Av:Pacific Av -> Main St:Ralph Appezzato Memorial Pkwy", "properties": {"origin_onestop_id": "s-9q9nchyrq2-centralav~pacificav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncjw62n-mainst~ralphappezzatomemorialpkwy", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.225257, 37.816797], [-122.225278, 37.814466]]}, "type": "Feature", "name": "Crocker Av:Farragut Av -> Crocker Av:Ashmount Av", "properties": {"origin_onestop_id": "s-9q9p4sq6c1-crockerav~farragutav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4eym0x-crockerav~ashmountav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.230758, 37.824533], [-122.231964, 37.825041]]}, "type": "Feature", "name": "Highland Av:Mountain Av -> Highland Way:Highland Av", "properties": {"origin_onestop_id": "s-9q9p4tdrbu-highlandav~mountainav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4tc63j-highlandave~highlandway<1100360", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.260889, 37.850217], [-122.262238, 37.850042]]}, "type": "Feature", "name": "Alcatraz Av:Telegraph Av -> Alcatraz Av:Raymond St", "properties": {"origin_onestop_id": "s-9q9p3fkm6z-alcatrazav~telegraphav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3f7k7r-alcatrazav~raymondst", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.195151, 37.834732], [-122.196443, 37.834853]]}, "type": "Feature", "name": "Saroni Dr:Azalea Ln -> Saroni Dr:Homewood Dr", "properties": {"origin_onestop_id": "s-9q9p5rs5q9-saronidr~azalealn", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5re7bx-saronidr~homewooddr", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.239408, 37.810527], [-122.241725, 37.811386]]}, "type": "Feature", "name": "Mandana Blvd:Calmar Av -> Mandana Blvd:Lake Shore Av", "properties": {"origin_onestop_id": "s-9q9p475yr3-mandanablvd~calmarav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p473gzg-mandanablvd~lakeshoreave<1015490", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.17741, 37.766291], [-122.179659, 37.768448]]}, "type": "Feature", "name": "Bancroft Av:73rd Av -> Bancroft Av:Church St", "properties": {"origin_onestop_id": "s-9q9ngg1hs4-bancroftav~73rdav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngex3pt-bancroftav~churchst", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.246649, 37.829301], [-122.242579, 37.829967]]}, "type": "Feature", "name": "Pleasant Valley Av:Pleasant Valley Ct -> Moraga Av:Ramona Av", "properties": {"origin_onestop_id": "s-9q9p4nwews-pleasantvalleyav~pleasantvalleyct", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4q9xt2-moragaav~ramonaav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.22897, 37.842484], [-122.231359, 37.842761]]}, "type": "Feature", "name": "Broadway Ter:Proctor Av -> Broadway Ter:Hermosa Av", "properties": {"origin_onestop_id": "s-9q9p69586w-broadwayter~proctorav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p691f4c-broadwayter~hermosaav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.251927, 37.844867], [-122.248886, 37.845181]]}, "type": "Feature", "name": "College Av:Rockridge BART Station -> Keith Av:Mc Millan Av", "properties": {"origin_onestop_id": "s-9q9p616upv-rockridgebartstation<1007560", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p61t04m-keithav~mcmillanav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.282343, 37.875133], [-122.282535, 37.876909]]}, "type": "Feature", "name": "Sacramento St:Virginia St -> Sacramento St:Cedar St", "properties": {"origin_onestop_id": "s-9q9p3quwwu-sacramentost~virginiast", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3rk8fr-sacramentost~cedarst", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.151654, 37.753798], [-122.149875, 37.753767]]}, "type": "Feature", "name": "Golf Links Rd:98th Av -> Mountain Blvd:Golf Links Rd", "properties": {"origin_onestop_id": "s-9q9nu2ggu4-golflinksrd~98thav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu2v5ts-mountainblvd~golflinksrd", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.209129, 37.824312], [-122.198354, 37.810284]]}, "type": "Feature", "name": "Mountain Blvd:Snake Rd -> Lincoln Av:Monterey Blvd", "properties": {"origin_onestop_id": "s-9q9p5jdn8f-mountainblvd~snakerd", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p571ugg-lincolnav~montereyblvd", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.253155, 37.88964], [-122.252345, 37.889904]]}, "type": "Feature", "name": "Shasta Rd:Miller Av -> Shasta Rd:Grizzly Peak Blvd", "properties": {"origin_onestop_id": "s-9q9pd19gph-shastard~millerav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9pd1ds9y-shastard~grizzlypeakblvd", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.252308, 37.850062], [-122.25331, 37.851204]]}, "type": "Feature", "name": "College Av:Claremont Av -> Alcatraz Av:Benvenue Av", "properties": {"origin_onestop_id": "s-9q9p646sdf-collegeav~claremontav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p649g5r-alcatrazav~benvenueav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.215093, 37.831552], [-122.219031, 37.832992]]}, "type": "Feature", "name": "Moraga Av:Thornhill Dr -> Moraga Av:Estates Dr", "properties": {"origin_onestop_id": "s-9q9p4zj8vb-moragaav~thornhilldr", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4z6c4h-moragaav~estatesdr", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.223867, 37.841388], [-122.225658, 37.842103]]}, "type": "Feature", "name": "Broadway Ter:Pinewood Rd -> Broadway Ter:Temescal Recreational Area", "properties": {"origin_onestop_id": "s-9q9p68z616-broadwayter~pinewoodrd", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p68vypx-broadwayter~temescalrecreationalarea", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.20752, 37.832658], [-122.208308, 37.830998]]}, "type": "Feature", "name": "Snake Rd:Colton Blvd -> Snake Rd:Drake Dr", "properties": {"origin_onestop_id": "s-9q9p5p5pr5-snakerd~coltonblvd<1019650", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5nfts1-snakerd~drakedr", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.205926, 37.807237], [-122.204357, 37.808199]]}, "type": "Feature", "name": "Alida St:Lincoln Av -> Lincoln Av:Head Royce School", "properties": {"origin_onestop_id": "s-9q9p54s75e-alidast~lincolnav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p54v88p-lincolnav~headroyceschool", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.215789, 37.800204], [-122.211035, 37.802745]]}, "type": "Feature", "name": "MacArthur Blvd:Fruitvale Av -> Lincoln Av:Hearst Av", "properties": {"origin_onestop_id": "s-9q9p4ckf4b-fruitvaleave~macarthurblvd<9902640", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p51b8uq-lincolnav~hearstav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.254852, 37.886689], [-122.254486, 37.887638]]}, "type": "Feature", "name": "Campus Dr:Quail Av -> Campus Dr:Shasta Rd", "properties": {"origin_onestop_id": "s-9q9pd109zq-campusdr~quailav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9pd11p2p-campusdr~shastard", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.204959, 37.833296], [-122.20752, 37.832658]]}, "type": "Feature", "name": "Colton Blvd:Asilomar Cir (West Jctn) -> Snake Rd:Colton Blvd", "properties": {"origin_onestop_id": "s-9q9p5pm4fj-coltonblvd~asilomarcirwestjctn", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5p5pr5-snakerd~coltonblvd<1019650", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.265605, 37.849592], [-122.269135, 37.849124]]}, "type": "Feature", "name": "Alcatraz Av:Shattuck Av -> Alcatraz Av:Dover St", "properties": {"origin_onestop_id": "s-9q9p3f2cug-alcatrazav~shattuckav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3dnr4s-alcatrazav~doverst", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.20755, 37.82742], [-122.20708, 37.825569]]}, "type": "Feature", "name": "Snake Rd:#5843 -> Snake Rd:#5743", "properties": {"origin_onestop_id": "s-9q9p5n70tw-snakerd~5843", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5jgtbt-snakerd~5743", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.17215, 37.799551], [-122.16945, 37.797734]]}, "type": "Feature", "name": "Skyline Blvd:Rishell Rd -> 5500 Redwood Rd:Hebrew Day School", "properties": {"origin_onestop_id": "s-9q9p5chyqe-skylineblvd~rishellrd", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5bygv2-5500redwoodrd~hebrewdayschool", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.247879, 37.829762], [-122.246649, 37.829301]]}, "type": "Feature", "name": "Piedmont Av:Brandon St -> Pleasant Valley Av:Pleasant Valley Ct", "properties": {"origin_onestop_id": "s-9q9p4nty3f-piedmontav~brandonst", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4nwews-pleasantvalleyav~pleasantvalleyct", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.20486, 37.808095], [-122.205859, 37.807079]]}, "type": "Feature", "name": "Lincoln Av:Head Royce School -> Alida St:Lincoln Av", "properties": {"origin_onestop_id": "s-9q9p54v0h7-lincolnav~headroyceschool", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p54s6jn-alidast~lincolnav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.210251, 37.813083], [-122.208784, 37.812781]]}, "type": "Feature", "name": "Leimert Blvd:Oakview Dr -> Leimert Blvd:Wrenn St", "properties": {"origin_onestop_id": "s-9q9p559jnv-leimertblvd~oakviewdr", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p55d72v-leimertblvd~wrennst", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.209129, 37.824312], [-122.201637, 37.818533]]}, "type": "Feature", "name": "Mountain Blvd:Snake Rd -> Ascot Dr:Camino Lenada (Opp. Joaquin Miller Sch.)", "properties": {"origin_onestop_id": "s-9q9p5jdn8f-mountainblvd~snakerd", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5hxkzm-ascotdr~caminolenadaoppjoaquinmillersch", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.210663, 37.812526], [-122.210251, 37.813083]]}, "type": "Feature", "name": "Leimert Blvd:#1789 -> Leimert Blvd:Oakview Dr", "properties": {"origin_onestop_id": "s-9q9p558cvj-leimertblvd~1789", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p559jnv-leimertblvd~oakviewdr", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.212241, 37.851109], [-122.212821, 37.84977]]}, "type": "Feature", "name": "Skyline Blvd:Broadway Ter -> Broadway Ter:Balsam Way", "properties": {"origin_onestop_id": "s-9q9p6fxf8q-skylineblvd~broadwayter", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p6fr6fu-broadwayter~balsamway", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.282399, 37.872798], [-122.281347, 37.870368]]}, "type": "Feature", "name": "Sacramento St:Delaware St -> University Av:Sacramento St", "properties": {"origin_onestop_id": "s-9q9p3qs9j9-sacramentost~delawarest", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3qj6yh-universityav~sacramentost", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.298977, 37.910337], [-122.296166, 37.908424]]}, "type": "Feature", "name": "Ashbury Av:Stockton Av -> Ashbury Av:Eureka Av (El Cerrito High School)", "properties": {"origin_onestop_id": "s-9q9p9j2eer-ashburyav~stocktonav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9j48sf-ashburyav~eurekaavelcerritohighschool", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.2503, 37.882945], [-122.250139, 37.883519]]}, "type": "Feature", "name": "Senior Av:Fairlawn Dr -> Fairlawn Dr:Avenida Dr", "properties": {"origin_onestop_id": "s-9q9pd0kh1s-seniorav~fairlawndr", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9pd0kpmr-fairlawndr~avenidadr", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.393017, 37.789638], [-122.284881, 37.829901]]}, "type": "Feature", "name": "Transbay Temp Terminal -> 40th St:Hollis St", "properties": {"origin_onestop_id": "s-9q8yyz7y5b-sanfranciscoterminal<1410390", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1qdz5s-40thst~hollisst", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.207451, 37.832705], [-122.205213, 37.833166]]}, "type": "Feature", "name": "Snake Rd:Colton Blvd -> Colton Blvd:Asilomar Dr", "properties": {"origin_onestop_id": "s-9q9p5p5pr5-snakerd~coltonblvd<1019640", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5pkfhj-coltonblvd~asilomardr", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.114088, 37.675818], [-122.1122, 37.674625]]}, "type": "Feature", "name": "Hathaway Av:Louette Ct -> W Blossom Way:Hathaway Av", "properties": {"origin_onestop_id": "s-9q9nm4xjx9-hathawayav~louettect", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nm62wee-wblossomway~hathawayav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.20313, 37.803948], [-122.201723, 37.805335]]}, "type": "Feature", "name": "Coolidge Av:#4024 -> Coolidge Av:Alida St", "properties": {"origin_onestop_id": "s-9q9p51yruw-coolidgeav~4024", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p54r2j3-coolidgeav~alidast", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.215306, 37.840915], [-122.216948, 37.84184]]}, "type": "Feature", "name": "Broadway Ter:Uranus Av -> Broadway Ter:Taurus Av", "properties": {"origin_onestop_id": "s-9q9p6btx2c-broadwayter~uranusav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p6bukdw-broadwayter~taurusav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.207168, 37.827955], [-122.20755, 37.82742]]}, "type": "Feature", "name": "Snake Rd:Magellan Dr -> Snake Rd:#5843", "properties": {"origin_onestop_id": "s-9q9p5n77y9-snakerd~magellandr", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5n70tw-snakerd~5843", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.2264, 37.813162], [-122.229625, 37.812293]]}, "type": "Feature", "name": "Mandana Blvd:Ardmore Av -> Mandana Blvd:Carlston Av", "properties": {"origin_onestop_id": "s-9q9p4etmwk-mandanablvd~ardmoreav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4ee0e6-mandanablvd~carlstonav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.203206, 37.817937], [-122.208913, 37.82435]]}, "type": "Feature", "name": "Mountain Blvd:Ascot Dr -> Mountain Blvd:Snake Rd", "properties": {"origin_onestop_id": "s-9q9p5hw36y-mountainblvd~ascotdr", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5jdnvc-mountainblvd~snakerd", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.218618, 37.842453], [-122.219768, 37.839517]]}, "type": "Feature", "name": "Broadway Ter:Swainland Rd -> Mountain Blvd:Broadway Ter", "properties": {"origin_onestop_id": "s-9q9p6c507b-broadwayter~swainlandrd", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p6b6r0v-mountainblvd~broadwayter", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.204948, 37.802194], [-122.203816, 37.803287]]}, "type": "Feature", "name": "Coolidge Av:Carmel St -> Coolidge Av:Morgan Av", "properties": {"origin_onestop_id": "s-9q9p51tjdr-coolidgeav~carmelst", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p51vuhe-coolidgeav~morganav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.203816, 37.803287], [-122.20313, 37.803948]]}, "type": "Feature", "name": "Coolidge Av:Morgan Av -> Coolidge Av:#4024", "properties": {"origin_onestop_id": "s-9q9p51vuhe-coolidgeav~morganav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p51yruw-coolidgeav~4024", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.206452, 37.824522], [-122.208989, 37.824518]]}, "type": "Feature", "name": "Snake Rd:Shepherd Canyon Rd -> Snake Rd:Mountain Blvd", "properties": {"origin_onestop_id": "s-9q9p5jezz3-snakerd~shepherdcanyonrd", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5jdpu1-snakerd~mountainblvd", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.244923, 37.846613], [-122.246734, 37.843697]]}, "type": "Feature", "name": "Broadway:Keith Av -> Broadway:Taft Av", "properties": {"origin_onestop_id": "s-9q9p61zbwb-broadway~keithav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p61nxs8-broadway~taftav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.216486, 37.835101], [-122.217707, 37.836558]]}, "type": "Feature", "name": "Mountain Blvd:#1500 -> Mountain Blvd:Florence Ter", "properties": {"origin_onestop_id": "s-9q9p4zstmq-mountainblvd~1500", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4zgvcj-mountainblvd~florenceter", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.208846, 37.813903], [-122.209018, 37.816097]]}, "type": "Feature", "name": "Leimert Blvd:#2032 -> Leimert Blvd:Carter St", "properties": {"origin_onestop_id": "s-9q9p55f1zq-leimertblvd~2032", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5h4ner-leimertblvd~carterst", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.198497, 37.810097], [-122.197808, 37.811319]]}, "type": "Feature", "name": "Lincoln Av:Maiden Ln -> Mountain Blvd:Woodminster Ln(Near Joaquin Miller)", "properties": {"origin_onestop_id": "s-9q9p571gb8-lincolnav~maidenln", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5766bs-mountainblvd~woodminsterlnnearjoaquinmiller", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.179659, 37.768448], [-122.184863, 37.770905]]}, "type": "Feature", "name": "Bancroft Av:Church St -> Foothill Blvd:64th Av", "properties": {"origin_onestop_id": "s-9q9ngex3pt-bancroftav~churchst", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngegxqr-foothillblvd~64thav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.21415, 37.84771], [-122.213914, 37.844546]]}, "type": "Feature", "name": "Broadway Ter:Pineneedle Dr (South Jctn) -> Broadway Ter:Pinehaven Rd", "properties": {"origin_onestop_id": "s-9q9p6cyqgu-broadwayter~pineneedledrsouthjctn", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p6cqs3q-broadwayter~pinehavenrd", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.206706, 37.800447], [-122.204948, 37.802194]]}, "type": "Feature", "name": "Coolidge Av:Madeline St (Bret Harte Middle School) -> Coolidge Av:Carmel St", "properties": {"origin_onestop_id": "s-9q9p517g96-coolidgeav~madelinestbrethartemiddleschool", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p51tjdr-coolidgeav~carmelst", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.198469, 37.835263], [-122.200244, 37.833694]]}, "type": "Feature", "name": "Saroni Dr:Sayre Dr -> Heartwood Dr:Saroni Dr", "properties": {"origin_onestop_id": "s-9q9p5r9y3k-saronidr~sayredr", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5r2mpz-heartwooddr~saronidr", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.204408, 37.815536], [-122.20281, 37.81519]]}, "type": "Feature", "name": "Leimert Blvd:#2565 -> Leimert Blvd:Monterey Blvd", "properties": {"origin_onestop_id": "s-9q9p5hj7qy-leimertblvd~2565", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5hn9kn-leimertblvd~montereyblvd", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.208357, 37.798807], [-122.206706, 37.800447]]}, "type": "Feature", "name": "Coolidge Av:Hopkins Pl -> Coolidge Av:Madeline St (Bret Harte Middle School)", "properties": {"origin_onestop_id": "s-9q9p514d4b-coolidgeav~hopkinspl", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p517g96-coolidgeav~madelinestbrethartemiddleschool", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.110041, 37.676184], [-122.108299, 37.67501]]}, "type": "Feature", "name": "W Blossom Way:Meekland Av -> Meekland Av:Grove Way", "properties": {"origin_onestop_id": "s-9q9nm6dptv-wblossomway~meeklandav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nm6e2y6-meeklandav~groveway", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.217707, 37.836558], [-122.219404, 37.837592]]}, "type": "Feature", "name": "Mountain Blvd:Florence Ter -> Duncan Way:Glenwood Glade", "properties": {"origin_onestop_id": "s-9q9p4zgvcj-mountainblvd~florenceter", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p6b4ecq-duncanway~glenwoodglade", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.209129, 37.824312], [-122.203364, 37.817793]]}, "type": "Feature", "name": "Mountain Blvd:Snake Rd -> Mountain Blvd:El Patio", "properties": {"origin_onestop_id": "s-9q9p5jdn8f-mountainblvd~snakerd", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5hw0x5-mountainblvd~elpatio", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.282535, 37.876909], [-122.282704, 37.878423]]}, "type": "Feature", "name": "Sacramento St:Cedar St -> Sacramento St:Rose St", "properties": {"origin_onestop_id": "s-9q9p3rk8fr-sacramentost~cedarst", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3rs3y3-sacramentost~rosest", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.233731, 37.768741], [-122.232229, 37.766939]]}, "type": "Feature", "name": "Blanding Av:Broadway -> Fernside Blvd:Versailles Av", "properties": {"origin_onestop_id": "s-9q9nf7xfr8-broadway~blandingave<0100350", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nfe30qe-fernsideblvd~versaillesav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.25331, 37.851204], [-122.254414, 37.851052]]}, "type": "Feature", "name": "Alcatraz Av:Benvenue Av -> Alcatraz Av:Hillegass Av", "properties": {"origin_onestop_id": "s-9q9p649g5r-alcatrazav~benvenueav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p64943e-alcatrazav~hillegassav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.236265, 37.830484], [-122.235211, 37.830237]]}, "type": "Feature", "name": "Moraga Av:Bonita Av -> Highland Av:Moraga Av", "properties": {"origin_onestop_id": "s-9q9p4qy689-moragaav~bonitaav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4qz115-highlandav~moragaav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.090037, 37.671336], [-122.101789, 37.679137]]}, "type": "Feature", "name": "Western Av:A St -> Blossom Way:Western Av", "properties": {"origin_onestop_id": "s-9q9nmcbery-westernav~ast", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nme20yh-blossomway~westernav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.154365, 37.751464], [-122.151654, 37.753798]]}, "type": "Feature", "name": "98th Av:Stearns Av (Bishop O'Dowd High School) -> Golf Links Rd:98th Av", "properties": {"origin_onestop_id": "s-9q9nu23yhy-98thav~stearnsavbishopodowdhighschool", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu2ggu4-golflinksrd~98thav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.194738, 37.83728], [-122.195151, 37.834732]]}, "type": "Feature", "name": "Saroni Dr:Glencourt Dr -> Saroni Dr:Azalea Ln", "properties": {"origin_onestop_id": "s-9q9p72hd0h-saronidr~glencourtdr", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5rs5q9-saronidr~azalealn", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.288228, 37.773268], [-122.29095, 37.776361]]}, "type": "Feature", "name": "3rd St:Santa Clara Av -> Central Av:Pacific Av", "properties": {"origin_onestop_id": "s-9q9nck2mjz-3rdst~santaclaraav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nchyrq2-centralav~pacificav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.242684, 37.761733], [-122.244617, 37.762216]]}, "type": "Feature", "name": "Encinal Av:Park Av -> Park St:Encinal Av", "properties": {"origin_onestop_id": "s-9q9nf63d51-encinalav~parkav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nf62hvg-parkst~encinalav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.277582, 37.848001], [-122.277738, 37.848458]]}, "type": "Feature", "name": "Alcatraz Av:Sacramento St -> Sacramento St:Alcatraz Av", "properties": {"origin_onestop_id": "s-9q9p3d00tf-alcatrazav~sacramentost", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3d054p-sacramentost~alcatrazav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.196618, 37.839194], [-122.195331, 37.838647]]}, "type": "Feature", "name": "Arrowhead Dr:Homewood Dr -> Arrowhead Dr:Glencourt Dr", "properties": {"origin_onestop_id": "s-9q9p727jk3-arrowheaddr~homewooddr", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p72k447-arrowheaddr~glencourtdr", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.209129, 37.824312], [-122.201969, 37.821139]]}, "type": "Feature", "name": "Mountain Blvd:Snake Rd -> Montera Jr High School:Scout Rd", "properties": {"origin_onestop_id": "s-9q9p5jdn8f-mountainblvd~snakerd", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5jphpe-monterajrhighschool~scoutrd", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.20281, 37.81519], [-122.198218, 37.810511]]}, "type": "Feature", "name": "Leimert Blvd:Monterey Blvd -> Monterey Blvd:Lincoln Av", "properties": {"origin_onestop_id": "s-9q9p5hn9kn-leimertblvd~montereyblvd", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p571ypn-montereyblvd~lincolnav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.250139, 37.883519], [-122.251761, 37.883547]]}, "type": "Feature", "name": "Fairlawn Dr:Avenida Dr -> Avenida Dr:Queens Rd", "properties": {"origin_onestop_id": "s-9q9pd0kpmr-fairlawndr~avenidadr", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9pd06zxm-avenidadr~queensrd", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.196443, 37.834853], [-122.198469, 37.835263]]}, "type": "Feature", "name": "Saroni Dr:Homewood Dr -> Saroni Dr:Sayre Dr", "properties": {"origin_onestop_id": "s-9q9p5re7bx-saronidr~homewooddr", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5r9y3k-saronidr~sayredr", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.214035, 37.856096], [-122.212241, 37.851109]]}, "type": "Feature", "name": "Tunnel Rd:Skyline Blvd -> Skyline Blvd:Broadway Ter", "properties": {"origin_onestop_id": "s-9q9p6gqrwx-tunnelrd~skylineblvd", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p6fxf8q-skylineblvd~broadwayter", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.208989, 37.824518], [-122.201969, 37.821139]]}, "type": "Feature", "name": "Snake Rd:Mountain Blvd -> Montera Jr High School:Scout Rd", "properties": {"origin_onestop_id": "s-9q9p5jdpu1-snakerd~mountainblvd", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5jphpe-monterajrhighschool~scoutrd", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.180975, 37.793386], [-122.178465, 37.788898]]}, "type": "Feature", "name": "Mountain Blvd:Stauffer Pl -> Oakland Community Day School", "properties": {"origin_onestop_id": "s-9q9p58nd2v-mountainblvd~staufferpl", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngz2273-oaklandcommunitydayschool", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.200133, 37.836295], [-122.198278, 37.837885]]}, "type": "Feature", "name": "Colton Blvd:Hemlock Ln -> Colton Blvd:Ridgewood Dr", "properties": {"origin_onestop_id": "s-9q9p5rbs6s-coltonblvd~hemlockln", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p721vts-coltonblvd~ridgewooddr", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.246734, 37.843697], [-122.249175, 37.839799]]}, "type": "Feature", "name": "Broadway:Taft Av -> Broadway:Ada St", "properties": {"origin_onestop_id": "s-9q9p61nxs8-broadway~taftav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p60sbgc-broadway~adast", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.101789, 37.679137], [-122.105002, 37.678083]]}, "type": "Feature", "name": "Blossom Way:Western Av -> Blossom Way:Haviland Av", "properties": {"origin_onestop_id": "s-9q9nme20yh-blossomway~westernav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nm7jfep-blossomway~havilandav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.252874, 37.82661], [-122.251236, 37.82721]]}, "type": "Feature", "name": "41st St:Piedmont Av -> Piedmont Av:Linda Av", "properties": {"origin_onestop_id": "s-9q9p4n45vx-41stst~piedmontav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4n5r7x-piedmontav~lindaav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.236394, 37.745455], [-122.231885, 37.752975]]}, "type": "Feature", "name": "Island Dr:Bayfarm Park & Ride Lot -> Fernside Blvd:San Jose Av (Lincoln Middle School)", "properties": {"origin_onestop_id": "s-9q9ndrq5jw-islanddr~bayfarmpark~ridelot", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nf89rn8-fernsideblvd~sanjoseavlincolnmiddleschool", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.212691, 37.811717], [-122.210075, 37.811573]]}, "type": "Feature", "name": "Leimert Blvd:Clemens Rd -> Leimert Blvd:Hoover Av", "properties": {"origin_onestop_id": "s-9q9p4grmjy-leimertblvd~clemensrd", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p553k6u-leimertblvd~hooverav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.1122, 37.674625], [-122.110041, 37.676184]]}, "type": "Feature", "name": "W Blossom Way:Hathaway Av -> W Blossom Way:Meekland Av", "properties": {"origin_onestop_id": "s-9q9nm62wee-wblossomway~hathawayav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nm6dptv-wblossomway~meeklandav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.225278, 37.818237], [-122.225257, 37.816797]]}, "type": "Feature", "name": "Crocker Av:Woodland Way -> Crocker Av:Farragut Av", "properties": {"origin_onestop_id": "s-9q9p4sw70w-crockerav~woodlandway", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4sq6c1-crockerav~farragutav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.232859, 37.811795], [-122.234874, 37.810975]]}, "type": "Feature", "name": "Mandana Blvd:#804 -> Mandana Blvd:Paloma Av", "properties": {"origin_onestop_id": "s-9q9p4e2txv-mandanablvd~804", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p47r2bu-mandanablvd~palomaav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.249096, 37.810236], [-122.245574, 37.810143]]}, "type": "Feature", "name": "MacArthur Blvd:Grand Av -> Lakeshore Av:Lake Park Av", "properties": {"origin_onestop_id": "s-9q9p45hutd-macarthurblvd~grandav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p45pkp9-lakeshoreav~lakeparkav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.241725, 37.811386], [-122.198354, 37.810284]]}, "type": "Feature", "name": "Mandana Blvd:Lake Shore Av -> Lincoln Av:Monterey Blvd", "properties": {"origin_onestop_id": "s-9q9p473gzg-mandanablvd~lakeshoreave<1015490", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p571ugg-lincolnav~montereyblvd", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.156723, 37.741659], [-122.158225, 37.743861]]}, "type": "Feature", "name": "106th Av:Bancroft Av -> Bancroft Av:103rd Av", "properties": {"origin_onestop_id": "s-9q9nsq8jn5-106thav~bancroftav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nspp1gj-bancroftav~103rdav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.220713, 37.838925], [-122.221655, 37.840068]]}, "type": "Feature", "name": "Duncan Way:Leo Way -> Duncan Way:Broadway Ter", "properties": {"origin_onestop_id": "s-9q9p6b3edy-duncanway~leoway", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p6b8fm5-duncanway~broadwayter", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.214855, 37.812444], [-122.212691, 37.811717]]}, "type": "Feature", "name": "Park Blvd:Leimert Blvd -> Leimert Blvd:Clemens Rd", "properties": {"origin_onestop_id": "s-9q9p4gtc7q-parkblvd~leimertblvd", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4grmjy-leimertblvd~clemensrd", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.219404, 37.837592], [-122.220713, 37.838925]]}, "type": "Feature", "name": "Duncan Way:Glenwood Glade -> Duncan Way:Leo Way", "properties": {"origin_onestop_id": "s-9q9p6b4ecq-duncanway~glenwoodglade", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p6b3edy-duncanway~leoway", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.253042, 37.883805], [-122.254512, 37.885766]]}, "type": "Feature", "name": "Campus Dr:Del Mar Av -> Campus Dr:Glendale Av", "properties": {"origin_onestop_id": "s-9q9pd0d11t-campusdr~delmarav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9pd0bux6-campusdr~glendaleav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.20214, 37.806578], [-122.203225, 37.806198]]}, "type": "Feature", "name": "Charleston St:Laguna Av -> Laguna Av:Alida St", "properties": {"origin_onestop_id": "s-9q9p54rp7b-charlestonst~lagunaav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p54qm46-lagunaav~alidast", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.212821, 37.84977], [-122.21415, 37.84771]]}, "type": "Feature", "name": "Broadway Ter:Balsam Way -> Broadway Ter:Pineneedle Dr (South Jctn)", "properties": {"origin_onestop_id": "s-9q9p6fr6fu-broadwayter~balsamway", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p6cyqgu-broadwayter~pineneedledrsouthjctn", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.203364, 37.817793], [-122.202336, 37.816009]]}, "type": "Feature", "name": "Mountain Blvd:El Patio -> Mountain Blvd:Joaquin Miller Ct", "properties": {"origin_onestop_id": "s-9q9p5hw0x5-mountainblvd~elpatio", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5hnypp-mountainblvd~joaquinmillerct", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.202337, 37.834003], [-122.204184, 37.833582]]}, "type": "Feature", "name": "Heartwood Dr:#6669 -> Colton Blvd:Asilomar Cir (East Jctn)", "properties": {"origin_onestop_id": "s-9q9p5pqzp1-heartwooddr~6669", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5pmss4-coltonblvd~asilomarcireastjctn", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.251236, 37.82721], [-122.250023, 37.82813]]}, "type": "Feature", "name": "Piedmont Av:Linda Av -> Piedmont Av:Glenwood Av", "properties": {"origin_onestop_id": "s-9q9p4n5r7x-piedmontav~lindaav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4nkhzf-piedmontav~glenwoodav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.252345, 37.889904], [-122.252263, 37.890339]]}, "type": "Feature", "name": "Shasta Rd:Grizzly Peak Blvd -> Grizzly Peak Blvd:Shasta Rd", "properties": {"origin_onestop_id": "s-9q9pd1ds9y-shastard~grizzlypeakblvd", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9pd1dx5z-grizzlypeakblvd~shastard", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.197557, 37.81105], [-122.196536, 37.81084]]}, "type": "Feature", "name": "Mountain Blvd:Joaquin Miller Rd -> Joaquin Miller Rd:Mountain Blvd", "properties": {"origin_onestop_id": "s-9q9p5763qd-mountainblvd~joaquinmillerrd", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5770n7-joaquinmillerrd~mountainblvd", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.249438, 37.837239], [-122.247838, 37.846726]]}, "type": "Feature", "name": "Broadway Ter:Thomas Av (Arts Jr High Sch./Far W H) -> Miles Av:Presley Way", "properties": {"origin_onestop_id": "s-9q9p60h9vs-broadwayter~thomasavartsjrhighsch~farwh", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p61vc4v-milesav~presleyway", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.245574, 37.810143], [-122.24243, 37.811013]]}, "type": "Feature", "name": "Lakeshore Av:Lake Park Av -> Longridge Rd:Lakeshore Av", "properties": {"origin_onestop_id": "s-9q9p45pkp9-lakeshoreav~lakeparkav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p473c0g-longridgerd~lakeshoreav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.253115, 37.856824], [-122.252999, 37.855734]]}, "type": "Feature", "name": "College Av:Ashby Av -> College Av:Webster St", "properties": {"origin_onestop_id": "s-9q9p659gzz-collegeav~ashbyav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p656jds-collegeav~websterst", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.174499, 37.764187], [-122.17741, 37.766291]]}, "type": "Feature", "name": "Bancroft Av:77th Av -> Bancroft Av:73rd Av", "properties": {"origin_onestop_id": "s-9q9ngfg0rf-bancroftav~77thav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngg1hs4-bancroftav~73rdav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.282704, 37.878423], [-122.283172, 37.880911]]}, "type": "Feature", "name": "Sacramento St:Rose St -> Sacramento St:Hopkins St", "properties": {"origin_onestop_id": "s-9q9p3rs3y3-sacramentost~rosest", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p92h079-sacramentost~hopkinsst", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.216948, 37.84184], [-122.218618, 37.842453]]}, "type": "Feature", "name": "Broadway Ter:Taurus Av -> Broadway Ter:Swainland Rd", "properties": {"origin_onestop_id": "s-9q9p6bukdw-broadwayter~taurusav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p6c507b-broadwayter~swainlandrd", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.230695, 37.841029], [-122.230084, 37.839003]]}, "type": "Feature", "name": "Florence Av:Alta Rd -> Morpeth St:Harbord Dr (Holy Names High School)", "properties": {"origin_onestop_id": "s-9q9p68drfr-florenceav~altard", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p686u0t-morpethst~harborddrholynameshighschool", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.269135, 37.849124], [-122.27189, 37.848747]]}, "type": "Feature", "name": "Alcatraz Av:Dover St -> Alcatraz Av:Adeline St", "properties": {"origin_onestop_id": "s-9q9p3dnr4s-alcatrazav~doverst", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3dhkfm-alcatrazav~adelinest", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.201723, 37.805335], [-122.20214, 37.806578]]}, "type": "Feature", "name": "Coolidge Av:Alida St -> Charleston St:Laguna Av", "properties": {"origin_onestop_id": "s-9q9p54r2j3-coolidgeav~alidast", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p54rp7b-charlestonst~lagunaav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.254486, 37.887638], [-122.253495, 37.888201]]}, "type": "Feature", "name": "Campus Dr:Shasta Rd -> Shasta Rd:Queens Rd", "properties": {"origin_onestop_id": "s-9q9pd11p2p-campusdr~shastard", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9pd13dz0-shastard~queensrd", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.257059, 37.827621], [-122.252874, 37.82661]]}, "type": "Feature", "name": "40th St:Broadway -> 41st St:Piedmont Av", "properties": {"origin_onestop_id": "s-9q9p1yr1u5-40thst~broadway", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4n45vx-41stst~piedmontav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.248886, 37.845181], [-122.241199, 37.848905]]}, "type": "Feature", "name": "Keith Av:Mc Millan Av -> Broadway:Brookside Av (College Preparatory School)", "properties": {"origin_onestop_id": "s-9q9p61t04m-keithav~mcmillanav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p664tve-broadway~brooksideavcollegepreparatoryschool", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.225278, 37.814466], [-122.2264, 37.813162]]}, "type": "Feature", "name": "Crocker Av:Ashmount Av -> Mandana Blvd:Ardmore Av", "properties": {"origin_onestop_id": "s-9q9p4eym0x-crockerav~ashmountav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4etmwk-mandanablvd~ardmoreav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.283182, 37.87429], [-122.282399, 37.872798]]}, "type": "Feature", "name": "North Berkeley BART Station -> Sacramento St:Delaware St", "properties": {"origin_onestop_id": "s-9q9p3qu1er-northberkeleybartstation", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3qs9j9-sacramentost~delawarest", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.15847, 37.794614], [-122.16193, 37.7986]]}, "type": "Feature", "name": "Skyline Blvd:Brookpark Rd -> Skyline High School", "properties": {"origin_onestop_id": "s-9q9ph0qct6-skylineblvd~brookparkrd", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ph1h2u9-skylinehighschool", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.205859, 37.816737], [-122.204408, 37.815536]]}, "type": "Feature", "name": "Leimert Blvd:Oak Crest Dr -> Leimert Blvd:#2565", "properties": {"origin_onestop_id": "s-9q9p5hk6mn-leimertblvd~oakcrestdr", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5hj7qy-leimertblvd~2565", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.251995, 37.845724], [-122.251927, 37.844867]]}, "type": "Feature", "name": "College Av:Oak Grove Av (Opp. Claremont Mid. Sch.) -> College Av:Rockridge BART Station", "properties": {"origin_onestop_id": "s-9q9p61dg64-collegeav~oakgroveavoppclaremontmidsch", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p616upv-rockridgebartstation<1007560", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.203878, 37.805828], [-122.204357, 37.808199]]}, "type": "Feature", "name": "Alida St:Laguna Av -> Lincoln Av:Head Royce School", "properties": {"origin_onestop_id": "s-9q9p54mfgm-alidast~lagunaav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p54v88p-lincolnav~headroyceschool", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.291221, 37.779655], [-122.28753, 37.779826]]}, "type": "Feature", "name": "Main St:Ralph Appezzato Memorial Pkwy -> Ralph Appezzato Memorial Pkwy:3rd St", "properties": {"origin_onestop_id": "s-9q9ncjw62n-mainst~ralphappezzatomemorialpkwy", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncm8gqn-ralphappezzatomemorialpkwy~3rdst", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.214266, 37.842164], [-122.215306, 37.840915]]}, "type": "Feature", "name": "Broadway Ter:Merriewood Dr -> Broadway Ter:Uranus Av", "properties": {"origin_onestop_id": "s-9q9p6byq94-broadwayter~merriewooddr", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p6btx2c-broadwayter~uranusav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.204878, 37.80645], [-122.203878, 37.805828]]}, "type": "Feature", "name": "Alida St:Linnet Av -> Alida St:Laguna Av", "properties": {"origin_onestop_id": "s-9q9p54mnec-alidast~linnetav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p54mfgm-alidast~lagunaav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.207253, 37.816829], [-122.205859, 37.816737]]}, "type": "Feature", "name": "Leimert Blvd:Bywood Dr -> Leimert Blvd:Oak Crest Dr", "properties": {"origin_onestop_id": "s-9q9p5h76ux-leimertblvd~bywooddr", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5hk6mn-leimertblvd~oakcrestdr", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.214535, 37.832601], [-122.216486, 37.835101]]}, "type": "Feature", "name": "Thornhill Dr:Mountain Blvd -> Mountain Blvd:#1500", "properties": {"origin_onestop_id": "s-9q9p4znnfg-thornhilldr~mountainblvd", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4zstmq-mountainblvd~1500", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.236144, 37.805135], [-122.23313, 37.804375]]}, "type": "Feature", "name": "MacArthur Blvd:Oakland High School -> Park Blvd:Chatham Rd", "properties": {"origin_onestop_id": "s-9q9p46nqg7-macarthurblvd~oaklandhighschool", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4d0d3w-parkblvd~chathamrd", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.239152, 37.830427], [-122.236265, 37.830484]]}, "type": "Feature", "name": "Moraga Av:Monticello Av -> Moraga Av:Bonita Av", "properties": {"origin_onestop_id": "s-9q9p4qu4jq-moragaav~monticelloav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4qy689-moragaav~bonitaav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.205213, 37.833166], [-122.204203, 37.833416]]}, "type": "Feature", "name": "Colton Blvd:Asilomar Dr -> Colton Blvd:Heartwood Dr (West Jctn)", "properties": {"origin_onestop_id": "s-9q9p5pkfhj-coltonblvd~asilomardr", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5pmeee-coltonblvd~heartwooddrwestjctn", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.287403, 37.776547], [-122.288228, 37.773268]]}, "type": "Feature", "name": "Pacific Av:3rd St -> 3rd St:Santa Clara Av", "properties": {"origin_onestop_id": "s-9q9ncm102f-pacificav~3rdst", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nck2mjz-3rdst~santaclaraav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.198278, 37.837885], [-122.196618, 37.839194]]}, "type": "Feature", "name": "Colton Blvd:Ridgewood Dr -> Arrowhead Dr:Homewood Dr", "properties": {"origin_onestop_id": "s-9q9p721vts-coltonblvd~ridgewooddr", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p727jk3-arrowheaddr~homewooddr", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.210897, 37.798948], [-122.208357, 37.798807]]}, "type": "Feature", "name": "MacArthur Blvd:Laguna Av -> Coolidge Av:Hopkins Pl", "properties": {"origin_onestop_id": "s-9q9p510dzd-macarthurblvd~lagunaav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p514d4b-coolidgeav~hopkinspl", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.208308, 37.830998], [-122.208125, 37.829733]]}, "type": "Feature", "name": "Snake Rd:Drake Dr -> Snake Rd:Gaspar Dr", "properties": {"origin_onestop_id": "s-9q9p5nfts1-snakerd~drakedr", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5ndy0m-snakerd~gaspardr", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.275665, 37.848241], [-122.277582, 37.848001]]}, "type": "Feature", "name": "Alcatraz Av:California St -> Alcatraz Av:Sacramento St", "properties": {"origin_onestop_id": "s-9q9p3d19fr-alcatrazav~californiast", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3d00tf-alcatrazav~sacramentost", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.213914, 37.844546], [-122.214266, 37.842164]]}, "type": "Feature", "name": "Broadway Ter:Pinehaven Rd -> Broadway Ter:Merriewood Dr", "properties": {"origin_onestop_id": "s-9q9p6cqs3q-broadwayter~pinehavenrd", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p6byq94-broadwayter~merriewooddr", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.204704, 37.806464], [-122.205926, 37.807237]]}, "type": "Feature", "name": "Alida St:Linnet Av -> Alida St:Lincoln Av", "properties": {"origin_onestop_id": "s-9q9p54mq85-alidast~linnetav", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p54s75e-alidast~lincolnav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.221655, 37.840068], [-122.223867, 37.841388]]}, "type": "Feature", "name": "Duncan Way:Broadway Ter -> Broadway Ter:Pinewood Rd", "properties": {"origin_onestop_id": "s-9q9p6b8fm5-duncanway~broadwayter", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p68z616-broadwayter~pinewoodrd", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.195331, 37.838647], [-122.19575, 37.838023]]}, "type": "Feature", "name": "Arrowhead Dr:Glencourt Dr -> Glencourt Dr:Homeglen Ln", "properties": {"origin_onestop_id": "s-9q9p72k447-arrowheaddr~glencourtdr", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p725y2w-glencourtdr~homeglenln", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.116014, 37.677095], [-122.114088, 37.675818]]}, "type": "Feature", "name": "Hacienda Av:Via Toledo -> Hathaway Av:Louette Ct", "properties": {"origin_onestop_id": "s-9q9nm4vufx-haciendaav~viatoledo", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nm4xjx9-hathawayav~louettect", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.225658, 37.842103], [-122.22897, 37.842484]]}, "type": "Feature", "name": "Broadway Ter:Temescal Recreational Area -> Broadway Ter:Proctor Av", "properties": {"origin_onestop_id": "s-9q9p68vypx-broadwayter~temescalrecreationalarea", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p69586w-broadwayter~proctorav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.208125, 37.829733], [-122.206564, 37.829079]]}, "type": "Feature", "name": "Snake Rd:Gaspar Dr -> Snake Rd:Zinn Dr", "properties": {"origin_onestop_id": "s-9q9p5ndy0m-snakerd~gaspardr", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5nefke-snakerd~zinndr", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.203225, 37.806198], [-122.204704, 37.806464]]}, "type": "Feature", "name": "Laguna Av:Alida St -> Alida St:Linnet Av", "properties": {"origin_onestop_id": "s-9q9p54qm46-lagunaav~alidast", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p54mq85-alidast~linnetav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.225276, 37.819478], [-122.225278, 37.818237]]}, "type": "Feature", "name": "Crocker Av:Hampton Rd -> Crocker Av:Woodland Way", "properties": {"origin_onestop_id": "s-9q9p4sy62t-crockerav~hamptonrd", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4sw70w-crockerav~woodlandway", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.273522, 37.848533], [-122.275665, 37.848241]]}, "type": "Feature", "name": "Alcatraz Av:King St -> Alcatraz Av:California St", "properties": {"origin_onestop_id": "s-9q9p3d55sm-alcatrazav~kingst", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3d19fr-alcatrazav~californiast", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.219768, 37.839517], [-122.217622, 37.836312]]}, "type": "Feature", "name": "Mountain Blvd:Broadway Ter -> Mountain Blvd:Florence Ter", "properties": {"origin_onestop_id": "s-9q9p6b6r0v-mountainblvd~broadwayter", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4zgu6z-mountainblvd~florenceter", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.104342, 37.671527], [-122.10168, 37.669185]]}, "type": "Feature", "name": "Meekland Av:Sunset Blvd -> Meekland Av:Laurel Av", "properties": {"origin_onestop_id": "s-9q9nm3ykd9-meeklandav~sunsetblvd", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nm92qbt-meeklandav~laurelav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.201561, 37.833857], [-122.201105, 37.834996]]}, "type": "Feature", "name": "Heartwood Dr:Colton Blvd (East Jctn) -> Colton Blvd:Chambers Dr", "properties": {"origin_onestop_id": "s-9q9p5prw1n-heartwooddr~coltonblvdeastjctn", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5pxugf-coltonblvd~chambersdr", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.200733, 37.813813], [-122.19922, 37.812253]]}, "type": "Feature", "name": "Mountain Blvd:Woodcrest Cir -> Mountain Blvd:Kearney Av", "properties": {"origin_onestop_id": "s-9q9p57b1kt-mountainblvd~woodcrestcir", "stroke": "#fef0d9", "frequency": 0.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5790rf-mountainblvd~kearneyav", "stroke-width": 1, "trips": 1}}, {"geometry": {"type": "LineString", "coordinates": [[-122.202506, 37.809398], [-122.20486, 37.808095]]}, "type": "Feature", "name": "Lincoln Av:#4500 -> Lincoln Av:Head Royce School", "properties": {"origin_onestop_id": "s-9q9p54yzen-lincolnav~4500", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p54v0h7-lincolnav~headroyceschool", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.130282, 37.688954], [-122.130688, 37.686818]]}, "type": "Feature", "name": "Hesperian Blvd:Sycamore St -> Lewelling Blvd:Hesperian Blvd", "properties": {"origin_onestop_id": "s-9q9nkv56n4-hesperianblvd~sycamorest", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkuejss-lewellingblvd~hesperianblvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.144037, 37.671092], [-122.145865, 37.67138]]}, "type": "Feature", "name": "Bockman Rd:Via Toyon -> Bockman Rd:Via Amigos", "properties": {"origin_onestop_id": "s-9q9nk9c6j8-bockmanrd~viatoyon", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nk9b5en-bockmanrd~viaamigos", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.197062, 37.753357], [-122.185136, 37.75318]]}, "type": "Feature", "name": "San Leandro St:Coliseum BART Walkway -> 81st Av:Rudsdale St", "properties": {"origin_onestop_id": "s-9q9ng2ff5m-coliseumbartstation<1031020", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ng8g2py-81stav~rudsdalest", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.166903, 37.774445], [-122.164402, 37.772905]]}, "type": "Feature", "name": "Edwards Av:Greenly Dr -> Greenly Dr:Columbian Dr", "properties": {"origin_onestop_id": "s-9q9nuh8u0f-edwardsav~greenlydr", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nuh6e55-greenlydr~columbiandr", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.248959, 37.883035], [-122.2503, 37.882945]]}, "type": "Feature", "name": "Grizzly Peak Blvd:Senior Av -> Senior Av:Fairlawn Dr", "properties": {"origin_onestop_id": "s-9q9pd0mh8v-grizzlypeakblvd~seniorav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9pd0kh1s-seniorav~fairlawndr", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.127106, 37.679152], [-122.126227, 37.679504]]}, "type": "Feature", "name": "Paseo Grande:Hesperian Blvd -> Paseo Grande:Hesperian Blvd", "properties": {"origin_onestop_id": "s-9q9nkgmbbp-paseogrande~hesperianblvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkgq7h8-paseogrande~hesperianblvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.151028, 37.716908], [-122.1517, 37.717933]]}, "type": "Feature", "name": "Washington Av:Marina Blvd -> Washington Av:Estabrook St", "properties": {"origin_onestop_id": "s-9q9ns6hkft-washingtonav~marinablvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns67fgh-washingtonav~estabrookst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.138904, 37.729245], [-122.1392, 37.728387]]}, "type": "Feature", "name": "MacArthur Blvd:Estudillo Av -> Grand Av:Joaquin Av", "properties": {"origin_onestop_id": "s-9q9nssmhv3-macarthurblvd~estudilloav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nsshzy3-grandav~joaquinav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.09518, 37.674859], [-122.092784, 37.67321]]}, "type": "Feature", "name": "Western Blvd:Sunset Av -> Western Av:Laurel Av", "properties": {"origin_onestop_id": "s-9q9nmdmpbn-westernblvd~sunsetav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmdnwrg-westernav~laurelav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.160201, 37.721266], [-122.158287, 37.718901]]}, "type": "Feature", "name": "San Leandro BART Station -> San Leandro Blvd:Williams St", "properties": {"origin_onestop_id": "s-9q9ns4vwm1-sanleandrobartstation", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns4x098-sanleandroblvd~williamsst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.112398, 37.674676], [-122.113924, 37.67591]]}, "type": "Feature", "name": "W Blossom Way:Hathaway Av -> Hathaway Av:Louette Ct", "properties": {"origin_onestop_id": "s-9q9nm62qyu-wblossomway~hathawayav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nm4xq56-hathawayav~louettect", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.167818, 37.761375], [-122.170251, 37.760213]]}, "type": "Feature", "name": "82nd Av:Hillside St -> 82nd Av:Bancroft Av", "properties": {"origin_onestop_id": "s-9q9nu40pgw-82ndav~hillsidest", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngfn34v-82ndav~bancroftav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.215789, 37.800204], [-122.196536, 37.81084]]}, "type": "Feature", "name": "MacArthur Blvd:Fruitvale Av -> Joaquin Miller Rd:Mountain Blvd", "properties": {"origin_onestop_id": "s-9q9p4ckf4b-fruitvaleave~macarthurblvd<9902640", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5770n7-joaquinmillerrd~mountainblvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.148475, 37.671658], [-122.145564, 37.671199]]}, "type": "Feature", "name": "Bockman Rd:Via Catherine -> Bockman Rd:Via Amigos", "properties": {"origin_onestop_id": "s-9q9nk3yjq4-bockmanrd~viacatherine", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nk9b6dh-bockmanrd~viaamigos", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.093315, 37.70117], [-122.090728, 37.700647]]}, "type": "Feature", "name": "Stanton Av:Carlton Av -> Somerset Av:Sprague Ct", "properties": {"origin_onestop_id": "s-9q9nmxq35x-stantonav~carltonav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmz0npv-somersetav~spraguect", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.179337, 37.790126], [-122.180714, 37.793194]]}, "type": "Feature", "name": "Mountain Blvd:Knoll Av -> Mountain Blvd:Stauffer Pl", "properties": {"origin_onestop_id": "s-9q9ngxrxrn-mountainblvd~knollav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p58n9r1-mountainblvd~staufferpl", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.134109, 37.670334], [-122.138168, 37.670164]]}, "type": "Feature", "name": "Bockman Rd:Via Chiquita -> Bockman Rd:Channel St", "properties": {"origin_onestop_id": "s-9q9nkc8tsg-bockmanrd~viachiquita", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nk9tsw7-bockmanrd~channelst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.086951, 37.697529], [-122.086984, 37.70133]]}, "type": "Feature", "name": "Lake Chabot:Eden Medical Center -> Somerset Av:Wisteria St", "properties": {"origin_onestop_id": "s-9q9nmydupb-lakechabot~edenmedicalcenter", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmz6fpj-somersetav~wisteriast", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.159926, 37.751358], [-122.158467, 37.74992]]}, "type": "Feature", "name": "MacArthur Blvd:96th Av -> 98th Av:MacArthur Blvd", "properties": {"origin_onestop_id": "s-9q9nu0mve7-macarthurblvd~96thav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu0nvjr-98thav~macarthurblvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.087183, 37.697454], [-122.08606, 37.694323]]}, "type": "Feature", "name": "Lake Chabot:Eden Medical Center -> Castro Valley Blvd:Lake Chabot Rd", "properties": {"origin_onestop_id": "s-9q9nmydgd6-lakechabot~edenmedicalcenter", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmy59ke-castrovalleyblvd~lakechabotrd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.183751, 37.797892], [-122.181988, 37.794067]]}, "type": "Feature", "name": "Redwood Rd:Mountain Blvd (Lincoln Square) -> Carson St:Aliso Av", "properties": {"origin_onestop_id": "s-9q9p58us8j-redwoodrd~mountainblvdlincolnsquare", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p58jy3k-carsonst~alisoav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.21071, 37.826556], [-122.211774, 37.827784]]}, "type": "Feature", "name": "Moraga Av:La Salle Av -> Moraga Av:Medau Pl (Montclair Park)", "properties": {"origin_onestop_id": "s-9q9p5n0tsh-moragaave~medaupl<1016680", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5n0tsh-moragaave~medaupl<1016700", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.119953, 37.675559], [-122.116014, 37.677095]]}, "type": "Feature", "name": "Hacienda Av:Bengal Av -> Hacienda Av:Via Toledo", "properties": {"origin_onestop_id": "s-9q9nm4dunc-haciendaav~bengalav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nm4vufx-haciendaav~viatoledo", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.139368, 37.6963], [-122.139353, 37.693354]]}, "type": "Feature", "name": "Washington Av:Monterey Blvd -> Washington Av:Springlake Dr", "properties": {"origin_onestop_id": "s-9q9nkwkuf7-washingtonav~montereyblvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nktugdy-washingtonav~springlakedr", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.121433, 37.682692], [-122.126327, 37.679658]]}, "type": "Feature", "name": "Paseo Grande:Via Toledo -> Paseo Grande:Hesperian Blvd", "properties": {"origin_onestop_id": "s-9q9nm5cvs6-paseogrande~viatoledo", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkgq7fm-paseogrande~hesperianblvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.101596, 37.70266], [-122.098281, 37.7035]]}, "type": "Feature", "name": "Miramar Av:Rolando Av -> Miramar Av:Stanton Av", "properties": {"origin_onestop_id": "s-9q9nmx83ft-miramarav~rolandoav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmxdwzc-miramarav~stantonav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.144058, 37.70601], [-122.142682, 37.703929]]}, "type": "Feature", "name": "Washington Av:143rd Av -> Washington Av:Railroad Crossing", "properties": {"origin_onestop_id": "s-9q9ns81mmj-washingtonav~143rdav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkxf3m1-washingtonav~railroadcrossing", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.149865, 37.754343], [-122.147351, 37.754669]]}, "type": "Feature", "name": "Mountain Blvd:Golf Links Rd -> Golf Links Rd:Anza Av", "properties": {"origin_onestop_id": "s-9q9nu2vnvz-mountainblvd~golflinksrd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu3p0bk-golflinksrd~anzaav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.1517, 37.717933], [-122.15262, 37.719335]]}, "type": "Feature", "name": "Washington Av:Estabrook St -> Washington Av:Castro St", "properties": {"origin_onestop_id": "s-9q9ns67fgh-washingtonav~estabrookst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns6e5j9-washingtonav~castrost", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.139262, 37.687736], [-122.139165, 37.686131]]}, "type": "Feature", "name": "Washington Av:Fargo Av -> Washington Av:Lewelling Blvd", "properties": {"origin_onestop_id": "s-9q9nksufuz-washingtonav~fargoav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nksscx5-washingtonav~lewellingblvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.151569, 37.761551], [-122.156785, 37.76178]]}, "type": "Feature", "name": "Fontaine St:Crest St (Charles Howard School) -> Fontaine St:#9120", "properties": {"origin_onestop_id": "s-9q9nu67byp-fontainest~creststcharleshowardschool", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu624k9-fontainest~9120", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.152934, 37.753583], [-122.155424, 37.751422]]}, "type": "Feature", "name": "98th Av:Las Vegas Av -> 98th Av:Cherokee Av (Bishop O'Dowd High School)", "properties": {"origin_onestop_id": "s-9q9nu2ffw3-98thav~lasvegasav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu23jur-98thav~cherokeeavbishopodowdhighschool", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.224565, 37.834174], [-122.223587, 37.833193]]}, "type": "Feature", "name": "Harbord Dr:Amy Dr -> Harbord Dr:Templar Pl", "properties": {"origin_onestop_id": "s-9q9p4xwb11-harborddr~amydr", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4xrd24-harborddr~templarpl", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.30815, 37.896314], [-122.309032, 37.89835]]}, "type": "Feature", "name": "Bayside Common Condominiums -> Pierce St:Pacific East Mall", "properties": {"origin_onestop_id": "s-9q9p8fcfj8-baysidecommoncondominiums", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p8g1mbu-piercest~pacificeastmall", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.141164, 37.75743], [-122.127362, 37.754103]]}, "type": "Feature", "name": "Golf Links Rd:Elysian Fields Dr -> Golf Links Rd:Scotia Av", "properties": {"origin_onestop_id": "s-9q9nu9e8bx-golflinksrd~elysianfieldsdr", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nubvtd4-golflinksrd~scotiaav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.152333, 37.718621], [-122.151524, 37.717393]]}, "type": "Feature", "name": "Washington Av:Harlan St -> Washington Av:Estabrook St", "properties": {"origin_onestop_id": "s-9q9ns67quk-washingtonav~harlanst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns65zxp-washingtonav~estabrookst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.208913, 37.82435], [-122.21071, 37.826556]]}, "type": "Feature", "name": "Mountain Blvd:Snake Rd -> Moraga Av:La Salle Av", "properties": {"origin_onestop_id": "s-9q9p5jdnvc-mountainblvd~snakerd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5n0tsh-moragaave~medaupl<1016680", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.13957, 37.678375], [-122.136646, 37.678994]]}, "type": "Feature", "name": "Grant Av:Nielson Av -> Via Alamitos:Grant Av", "properties": {"origin_onestop_id": "s-9q9nkehsmw-grantav~nielsonav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkeqb1c-viaalamitos~grantav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.125981, 37.753012], [-122.124131, 37.753284]]}, "type": "Feature", "name": "Dunkirk Av:Golf Links Rd -> Dunkirk Av:Glen Artney St", "properties": {"origin_onestop_id": "s-9q9nubwx4r-dunkirkav~golflinksrd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nubzbv6-dunkirkav~glenartneyst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.15262, 37.719335], [-122.154161, 37.721654]]}, "type": "Feature", "name": "Washington Av:Castro St -> Washington Av:Thornton St", "properties": {"origin_onestop_id": "s-9q9ns6e5j9-washingtonav~castrost", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns74099-washingtonav~thorntonst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.111135, 37.696899], [-122.113341, 37.695087]]}, "type": "Feature", "name": "164th St:Helo Dr -> 164th St:E 14th St", "properties": {"origin_onestop_id": "s-9q9nmq92k7-164thst~helodr", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmnpvbc-164thst~e14thst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.16037, 37.717492], [-122.162605, 37.716572]]}, "type": "Feature", "name": "Williams St:Alvarado St -> Williams St:Orchard Av", "properties": {"origin_onestop_id": "s-9q9ns4m834-williamsst~alvaradost", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns45fuy-williamsst~orchardav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.166687, 37.702116], [-122.165304, 37.700061]]}, "type": "Feature", "name": "Merced St:Railroad Crossing (Near W Avenue 140th) -> Merced St:Cedar Av", "properties": {"origin_onestop_id": "s-9q9nkp2ytz-mercedst~railroadcrossingnearwavenue140th", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkp1fy0-mercedst~cedarav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.282045, 37.881563], [-122.279981, 37.882578]]}, "type": "Feature", "name": "Hopkins St:California St -> Hopkins St:Carlotta Av", "properties": {"origin_onestop_id": "s-9q9p92hujg-hopkinsst~californiast", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p92q6jb-hopkinsst~carlottaav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.150885, 37.733701], [-122.15342, 37.733163]]}, "type": "Feature", "name": "Dutton Av:Bancroft Av -> Dutton Av:Warwick Av", "properties": {"origin_onestop_id": "s-9q9nsmhqwp-duttonav~bancroftav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nsm4ee5-duttonav~warwickav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.113165, 37.695027], [-122.110858, 37.696922]]}, "type": "Feature", "name": "164th Av:E 14th St -> 164th Av:Helo Dr", "properties": {"origin_onestop_id": "s-9q9nmnpvmn-164thav~e14thst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmq986z-164thav~helodr", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.139396, 37.69936], [-122.141191, 37.702204]]}, "type": "Feature", "name": "Washington Av:#14680 -> Washington Av:Halcyon Dr", "properties": {"origin_onestop_id": "s-9q9nkwuy9y-washingtonav~14680", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkx7rrb-washingtonav~halcyondr", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.246738, 37.880352], [-122.246653, 37.880416]]}, "type": "Feature", "name": "Centennial Dr:Lawrence Hall Of Science -> Centennial Dr:Parking Lot", "properties": {"origin_onestop_id": "s-9q9p6pyth9-centennialdr~lawrencehallofscience", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p6pytqt-centennialdr~parkinglot", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.120215, 37.683297], [-122.116653, 37.68465]]}, "type": "Feature", "name": "Paseo Grande:Via Cordoba -> Meekland Av:Paseo Grande", "properties": {"origin_onestop_id": "s-9q9nmh4c0e-paseogrande~viacordoba", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmhm2gx-meeklandav~paseogrande", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.116875, 37.684893], [-122.119112, 37.684186]]}, "type": "Feature", "name": "Meekland Av:Paseo Grande -> Paseo Grande:Saint Johns Dr", "properties": {"origin_onestop_id": "s-9q9nmhm4qt-meeklandav~paseogrande", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmh5w63-paseogrande~saintjohnsdr", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.108561, 37.699426], [-122.109546, 37.698206]]}, "type": "Feature", "name": "164th St:Foothill Blvd -> 164th St:Gordon Way", "properties": {"origin_onestop_id": "s-9q9nmqgr06-164thst~foothillblvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmqdxcq-164thst~gordonway", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.249161, 37.885852], [-122.251084, 37.88691]]}, "type": "Feature", "name": "Grizzly Peak Blvd:Hill Rd -> Grizzly Peak Blvd:Arcade Av", "properties": {"origin_onestop_id": "s-9q9pd0uvh4-grizzlypeakblvd~hillrd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9pd157pr-grizzlypeakblvd~arcadeav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.279695, 37.891439], [-122.28032, 37.893158]]}, "type": "Feature", "name": "Solano Av:Colusa Av -> Colusa Av:Tacoma Av", "properties": {"origin_onestop_id": "s-9q9p93ytss-solanoav~colusaav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p96npwh-colusaav~tacomaav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.307189, 37.894086], [-122.30815, 37.896314]]}, "type": "Feature", "name": "Pierce St:Gateview Apts -> Bayside Common Condominiums", "properties": {"origin_onestop_id": "s-9q9p8f6t5c-piercest~gateviewapts", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p8fcfj8-baysidecommoncondominiums", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.231032, 37.807502], [-122.231081, 37.806235]]}, "type": "Feature", "name": "Grosvenor Pl:Trestle Glen Rd -> Grosvenor Pl:Holman Rd", "properties": {"origin_onestop_id": "s-9q9p4ddhdt-grosvenorpl~trestleglenrd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4d6j33-grosvenorpl~holmanrd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.152664, 37.7655], [-122.147762, 37.76024]]}, "type": "Feature", "name": "Fontaine St:Overpass (Near King Estates Mid. Sch.) -> Mountain Blvd:Sequoyah Rd", "properties": {"origin_onestop_id": "s-9q9nu6gpux-fontainest~overpassnearkingestatesmidsch", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu6n9qf-mountainblvd~sequoyahrd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.152032, 37.766502], [-122.153201, 37.768611]]}, "type": "Feature", "name": "Mountain Blvd:Overpass -> Mountain Blvd:Fontaine Ct", "properties": {"origin_onestop_id": "s-9q9nu75tg6-mountainblvd~overpass", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu7df05-mountainblvd~fontainect", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.106314, 37.698306], [-122.103551, 37.695221]]}, "type": "Feature", "name": "Foothill Blvd:Miramonte Av -> Foothill Blvd:167th Av", "properties": {"origin_onestop_id": "s-9q9nmqubs9-foothillblvd~miramonteav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmqnyt4-foothillblvd~167thav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.089862, 37.683619], [-122.088486, 37.685042]]}, "type": "Feature", "name": "Foothill Blvd:Grove Way -> Grove Way:Gary Dr", "properties": {"origin_onestop_id": "s-9q9nmu0fup-foothillblvd~groveway", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmu3gk0-groveway~garydr", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.213222, 37.829456], [-122.215093, 37.831552]]}, "type": "Feature", "name": "Moraga Av:Recreation Center -> Moraga Av:Thornhill Dr", "properties": {"origin_onestop_id": "s-9q9p4yxh99-moragaav~recreationcenter", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4zj8vb-moragaav~thornhilldr", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.196536, 37.81084], [-122.170114, 37.798672]]}, "type": "Feature", "name": "Joaquin Miller Rd:Mountain Blvd -> Skyline Blvd:Redwood Rd", "properties": {"origin_onestop_id": "s-9q9p5770n7-joaquinmillerrd~mountainblvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5cn3np-skylineblvd~redwoodrd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.140389, 37.734666], [-122.150885, 37.733701]]}, "type": "Feature", "name": "MacArthur Blvd:Dutton Av -> Dutton Av:Bancroft Av", "properties": {"origin_onestop_id": "s-9q9nstkh6e-macarthurblvd~duttonav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nsmhqwp-duttonav~bancroftav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.134812, 37.686568], [-122.129934, 37.688555]]}, "type": "Feature", "name": "Lewelling Blvd:Lewelling Community Church/School -> Hesperian Blvd:Sycamore St", "properties": {"origin_onestop_id": "s-9q9nku8hht-lewellingblvd~lewellingcommunitychurch~school", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkugxwr-hesperianblvd~sycamorest", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.139165, 37.686131], [-122.138195, 37.682978]]}, "type": "Feature", "name": "Washington Av:Lewelling Blvd -> Washington Av:Via Enrico", "properties": {"origin_onestop_id": "s-9q9nksscx5-washingtonav~lewellingblvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkevxmb-washingtonav~viaenrico", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.274261, 37.883525], [-122.275142, 37.885764]]}, "type": "Feature", "name": "Martin Luther King Jr Way:Berryman St -> The Alameda:Hopkins St", "properties": {"origin_onestop_id": "s-9q9p986xe0-martinlutherkingjrway~berrymanst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p98cuwd-thealameda~hopkinsst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.124131, 37.753284], [-122.123476, 37.752436]]}, "type": "Feature", "name": "Dunkirk Av:Glen Artney St -> Glen Artney St:Shetland Av", "properties": {"origin_onestop_id": "s-9q9nubzbv6-dunkirkav~glenartneyst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nv087uu-glenartneyst~shetlandav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.283561, 37.880764], [-122.282045, 37.881563]]}, "type": "Feature", "name": "Hopkins St:Sacramento St -> Hopkins St:California St", "properties": {"origin_onestop_id": "s-9q9p3rgz6w-hopkinsst~sacramentost", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p92hujg-hopkinsst~californiast", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.200691, 37.810484], [-122.202506, 37.809398]]}, "type": "Feature", "name": "Lincoln Av:Greek Church -> Lincoln Av:#4500", "properties": {"origin_onestop_id": "s-9q9p570nj9-lincolnav~greekchurch", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p54yzen-lincolnav~4500", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.234683, 37.807207], [-122.236974, 37.807096]]}, "type": "Feature", "name": "Trestle Glen Rd:Sunnyhills Rd -> Trestle Glen Rd:Brookwood Rd (West Jctn)", "properties": {"origin_onestop_id": "s-9q9p46x6vq-trestleglenrd~sunnyhillsrd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p46tf21-trestleglenrd~brookwoodrdwestjctn", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.165304, 37.700061], [-122.163026, 37.698034]]}, "type": "Feature", "name": "Merced St:Cedar Av -> Spruce St:Elm St", "properties": {"origin_onestop_id": "s-9q9nkp1fy0-mercedst~cedarav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nknewgn-sprucest~elmst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.288523, 37.902873], [-122.291407, 37.90412]]}, "type": "Feature", "name": "Colusa Av:Curry Av -> Fairmount Av:Colusa Av", "properties": {"origin_onestop_id": "s-9q9p9k00nz-colusaav~curryav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9hnpe8-fairmountav~colusaav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.160355, 37.699154], [-122.158447, 37.699946]]}, "type": "Feature", "name": "Spruce St:Locust St -> Spruce St:Wiley St", "properties": {"origin_onestop_id": "s-9q9nknvt3r-sprucest~locustst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkpnfjg-sprucest~wileyst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.170251, 37.760213], [-122.172397, 37.759176]]}, "type": "Feature", "name": "82nd Av:Bancroft Av -> 82nd Av:Olive St", "properties": {"origin_onestop_id": "s-9q9ngfn34v-82ndav~bancroftav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngcug0u-82ndav~olivest", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.258322, 37.824452], [-122.253103, 37.833055]]}, "type": "Feature", "name": "W MacArthur Blvd:Broadway (Kaiser Hospital) -> Broadway:Whitmore St", "properties": {"origin_onestop_id": "s-9q9p1vwpqs-wmacarthurblvd~broadwaykaiserhospital", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4p6180-broadway~whitmorest", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.296401, 37.846048], [-122.294807, 37.846139]]}, "type": "Feature", "name": "Christie St:65th St -> 65th St:Shellmound St (Bay St)", "properties": {"origin_onestop_id": "s-9q9p31dmpq-christiest~65thst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p31etsr-65thst~shellmoundstbayst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.113924, 37.67591], [-122.115935, 37.677267]]}, "type": "Feature", "name": "Hathaway Av:Louette Ct -> Hacienda Av:Via Toledo", "properties": {"origin_onestop_id": "s-9q9nm4xq56-hathawayav~louettect", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nm4vvur-haciendaav~viatoledo", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.223587, 37.833193], [-122.221266, 37.832771]]}, "type": "Feature", "name": "Harbord Dr:Templar Pl -> Harbord Dr:Moraga Av", "properties": {"origin_onestop_id": "s-9q9p4xrd24-harborddr~templarpl", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4z1py5-harborddr~moragaav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.10432, 37.671718], [-122.107976, 37.674914]]}, "type": "Feature", "name": "Meekland Av:Sunset Blvd -> Meekland Av:Grove Way", "properties": {"origin_onestop_id": "s-9q9nm3ymej-meeklandav~sunsetblvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nm6e8mb-meeklandav~groveway", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.309407, 37.901079], [-122.307449, 37.901401]]}, "type": "Feature", "name": "Central Av:Pierce St -> Central Av:Belmont Av", "properties": {"origin_onestop_id": "s-9q9p8g9jb1-centralav~piercest", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p8gdrtv-centralav~belmontav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.149939, 37.681387], [-122.14838, 37.682159]]}, "type": "Feature", "name": "Lewelling Blvd:Farnsworth St -> Lewelling Blvd:Dewey St", "properties": {"origin_onestop_id": "s-9q9nk7tjup-lewellingblvd~farnsworthst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nk7y62r-lewellingblvd~deweyst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.254372, 37.737884], [-122.250543, 37.737819]]}, "type": "Feature", "name": "Mecartney Rd:Sharon Rd -> Mecartney Rd:Aughinbaugh Way", "properties": {"origin_onestop_id": "s-9q9ndjcp4e-mecartneyrd~sharonrd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ndjgyez-mecartneyrd~aughinbaughway", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.264951, 37.771199], [-122.269182, 37.77133]]}, "type": "Feature", "name": "Central Av:Bay St -> Central Av:Weber St", "properties": {"origin_onestop_id": "s-9q9ncu13hj-centralav~bayst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncsn3cw-centralav~weberst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.149735, 37.673691], [-122.147034, 37.675037]]}, "type": "Feature", "name": "Grant Av:Bockman Rd -> Grant Av: Via Nueva", "properties": {"origin_onestop_id": "s-9q9nk6m30v-grantav~bockmanrd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nk6x0zz-grantav~vianueva", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.138025, 37.686773], [-122.139889, 37.686438]]}, "type": "Feature", "name": "Lewelling Blvd:Tropic Ct -> Lewelling Blvd:Washington Av", "properties": {"origin_onestop_id": "s-9q9nkstv3e-lewellingblvd~tropicct", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkss7qm-lewellingblvd~washingtonav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.126327, 37.679658], [-122.128437, 37.678803]]}, "type": "Feature", "name": "Paseo Grande:Hesperian Blvd -> Paseo Grande:Paseo Largavista", "properties": {"origin_onestop_id": "s-9q9nkgq7fm-paseogrande~hesperianblvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkghycj-paseogrande~paseolargavista", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.088956, 37.701099], [-122.091796, 37.700573]]}, "type": "Feature", "name": "Somerset Av:Bernal St -> Somerset Av:Stanton Av", "properties": {"origin_onestop_id": "s-9q9nmz38c4-somersetav~bernalst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmxpmyb-somersetav~stantonav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.245674, 37.857977], [-122.243462, 37.857911]]}, "type": "Feature", "name": "Ashby Av:Claremont Av -> Tunnel Rd:Domingo Av (Ashby Av)", "properties": {"origin_onestop_id": "s-9q9p65z6tq-ashbyav~claremontav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p67c42f-tunnelrd~domingoavashbyav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.242764, 37.810684], [-122.24693, 37.810381]]}, "type": "Feature", "name": "Trestle Glen Rd:Lakeshore Av (Wesley Way) -> Lake Park Av:Lakeshore Av", "properties": {"origin_onestop_id": "s-9q9p471x1n-trestleglenrd~lakeshoreavwesleyway", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p45nt2j-lakeparkav~lakeshoreav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.125117, 37.696332], [-122.122579, 37.694572]]}, "type": "Feature", "name": "Bay Fair BART Station -> Elgin St:Videll St", "properties": {"origin_onestop_id": "s-9q9nkyqyex-bayfairbartstation<1500590", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmn14c9-elginst~videllst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.101006, 37.692475], [-122.093361, 37.691239]]}, "type": "Feature", "name": "Foothill Blvd:173rd Av -> John Dr:Foothill Blvd", "properties": {"origin_onestop_id": "s-9q9nmt8y86-foothillblvd~173rdav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmtqr6k-johndr~foothillblvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.123543, 37.695379], [-122.125629, 37.696458]]}, "type": "Feature", "name": "Elgin St:Linnea Av -> Bay Fair BART Station", "properties": {"origin_onestop_id": "s-9q9nmn0r7p-elginst~linneaav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkyqyex-bayfairbartstation<1500570", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.156785, 37.76178], [-122.159194, 37.761688]]}, "type": "Feature", "name": "Fontaine St:#9120 -> Golf Links Rd:Fontaine St", "properties": {"origin_onestop_id": "s-9q9nu624k9-fontainest~9120", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu4q3u2-golflinksrd~fontainest", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.29895, 37.872236], [-122.299663, 37.874332]]}, "type": "Feature", "name": "6th St:Virginia St -> 6th St:Cedar St", "properties": {"origin_onestop_id": "s-9q9p3n2tgb-6thst~virginiast", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3nb1gr-6thst~cedarst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.115935, 37.677267], [-122.119498, 37.675867]]}, "type": "Feature", "name": "Hacienda Av:Via Toledo -> Hacienda Av:Via Segundo", "properties": {"origin_onestop_id": "s-9q9nm4vvur-haciendaav~viatoledo", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nm4emc6-haciendaav~viasegundo", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.138804, 37.685612], [-122.138872, 37.688379]]}, "type": "Feature", "name": "Washington Av:Lewelling Blvd -> Washington Av:Fargo Av", "properties": {"origin_onestop_id": "s-9q9nksmnxe-washingtonav~lewellingblvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nksvnwp-washingtonav~fargoav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.232411, 37.80986], [-122.230808, 37.81003]]}, "type": "Feature", "name": "Longridge Rd:Carlston Av -> Longridge Rd:Grosvenor Pl", "properties": {"origin_onestop_id": "s-9q9p4e146k-longridgerd~carlstonav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4e45rs-longridgerd~grosvenorpl", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.143162, 37.677179], [-122.147239, 37.675119]]}, "type": "Feature", "name": "Grant Av:Channel St -> Grant Av:Via Nueva", "properties": {"origin_onestop_id": "s-9q9nkdfj6p-grantav~channelst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nk6x17p-grantav~vianueva", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.172549, 37.712247], [-122.168493, 37.71395]]}, "type": "Feature", "name": "Williams St:Merced St -> Williams St:Castro St", "properties": {"origin_onestop_id": "s-9q9neck9v2-williamsst~mercedst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9necxeev-williamsst~castrost", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.137508, 37.686535], [-122.134812, 37.686568]]}, "type": "Feature", "name": "Lewelling Blvd:Tropic Ct -> Lewelling Blvd:Lewelling Community Church/School", "properties": {"origin_onestop_id": "s-9q9nksw5vz-lewellingblvd~tropicct", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nku8hht-lewellingblvd~lewellingcommunitychurch~school", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.143595, 37.670897], [-122.141074, 37.670497]]}, "type": "Feature", "name": "Bockman Rd:Via Redondo -> Bockman Rd:Via Redondo", "properties": {"origin_onestop_id": "s-9q9nk9c8zu-bockmanrd~viaredondo", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nk9ewd9-bockmanrd~viaredondo", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.135894, 37.670048], [-122.133666, 37.67026]]}, "type": "Feature", "name": "Bockman Rd:Via La Jolla -> Bockman Rd:Via Chiquita", "properties": {"origin_onestop_id": "s-9q9nk9x7gm-bockmanrd~vialajolla", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkc8vpm-bockmanrd~viachiquita", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.16002, 37.730976], [-122.153487, 37.733018]]}, "type": "Feature", "name": "Dutton Av:E 14th St -> Dutton Av:Woodland Av", "properties": {"origin_onestop_id": "s-9q9nshtyc5-duttonav~e14thst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nsm4dc2-duttonav~woodlandav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.168807, 37.713984], [-122.173031, 37.711658]]}, "type": "Feature", "name": "William St:Castro St -> Merced St:Williams St", "properties": {"origin_onestop_id": "s-9q9necx7uk-williamst~castrost", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nechq64-mercedst~williamsst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.151217, 37.685735], [-122.149939, 37.681387]]}, "type": "Feature", "name": "Farnsworth St:Burkhart Av -> Lewelling Blvd:Farnsworth St", "properties": {"origin_onestop_id": "s-9q9nkkkpq6-farnsworthst~burkhartav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nk7tjup-lewellingblvd~farnsworthst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.236974, 37.807096], [-122.240879, 37.809309]]}, "type": "Feature", "name": "Trestle Glen Rd:Brookwood Rd (West Jctn) -> Trestle Glen Rd:Stratford Rd", "properties": {"origin_onestop_id": "s-9q9p46tf21-trestleglenrd~brookwoodrdwestjctn", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p46fzjn-trestleglenrd~stratfordrd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.110206, 37.702267], [-122.115515, 37.705381]]}, "type": "Feature", "name": "Foothill Blvd:Carolyn St -> Manchester Rd:Foothill Blvd", "properties": {"origin_onestop_id": "s-9q9nmr6p9g-foothillblvd~carolynst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nt0n1y2-manchesterrd~foothillblvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.225279, 37.775429], [-122.22258, 37.776434]]}, "type": "Feature", "name": "Fruitvale BART Station -> 35th Av:International Blvd", "properties": {"origin_onestop_id": "s-9q9nfsy2v8-fruitvalebartstation<1011330", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nfubpxm-35thav~internationalblvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.300439, 37.879489], [-122.29708, 37.880162]]}, "type": "Feature", "name": "Gilman St:7th St -> Gilman St:10th St", "properties": {"origin_onestop_id": "s-9q9p2zz810-gilmanst~7thst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3pcgzm-gilmanst~10thst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.165236, 37.762583], [-122.170251, 37.760213]]}, "type": "Feature", "name": "82nd Av:MacArthur Blvd -> 82nd Av:Bancroft Av", "properties": {"origin_onestop_id": "s-9q9nu43yzx-82ndav~macarthurblvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngfn34v-82ndav~bancroftav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.178953, 37.755876], [-122.170148, 37.760126]]}, "type": "Feature", "name": "82nd Av:International Blvd -> 82nd Av:Bancroft Av", "properties": {"origin_onestop_id": "s-9q9ngc0pbj-82ndav~internationalblvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngfn2tj-82ndav~bancroftav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.261536, 37.896957], [-122.262039, 37.898046]]}, "type": "Feature", "name": "Grizzly Peak Blvd:Marin Av -> Grizzly Peak Blvd:Sunset Ln", "properties": {"origin_onestop_id": "s-9q9p9fgvg8-grizzlypeakblvd~marinav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9g5s05-grizzlypeakblvd~sunsetln", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.294436, 37.860456], [-122.295555, 37.86164]]}, "type": "Feature", "name": "Dwight Crescent:7th St -> 6th St:Channing Way", "properties": {"origin_onestop_id": "s-9q9p3h7cjh-dwightcrescent~7thst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3he051-6thst~channingway", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.139599, 37.726801], [-122.139192, 37.725664]]}, "type": "Feature", "name": "Grand Av:Dolores Av -> Grand Av:Maud Av", "properties": {"origin_onestop_id": "s-9q9nseuwt1-grandav~doloresav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nseszyt-grandav~maudav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.107976, 37.674914], [-122.110621, 37.675995]]}, "type": "Feature", "name": "Meekland Av:Grove Way -> W Blossom Way:Meekland Av", "properties": {"origin_onestop_id": "s-9q9nm6e8mb-meeklandav~groveway", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nm69y86-wblossomway~meeklandav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.131089, 37.670635], [-122.134109, 37.670334]]}, "type": "Feature", "name": "Bockman Rd:Via Alamitos -> Bockman Rd:Via Chiquita", "properties": {"origin_onestop_id": "s-9q9nkcdz77-bockmanrd~viaalamitos", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkc8tsg-bockmanrd~viachiquita", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.157072, 37.722142], [-122.155874, 37.72264]]}, "type": "Feature", "name": "W Juana Av:Clarke St -> W Juana Av:Hays St", "properties": {"origin_onestop_id": "s-9q9ns5pgmu-wjuanaav~clarkest", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns70y3c-wjuanaav~haysst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.158287, 37.718901], [-122.16037, 37.717492]]}, "type": "Feature", "name": "San Leandro Blvd:Williams St -> Williams St:Alvarado St", "properties": {"origin_onestop_id": "s-9q9ns4x098-sanleandroblvd~williamsst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns4m834-williamsst~alvaradost", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.116875, 37.684893], [-122.104162, 37.678218]]}, "type": "Feature", "name": "Meekland Av:Paseo Grande -> Blossom Way:Haviland Av", "properties": {"origin_onestop_id": "s-9q9nmhm4qt-meeklandav~paseogrande", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nm7n7wb-blossomway~havilandav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.230695, 37.841029], [-122.229154, 37.839697]]}, "type": "Feature", "name": "Florence Av:Alta Rd -> Florence Av:Morpeth St", "properties": {"origin_onestop_id": "s-9q9p68drfr-florenceav~altard", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p68e2nq-florenceav~morpethst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.121789, 37.671866], [-122.123006, 37.67435]]}, "type": "Feature", "name": "Hesperian Blvd:Bockman Rd -> Hacienda Av:Hesperian Blvd", "properties": {"origin_onestop_id": "s-9q9nm1cws0-hesperianblvd~bockmanrd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nm42szx-haciendaav~hesperianblvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.123383, 37.673746], [-122.122717, 37.671314]]}, "type": "Feature", "name": "Hesperian Blvd:Hacienda Av -> Bockman Rd:Via Arriba", "properties": {"origin_onestop_id": "s-9q9nm423qz-hesperianblvd~haciendaav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nm1bgq3-bockmanrd~viaarriba", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.0867, 37.685926], [-122.088627, 37.685083]]}, "type": "Feature", "name": "Grove Way:Gail Dr -> Grove Way:Gary Dr", "properties": {"origin_onestop_id": "s-9q9nmue0mt-groveway~gaildr", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmu3g8b-groveway~garydr", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.157005, 37.695342], [-122.154428, 37.695229]]}, "type": "Feature", "name": "Wiley St:Purdue St -> Purdue St:Esser Av", "properties": {"origin_onestop_id": "s-9q9nknpzr3-wileyst~purduest", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkq1yee-purduest~esserav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.250896, 37.857621], [-122.24821, 37.85784]]}, "type": "Feature", "name": "Ashby Av:Piedmont Av -> Ashby Av:Pine Av", "properties": {"origin_onestop_id": "s-9q9p65g8es-ashbyav~piedmontav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p65v9fh-ashbyav~pineav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.154506, 37.770766], [-122.152908, 37.765319]]}, "type": "Feature", "name": "Mountain Blvd:Shone Av -> Fontaine St:Overpass (Near King Estates Mid. Sch.)", "properties": {"origin_onestop_id": "s-9q9nu7cy9t-mountainblvd~shoneav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu6fyyv-fontainest~overpassnearkingestatesmidsch", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.246038, 37.881104], [-122.248154, 37.884709]]}, "type": "Feature", "name": "Centennial Dr:Parking Lot -> Grizzly Peak Blvd:#1411", "properties": {"origin_onestop_id": "s-9q9pd0p1kv-centennialdr~parkinglot", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9pd0tw7t-grizzlypeakblvd~1411", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.097286, 37.70324], [-122.101837, 37.702724]]}, "type": "Feature", "name": "Stanton Av:Stanton Heights Ct -> Miramar Av:Dalmatia Pl", "properties": {"origin_onestop_id": "s-9q9nmxemr1-stantonav~stantonheightsct", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmx84kc-miramarav~dalmatiapl", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.232639, 37.806824], [-122.234683, 37.807207]]}, "type": "Feature", "name": "Holman Rd:Trestle Glen Rd -> Trestle Glen Rd:Sunnyhills Rd", "properties": {"origin_onestop_id": "s-9q9p4d8btn-holmanrd~trestleglenrd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p46x6vq-trestleglenrd~sunnyhillsrd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.23952, 37.809752], [-122.235751, 37.809387]]}, "type": "Feature", "name": "Longridge Rd:Rosemount Rd -> Longridge Rd:Verrada Rd", "properties": {"origin_onestop_id": "s-9q9p475cu8-longridgerd~rosemountrd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p46yxss-longridgerd~verradard", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.273479, 37.876135], [-122.27362, 37.878041]]}, "type": "Feature", "name": "Martin Luther King Jr Way:Virginia St -> Martin Luther King Jr Way:Cedar St", "properties": {"origin_onestop_id": "s-9q9p3x5hmr-martinlutherkingjrway~virginiast", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3x7pd4-martinlutherkingjrway~cedarst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.152183, 37.69528], [-122.152033, 37.693465]]}, "type": "Feature", "name": "Purdue St:Farnsworth St -> Farnsworth St:Avon Av", "properties": {"origin_onestop_id": "s-9q9nkq5qzv-purduest~farnsworthst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkmgs77-farnsworthst~avonav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.179444, 37.755761], [-122.18531, 37.753212]]}, "type": "Feature", "name": "82nd Av:International Blvd -> 81st Av:Rudsdale St", "properties": {"origin_onestop_id": "s-9q9ng9pxhx-82ndav~internationalblvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ng8g27u-81stav~rudsdalest", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.125907, 37.696977], [-122.124512, 37.698266]]}, "type": "Feature", "name": "Bay Fair BART Station -> Coelho Dr:Mooney Av", "properties": {"origin_onestop_id": "s-9q9nkyqyex-bayfairbartstation<1500630", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkyz8kd-coelhodr~mooneyav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.193042, 37.810518], [-122.198354, 37.810284]]}, "type": "Feature", "name": "Joaquin Miller Rd:Sanborn Dr (West Jctn) -> Lincoln Av:Monterey Blvd", "properties": {"origin_onestop_id": "s-9q9p57jwpz-joaquinmillerrd~sanborndrwestjctn", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p571ugg-lincolnav~montereyblvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.140527, 37.700618], [-122.139604, 37.699225]]}, "type": "Feature", "name": "Washington Av:Floresta Blvd -> Washington Av:#14665", "properties": {"origin_onestop_id": "s-9q9nkx5yp2-washingtonav~florestablvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkwutuu-washingtonav~14665", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.147863, 37.757156], [-122.149865, 37.754343]]}, "type": "Feature", "name": "Mountain Blvd:Calafia Av -> Mountain Blvd:Golf Links Rd", "properties": {"origin_onestop_id": "s-9q9nu3qxkk-mountainblvd~calafiaav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu2vnvz-mountainblvd~golflinksrd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.18531, 37.753212], [-122.197631, 37.753866]]}, "type": "Feature", "name": "81st Av:Rudsdale St -> San Leandro St:Coliseum BART Walkway", "properties": {"origin_onestop_id": "s-9q9ng8g27u-81stav~rudsdalest", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ng2ff5m-coliseumbartstation<1031000", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.138168, 37.670164], [-122.140744, 37.670573]]}, "type": "Feature", "name": "Bockman Rd:Channel St -> Bockman Rd:Via Sonora", "properties": {"origin_onestop_id": "s-9q9nk9tsw7-bockmanrd~channelst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nk9eyfr-bockmanrd~viasonora", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.166612, 37.714738], [-122.162476, 37.716466]]}, "type": "Feature", "name": "Williams St:Hilding Av -> Williams St:Orchard Av", "properties": {"origin_onestop_id": "s-9q9ns1bbr8-williamsst~hildingav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns45frf-williamsst~orchardav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.291407, 37.90412], [-122.294163, 37.903256]]}, "type": "Feature", "name": "Fairmount Av:Colusa Av -> Fairmount Av:Ashbury Av", "properties": {"origin_onestop_id": "s-9q9p9hnpe8-fairmountav~colusaav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9hh47r-fairmountav~ashburyav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.12475, 37.698392], [-122.125117, 37.696332]]}, "type": "Feature", "name": "Coelho Dr:Mooney Av -> Bay Fair BART Station", "properties": {"origin_onestop_id": "s-9q9nkyz3p1-coelhodr~mooneyav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkyqyex-bayfairbartstation<1500590", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.141074, 37.670497], [-122.138139, 37.670027]]}, "type": "Feature", "name": "Bockman Rd:Via Redondo -> Bockman Rd:Bandoni Av", "properties": {"origin_onestop_id": "s-9q9nk9ewd9-bockmanrd~viaredondo", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nk9tez1-bockmanrd~bandoniav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.219084, 37.832807], [-122.214203, 37.832405]]}, "type": "Feature", "name": "Moraga Av:Estates Dr -> Mountain Blvd:Thornhill Dr", "properties": {"origin_onestop_id": "s-9q9p4z6b0f-moragaav~estatesdr", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4znmdx-mountainblvd~thornhilldr", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.101431, 37.679108], [-122.097378, 37.676441]]}, "type": "Feature", "name": "Blossom Way:Western Av -> Western Av:Willow Av", "properties": {"origin_onestop_id": "s-9q9nme22wq-blossomway~westernav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmdg3hv-westernav~willowav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.181988, 37.794067], [-122.152934, 37.753583]]}, "type": "Feature", "name": "Carson St:Aliso Av -> 98th Av:Las Vegas Av", "properties": {"origin_onestop_id": "s-9q9p58jy3k-carsonst~alisoav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu2ffw3-98thav~lasvegasav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.113341, 37.695087], [-122.115153, 37.696008]]}, "type": "Feature", "name": "164th St:E 14th St -> E 14th St:163rd Av", "properties": {"origin_onestop_id": "s-9q9nmnpvbc-164thst~e14thst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmnq7nt-e14thst~163rdav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.1392, 37.728387], [-122.139599, 37.726801]]}, "type": "Feature", "name": "Grand Av:Joaquin Av -> Grand Av:Dolores Av", "properties": {"origin_onestop_id": "s-9q9nsshzy3-grandav~joaquinav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nseuwt1-grandav~doloresav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.177332, 37.75679], [-122.179444, 37.755761]]}, "type": "Feature", "name": "82nd Av:Holly St -> 82nd Av:International Blvd", "properties": {"origin_onestop_id": "s-9q9ngc3jjz-82ndav~hollyst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ng9pxhx-82ndav~internationalblvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.172397, 37.759176], [-122.173934, 37.758436]]}, "type": "Feature", "name": "82nd Av:Olive St -> 82nd Av:Birch St", "properties": {"origin_onestop_id": "s-9q9ngcug0u-82ndav~olivest", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngcewuf-82ndav~birchst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.298505, 37.870827], [-122.29895, 37.872236]]}, "type": "Feature", "name": "6th St:Delaware St -> 6th St:Virginia St", "properties": {"origin_onestop_id": "s-9q9p3n0vw3-6thst~delawarest", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3n2tgb-6thst~virginiast", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.125629, 37.696458], [-122.124512, 37.698266]]}, "type": "Feature", "name": "Bay Fair BART Station -> Coelho Dr:Mooney Av", "properties": {"origin_onestop_id": "s-9q9nkyqyex-bayfairbartstation<1500570", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkyz8kd-coelhodr~mooneyav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.228357, 37.838406], [-122.226541, 37.837478]]}, "type": "Feature", "name": "Modoc Av:Sonia St -> Harbord Dr:Florence Av", "properties": {"origin_onestop_id": "s-9q9p68k08y-modocav~soniast", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p68j771-harborddr~florenceav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.167423, 37.703606], [-122.166373, 37.705594]]}, "type": "Feature", "name": "Merced St:Fairway Dr -> Kaiser Hospital San Leandro", "properties": {"origin_onestop_id": "s-9q9nkp8rkt-mercedst~fairwaydr", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns015j0-kaiserhospitalsanleandro", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.287403, 37.776547], [-122.28871, 37.772764]]}, "type": "Feature", "name": "Pacific Av:3rd St -> Central Av:3rd St", "properties": {"origin_onestop_id": "s-9q9ncm102f-pacificav~3rdst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nck2469-centralav~3rdst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.095186, 37.70212], [-122.097286, 37.70324]]}, "type": "Feature", "name": "Stanton Av:Acorn St -> Stanton Av:Stanton Heights Ct", "properties": {"origin_onestop_id": "s-9q9nmxkyzb-stantonav~acornst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmxemr1-stantonav~stantonheightsct", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.102108, 37.693742], [-122.101006, 37.692475]]}, "type": "Feature", "name": "Foothill Blvd:170th Av -> Foothill Blvd:173rd Av", "properties": {"origin_onestop_id": "s-9q9nmmzvyw-foothillblvd~170thav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmt8y86-foothillblvd~173rdav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.306229, 37.904112], [-122.304802, 37.902034]]}, "type": "Feature", "name": "Carlson Blvd:San Jose Av -> Carlson Blvd:Central Av", "properties": {"origin_onestop_id": "s-9q9p8u5r6q-carlsonblvd~sanjoseav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p8gu77e-carlsonblvd~centralav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.154151, 37.721389], [-122.152333, 37.718621]]}, "type": "Feature", "name": "Washington Av:Thornton St -> Washington Av:Harlan St", "properties": {"origin_onestop_id": "s-9q9ns6fp1b-washingtonav~thorntonst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns67quk-washingtonav~harlanst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.230808, 37.81003], [-122.231032, 37.807502]]}, "type": "Feature", "name": "Longridge Rd:Grosvenor Pl -> Grosvenor Pl:Trestle Glen Rd", "properties": {"origin_onestop_id": "s-9q9p4e45rs-longridgerd~grosvenorpl", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4ddhdt-grosvenorpl~trestleglenrd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.123006, 37.67435], [-122.119953, 37.675559]]}, "type": "Feature", "name": "Hacienda Av:Hesperian Blvd -> Hacienda Av:Bengal Av", "properties": {"origin_onestop_id": "s-9q9nm42szx-haciendaav~hesperianblvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nm4dunc-haciendaav~bengalav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.146392, 37.683171], [-122.14333, 37.684712]]}, "type": "Feature", "name": "Lewelling Blvd:Andover St -> Lewelling Blvd:Sedgeman St", "properties": {"origin_onestop_id": "s-9q9nkkp8qu-lewellingblvd~andoverst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nks3cq5-lewellingblvd~sedgemanst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.159194, 37.761688], [-122.165236, 37.762583]]}, "type": "Feature", "name": "Golf Links Rd:Fontaine St -> 82nd Av:MacArthur Blvd", "properties": {"origin_onestop_id": "s-9q9nu4q3u2-golflinksrd~fontainest", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu43yzx-82ndav~macarthurblvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.180714, 37.793194], [-122.181423, 37.796173]]}, "type": "Feature", "name": "Mountain Blvd:Stauffer Pl -> Redwood Rd:Terrabella Way (West Jctn)", "properties": {"origin_onestop_id": "s-9q9p58n9r1-mountainblvd~staufferpl", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p58w4wm-redwoodrd~terrabellawaywestjctn", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.134816, 37.686769], [-122.138025, 37.686773]]}, "type": "Feature", "name": "Lewelling Blvd:Lewelling Community Church/School -> Lewelling Blvd:Tropic Ct", "properties": {"origin_onestop_id": "s-9q9nku8jkd-lewellingblvd~lewellingcommunitychurch~school", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkstv3e-lewellingblvd~tropicct", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.279981, 37.882578], [-122.276855, 37.884131]]}, "type": "Feature", "name": "Hopkins St:Carlotta Av -> Hopkins St:Beverly Pl", "properties": {"origin_onestop_id": "s-9q9p92q6jb-hopkinsst~carlottaav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p988enc-hopkinsst~beverlypl", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.138139, 37.670027], [-122.135894, 37.670048]]}, "type": "Feature", "name": "Bockman Rd:Bandoni Av -> Bockman Rd:Via La Jolla", "properties": {"origin_onestop_id": "s-9q9nk9tez1-bockmanrd~bandoniav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nk9x7gm-bockmanrd~vialajolla", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.149733, 37.764767], [-122.152032, 37.766502]]}, "type": "Feature", "name": "Mountain Blvd:Oakland Naval Medical Center -> Mountain Blvd:Overpass", "properties": {"origin_onestop_id": "s-9q9nu6v78y-mountainblvd~oaklandnavalmedicalcenter", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu75tg6-mountainblvd~overpass", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.184747, 37.775898], [-122.183478, 37.776696]]}, "type": "Feature", "name": "MacArthur Blvd:Camden St (Seminary Av Jctn) -> Seminary Av:MacArthur Blvd", "properties": {"origin_onestop_id": "s-9q9ngsurs5-seminaryave~macarthurblvd<1018730", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngsurs5-seminaryave~macarthurblvd<1018860", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.248959, 37.883035], [-122.246738, 37.880352]]}, "type": "Feature", "name": "Grizzly Peak Blvd:Senior Av -> Centennial Dr:Lawrence Hall Of Science", "properties": {"origin_onestop_id": "s-9q9pd0mh8v-grizzlypeakblvd~seniorav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p6pyth9-centennialdr~lawrencehallofscience", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.150637, 37.733635], [-122.139456, 37.734507]]}, "type": "Feature", "name": "Dutton Av:Bancroft Av -> Marlow Dr:Foothill Blvd", "properties": {"origin_onestop_id": "s-9q9nsmhw7g-duttonav~bancroftav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nstkg2m-marlowdr~foothillblvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.203429, 37.77651], [-122.205468, 37.774002]]}, "type": "Feature", "name": "Monticello Av:Vicksburg Av -> 50th Av:Melrose Av", "properties": {"origin_onestop_id": "s-9q9ngjn0je-monticelloav~vicksburgav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nghs9w0-50thav~melroseav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.262039, 37.898046], [-122.265173, 37.899359]]}, "type": "Feature", "name": "Grizzly Peak Blvd:Sunset Ln -> Grizzly Peak Blvd:Keeler Av", "properties": {"origin_onestop_id": "s-9q9p9g5s05-grizzlypeakblvd~sunsetln", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9g35yb-grizzlypeakblvd~keelerav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.258387, 37.768792], [-122.261727, 37.770259]]}, "type": "Feature", "name": "Encinal Av:Grand St -> Encinal Av:Benton St", "properties": {"origin_onestop_id": "s-9q9ncgw5jj-encinalav~grandst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncggexq-encinalav~bentonst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.088486, 37.685042], [-122.086201, 37.685735]]}, "type": "Feature", "name": "Grove Way:Gary Dr -> Grove Way:Gail Dr", "properties": {"origin_onestop_id": "s-9q9nmu3gk0-groveway~garydr", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmu7x36-groveway~gaildr", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.18102, 37.755937], [-122.182953, 37.754685]]}, "type": "Feature", "name": "81st Av:International Blvd -> 81st Av:B St", "properties": {"origin_onestop_id": "s-9q9ng9q2rb-81stav~internationalblvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ng9j0fz-81stav~bst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.108511, 37.699618], [-122.10645, 37.701418]]}, "type": "Feature", "name": "164th Av:Foothill Blvd -> Miramar Av:Saratoga St", "properties": {"origin_onestop_id": "s-9q9nmr521q-164thav~foothillblvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmrkf9m-miramarav~saratogast", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.120223, 37.707455], [-122.115515, 37.705381]]}, "type": "Feature", "name": "Foothill Blvd:Fairmont Hospital North Entrance -> Manchester Rd:Foothill Blvd", "properties": {"origin_onestop_id": "s-9q9nt06vbe-foothillblvd~fairmonthospitalnorthentrance", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nt0n1y2-manchesterrd~foothillblvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.101837, 37.702724], [-122.106537, 37.701573]]}, "type": "Feature", "name": "Miramar Av:Dalmatia Pl -> Miramar Av:Saratoga St", "properties": {"origin_onestop_id": "s-9q9nmx84kc-miramarav~dalmatiapl", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmrkex6-miramarav~saratogast", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.179444, 37.755761], [-122.18102, 37.755937]]}, "type": "Feature", "name": "82nd Av:International Blvd -> 81st Av:International Blvd", "properties": {"origin_onestop_id": "s-9q9ng9pxhx-82ndav~internationalblvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ng9q2rb-81stav~internationalblvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.393638, 37.789982], [-122.295504, 37.843159]]}, "type": "Feature", "name": "Transbay Temp Terminal -> Christie Av:64th St", "properties": {"origin_onestop_id": "s-9q8yyz7y5b-sanfranciscoterminal<1410470", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p315hkh-christieav~64thst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.169749, 37.774546], [-122.168036, 37.774008]]}, "type": "Feature", "name": "Hillmont Dr:Sunkist Dr -> Sunkist Dr:Edwards Av", "properties": {"origin_onestop_id": "s-9q9nguwswt-hillmontdr~sunkistdr", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nguxcw3-sunkistdr~edwardsav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.086242, 37.694523], [-122.086651, 37.694703]]}, "type": "Feature", "name": "Castro Valley Blvd:Lake Chabot Rd -> Lake Chabot Rd:Castro Valley Blvd", "properties": {"origin_onestop_id": "s-9q9nmy5d82-castrovalleyblvd~lakechabotrd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmy55wc-lakechabotrd~castrovalleyblvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.119112, 37.684186], [-122.121433, 37.682692]]}, "type": "Feature", "name": "Paseo Grande:Saint Johns Dr -> Paseo Grande:Via Toledo", "properties": {"origin_onestop_id": "s-9q9nmh5w63-paseogrande~saintjohnsdr", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nm5cvs6-paseogrande~viatoledo", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.091796, 37.700573], [-122.093225, 37.701287]]}, "type": "Feature", "name": "Somerset Av:Stanton Av -> Stanton Av:Carlton Av", "properties": {"origin_onestop_id": "s-9q9nmxpmyb-somersetav~stantonav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmxq3vt-stantonav~carltonav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.160094, 37.721153], [-122.157072, 37.722142]]}, "type": "Feature", "name": "San Leandro BART Station -> W Juana Av:Clarke St", "properties": {"origin_onestop_id": "s-9q9ns4vtxk-sanleandrobartstation", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns5pgmu-wjuanaav~clarkest", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.275142, 37.885764], [-122.276371, 37.888681]]}, "type": "Feature", "name": "The Alameda:Hopkins St -> The Alameda:Marin Av", "properties": {"origin_onestop_id": "s-9q9p98cuwd-thealameda~hopkinsst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p993jd4-thealameda~marinav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.157282, 37.722251], [-122.160094, 37.721153]]}, "type": "Feature", "name": "W Juana Av:Clarke St -> San Leandro BART Station", "properties": {"origin_onestop_id": "s-9q9ns5pu11-wjuanaav~clarkest", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns4vtxk-sanleandrobartstation", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.157508, 37.770864], [-122.163303, 37.777501]]}, "type": "Feature", "name": "Keller Av:Earl St -> Monte Vista Driveway:Leona Quarry Dr", "properties": {"origin_onestop_id": "s-9q9nu5zx5z-kellerav~earlst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nuj5mus-montevistadriveway~leonaquarrydr", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.108499, 37.700632], [-122.106314, 37.698306]]}, "type": "Feature", "name": "Foothill Blvd:164th St -> Foothill Blvd:Miramonte Av", "properties": {"origin_onestop_id": "s-9q9nmr5q1e-foothillblvd~164thst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmqubs9-foothillblvd~miramonteav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.228335, 37.839102], [-122.228357, 37.838406]]}, "type": "Feature", "name": "Florence Av:Modoc Av -> Modoc Av:Sonia St", "properties": {"origin_onestop_id": "s-9q9p68kh9r-florenceav~modocav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p68k08y-modocav~soniast", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.140389, 37.734666], [-122.138904, 37.729245]]}, "type": "Feature", "name": "MacArthur Blvd:Dutton Av -> MacArthur Blvd:Estudillo Av", "properties": {"origin_onestop_id": "s-9q9nstkh6e-macarthurblvd~duttonav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nssmhv3-macarthurblvd~estudilloav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.157549, 37.724727], [-122.159002, 37.729084]]}, "type": "Feature", "name": "Hays St:W Estudillo Av -> E 14th St:Begier Av", "properties": {"origin_onestop_id": "s-9q9ns5xd6y-haysst~westudilloav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nshqebg-e14thst~begierav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.147762, 37.76024], [-122.149865, 37.754343]]}, "type": "Feature", "name": "Mountain Blvd:Sequoyah Rd -> Mountain Blvd:Golf Links Rd", "properties": {"origin_onestop_id": "s-9q9nu6n9qf-mountainblvd~sequoyahrd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu2vnvz-mountainblvd~golflinksrd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.110621, 37.675995], [-122.112398, 37.674676]]}, "type": "Feature", "name": "W Blossom Way:Meekland Av -> W Blossom Way:Hathaway Av", "properties": {"origin_onestop_id": "s-9q9nm69y86-wblossomway~meeklandav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nm62qyu-wblossomway~hathawayav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.116869, 37.704617], [-122.116129, 37.705454]]}, "type": "Feature", "name": "159th Av:Liberty St -> Foothill Blvd:Manchester Rd", "properties": {"origin_onestop_id": "s-9q9nmpvjqd-159thav~libertyst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nt0jdpy-foothillblvd~manchesterrd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.25214, 37.738745], [-122.254562, 37.738027]]}, "type": "Feature", "name": "Aughinbaugh Way:Mecartney Rd -> Mecartney Rd:Sharon Rd", "properties": {"origin_onestop_id": "s-9q9ndn4sne-aughinbaughway~mecartneyrd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ndjbzyn-mecartneyrd~sharonrd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.30079, 37.887757], [-122.302584, 37.887683]]}, "type": "Feature", "name": "Buchanan St:Jackson St -> Buchanan St:Polk St", "properties": {"origin_onestop_id": "s-9q9p8cr21j-buchananst~jacksonst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p8cjzz0-buchananst~polkst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.275015, 37.885237], [-122.274345, 37.882975]]}, "type": "Feature", "name": "Hopkins St:The Alameda -> Martin Luther King Jr Way:Berryman St", "properties": {"origin_onestop_id": "s-9q9p98f198-hopkinsst~thealameda", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p986s36-martinlutherkingjrway~berrymanst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.295946, 37.844598], [-122.296401, 37.846048]]}, "type": "Feature", "name": "Christie St:64th St -> Christie St:65th St", "properties": {"origin_onestop_id": "s-9q9p316ucb-christiest~64thst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p31dmpq-christiest~65thst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.294163, 37.903256], [-122.295356, 37.90289]]}, "type": "Feature", "name": "Fairmount Av:Ashbury Av -> Fairmount Av:Albermarle St", "properties": {"origin_onestop_id": "s-9q9p9hh47r-fairmountav~ashburyav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9h50rd-fairmountav~albermarlest", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.134902, 37.676754], [-122.140417, 37.678317]]}, "type": "Feature", "name": "Paseo Grande:Via Alamitos -> Grant Av:Nielson Av", "properties": {"origin_onestop_id": "s-9q9nkfb548-paseogrande~viaalamitos", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkehh45-grantav~nielsonav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.282379, 37.894565], [-122.28511, 37.89648]]}, "type": "Feature", "name": "Colusa Av:Vincente Av -> Colusa Av:Thousand Oaks Blvd", "properties": {"origin_onestop_id": "s-9q9p96kxy4-colusaav~vincenteav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p96fdyr-colusaav~thousandoaksblvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.147291, 37.671625], [-122.149735, 37.673691]]}, "type": "Feature", "name": "Bockman Rd:Via Walter -> Grant Av:Bockman Rd", "properties": {"origin_onestop_id": "s-9q9nk3zj1g-bockmanrd~viawalter", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nk6m30v-grantav~bockmanrd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.276855, 37.884131], [-122.275015, 37.885237]]}, "type": "Feature", "name": "Hopkins St:Beverly Pl -> Hopkins St:The Alameda", "properties": {"origin_onestop_id": "s-9q9p988enc-hopkinsst~beverlypl", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p98f198-hopkinsst~thealameda", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.127362, 37.754103], [-122.125709, 37.752472]]}, "type": "Feature", "name": "Golf Links Rd:Scotia Av -> Golf Links Rd:Grass Valley Sch. (Near Dunkirk Av)", "properties": {"origin_onestop_id": "s-9q9nubvtd4-golflinksrd~scotiaav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nubwu0d-golflinksrd~grassvalleyschneardunkirkav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.166373, 37.705594], [-122.171103, 37.709203]]}, "type": "Feature", "name": "Kaiser Hospital San Leandro -> Merced St:Marina Blvd", "properties": {"origin_onestop_id": "s-9q9ns015j0-kaiserhospitalsanleandro", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nebv8nb-mercedst~marinablvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.139111, 37.696058], [-122.139396, 37.69936]]}, "type": "Feature", "name": "Washington Av:Bradrick Dr -> Washington Av:#14680", "properties": {"origin_onestop_id": "s-9q9nkwm52q-washingtonav~bradrickdr", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkwuy9y-washingtonav~14680", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.151837, 37.766151], [-122.149229, 37.763828]]}, "type": "Feature", "name": "Mountain Blvd:Overpass -> Mountain Blvd:Oakland Naval Medical Center", "properties": {"origin_onestop_id": "s-9q9nu75ezb-mountainblvd~overpass", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu6twhx-mountainblvd~oaklandnavalmedicalcenter", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.296808, 37.865489], [-122.297688, 37.868307]]}, "type": "Feature", "name": "6th St:Allston Way -> 6th St:University Av", "properties": {"origin_onestop_id": "s-9q9p3j4nmy-6thst~allstonway", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3j9wck-6thst~universityav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.109517, 37.698026], [-122.108511, 37.699618]]}, "type": "Feature", "name": "164th Av:Gordon Way -> 164th Av:Foothill Blvd", "properties": {"origin_onestop_id": "s-9q9nmqdwfj-164thav~gordonway", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmr521q-164thav~foothillblvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.140744, 37.670573], [-122.144037, 37.671092]]}, "type": "Feature", "name": "Bockman Rd:Via Sonora -> Bockman Rd:Via Toyon", "properties": {"origin_onestop_id": "s-9q9nk9eyfr-bockmanrd~viasonora", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nk9c6j8-bockmanrd~viatoyon", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.150018, 37.715492], [-122.151028, 37.716908]]}, "type": "Feature", "name": "Washington Av:Cornwall Way -> Washington Av:Marina Blvd", "properties": {"origin_onestop_id": "s-9q9ns3vhdm-washingtonav~cornwallway", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns6hkft-washingtonav~marinablvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.095069, 37.701916], [-122.093315, 37.70117]]}, "type": "Feature", "name": "Stanton Av:Acorn St -> Stanton Av:Carlton Av", "properties": {"origin_onestop_id": "s-9q9nmxmjdd-stantonav~acornst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmxq35x-stantonav~carltonav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.147239, 37.675119], [-122.150034, 37.673744]]}, "type": "Feature", "name": "Grant Av:Via Nueva -> Grant Av:Bockman Rd", "properties": {"origin_onestop_id": "s-9q9nk6x17p-grantav~vianueva", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nk6m13y-grantav~bockmanrd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.24821, 37.85784], [-122.245674, 37.857977]]}, "type": "Feature", "name": "Ashby Av:Pine Av -> Ashby Av:Claremont Av", "properties": {"origin_onestop_id": "s-9q9p65v9fh-ashbyav~pineav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p65z6tq-ashbyav~claremontav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.119498, 37.675867], [-122.123383, 37.673746]]}, "type": "Feature", "name": "Hacienda Av:Via Segundo -> Hesperian Blvd:Hacienda Av", "properties": {"origin_onestop_id": "s-9q9nm4emc6-haciendaav~viasegundo", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nm423qz-hesperianblvd~haciendaav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.273173, 37.873625], [-122.273479, 37.876135]]}, "type": "Feature", "name": "Martin Luther King Jr Way:Hearst Av -> Martin Luther King Jr Way:Virginia St", "properties": {"origin_onestop_id": "s-9q9p3wemue-martinlutherkingjrway~hearstav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3x5hmr-martinlutherkingjrway~virginiast", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.253268, 37.858591], [-122.252661, 37.857013]]}, "type": "Feature", "name": "College Av:Russell St -> Ashby Av:College Av", "properties": {"origin_onestop_id": "s-9q9p65cyk2-collegeav~russellst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p65dm4d-ashbyav~collegeav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.154428, 37.695229], [-122.152183, 37.69528]]}, "type": "Feature", "name": "Purdue St:Esser Av -> Purdue St:Farnsworth St", "properties": {"origin_onestop_id": "s-9q9nkq1yee-purduest~esserav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkq5qzv-purduest~farnsworthst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.152908, 37.765319], [-122.159194, 37.761688]]}, "type": "Feature", "name": "Fontaine St:Overpass (Near King Estates Mid. Sch.) -> Golf Links Rd:Fontaine St", "properties": {"origin_onestop_id": "s-9q9nu6fyyv-fontainest~overpassnearkingestatesmidsch", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu4q3u2-golflinksrd~fontainest", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.293484, 37.858603], [-122.294436, 37.860456]]}, "type": "Feature", "name": "7th St:Parker St -> Dwight Crescent:7th St", "properties": {"origin_onestop_id": "s-9q9p35uw77-7thst~parkerst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3h7cjh-dwightcrescent~7thst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.229154, 37.839697], [-122.228335, 37.839102]]}, "type": "Feature", "name": "Florence Av:Morpeth St -> Florence Av:Modoc Av", "properties": {"origin_onestop_id": "s-9q9p68e2nq-florenceav~morpethst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p68kh9r-florenceav~modocav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.090157, 37.670752], [-122.086244, 37.669389]]}, "type": "Feature", "name": "A St:Grand St -> Hayward BART Station", "properties": {"origin_onestop_id": "s-9q9nmcb8j1-ast~grandst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmce4r2-haywardbartstation<0802080", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.090065, 37.67108], [-122.086314, 37.669589]]}, "type": "Feature", "name": "Western Av:A St -> Hayward BART Station", "properties": {"origin_onestop_id": "s-9q9nmcb9zq-westernav~ast", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmce4r2-haywardbartstation<0802150", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.199455, 37.77848], [-122.201488, 37.777038]]}, "type": "Feature", "name": "Monticello Av:Brookdale Av -> Monticello Av:Fairfax Av", "properties": {"origin_onestop_id": "s-9q9ngm35d7-monticelloav~brookdaleav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngjpe4y-monticelloav~fairfaxav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.121604, 37.682481], [-122.120215, 37.683297]]}, "type": "Feature", "name": "Paseo Grande:Via Toledo -> Paseo Grande:Via Cordoba", "properties": {"origin_onestop_id": "s-9q9nm5cu27-paseogrande~viatoledo", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmh4c0e-paseogrande~viacordoba", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.14571, 37.708504], [-122.144058, 37.70601]]}, "type": "Feature", "name": "Washington Av:139th Av -> Washington Av:143rd Av", "properties": {"origin_onestop_id": "s-9q9ns885yw-washingtonav~139thav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns81mmj-washingtonav~143rdav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.170114, 37.798672], [-122.164329, 37.797821]]}, "type": "Feature", "name": "Skyline Blvd:Redwood Rd -> Skyline Blvd:Balmoral Dr", "properties": {"origin_onestop_id": "s-9q9p5cn3np-skylineblvd~redwoodrd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ph0fskb-skylineblvd~balmoraldr", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.289873, 37.881348], [-122.28654, 37.880554]]}, "type": "Feature", "name": "Gilman St:Curtis St -> Gilman St:Ordway St", "properties": {"origin_onestop_id": "s-9q9p90p4z7-gilmanst~curtisst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3rcwjp-gilmanst~ordwayst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.285649, 37.898634], [-122.286733, 37.899485]]}, "type": "Feature", "name": "Colusa Av:Visalia Av -> Colusa Av:Oak View Av", "properties": {"origin_onestop_id": "s-9q9p974r9c-colusaav~visaliaav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p973s88-colusaav~oakviewav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.103551, 37.695221], [-122.102108, 37.693742]]}, "type": "Feature", "name": "Foothill Blvd:167th Av -> Foothill Blvd:170th Av", "properties": {"origin_onestop_id": "s-9q9nmqnyt4-foothillblvd~167thav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmmzvyw-foothillblvd~170thav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.175652, 37.757597], [-122.177332, 37.75679]]}, "type": "Feature", "name": "82nd Av:Plymouth St -> 82nd Av:Holly St", "properties": {"origin_onestop_id": "s-9q9ngcd3uy-82ndav~plymouthst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngc3jjz-82ndav~hollyst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.123919, 37.710005], [-122.122479, 37.70951]]}, "type": "Feature", "name": "150th Av:Foothill Blvd -> Foothill Blvd:Fairmont Dr", "properties": {"origin_onestop_id": "s-9q9nt0bhdq-150thav~foothillblvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nt0c1gf-foothillblvd~fairmontdr", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.106537, 37.701573], [-122.108561, 37.699426]]}, "type": "Feature", "name": "Miramar Av:Saratoga St -> 164th St:Foothill Blvd", "properties": {"origin_onestop_id": "s-9q9nmrkex6-miramarav~saratogast", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmqgr06-164thst~foothillblvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.166382, 37.705285], [-122.167449, 37.703268]]}, "type": "Feature", "name": "Kaiser Hospital San Leandro -> Merced St:Fairway Dr", "properties": {"origin_onestop_id": "s-9q9ns011hy-kaiserhospitalsanleandro", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkp8mkn-mercedst~fairwaydr", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.111114, 37.702466], [-122.108499, 37.700632]]}, "type": "Feature", "name": "Foothill Blvd:Carolyn St -> Foothill Blvd:164th St", "properties": {"origin_onestop_id": "s-9q9nmr92uc-foothillblvd~carolynst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmr5q1e-foothillblvd~164thst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.168493, 37.71395], [-122.166612, 37.714738]]}, "type": "Feature", "name": "Williams St:Castro St -> Williams St:Hilding Av", "properties": {"origin_onestop_id": "s-9q9necxeev-williamsst~castrost", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns1bbr8-williamsst~hildingav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.115562, 37.704926], [-122.111114, 37.702466]]}, "type": "Feature", "name": "Foothill Blvd:Manchester Rd -> Foothill Blvd:Carolyn St", "properties": {"origin_onestop_id": "s-9q9nmpypj5-foothillblvd~manchesterrd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmr92uc-foothillblvd~carolynst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.225279, 37.775429], [-122.225601, 37.777902]]}, "type": "Feature", "name": "Fruitvale BART Station -> Fruitvale Av:International Blvd", "properties": {"origin_onestop_id": "s-9q9nfsy2v8-fruitvalebartstation<1011330", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nftq01p-fruitvaleav~internationalblvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.139604, 37.699225], [-122.139368, 37.6963]]}, "type": "Feature", "name": "Washington Av:#14665 -> Washington Av:Monterey Blvd", "properties": {"origin_onestop_id": "s-9q9nkwutuu-washingtonav~14665", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkwkuf7-washingtonav~montereyblvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.182953, 37.754685], [-122.18531, 37.753212]]}, "type": "Feature", "name": "81st Av:B St -> 81st Av:Rudsdale St", "properties": {"origin_onestop_id": "s-9q9ng9j0fz-81stav~bst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ng8g27u-81stav~rudsdalest", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.309032, 37.89835], [-122.309407, 37.901079]]}, "type": "Feature", "name": "Pierce St:Pacific East Mall -> Central Av:Pierce St", "properties": {"origin_onestop_id": "s-9q9p8g1mbu-piercest~pacificeastmall", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p8g9jb1-centralav~piercest", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.300284, 37.876349], [-122.300439, 37.879489]]}, "type": "Feature", "name": "6th St:Page St -> Gilman St:7th St", "properties": {"origin_onestop_id": "s-9q9p2zptsz-6thst~pagest", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p2zz810-gilmanst~7thst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.147688, 37.760316], [-122.149733, 37.764767]]}, "type": "Feature", "name": "Mountain Blvd:Sequoyah Rd -> Mountain Blvd:Oakland Naval Medical Center", "properties": {"origin_onestop_id": "s-9q9nu6ncb9-mountainblvd~sequoyahrd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu6v78y-mountainblvd~oaklandnavalmedicalcenter", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.145564, 37.671199], [-122.143595, 37.670897]]}, "type": "Feature", "name": "Bockman Rd:Via Amigos -> Bockman Rd:Via Redondo", "properties": {"origin_onestop_id": "s-9q9nk9b6dh-bockmanrd~viaamigos", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nk9c8zu-bockmanrd~viaredondo", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.150034, 37.673744], [-122.148475, 37.671658]]}, "type": "Feature", "name": "Grant Av:Bockman Rd -> Bockman Rd:Via Catherine", "properties": {"origin_onestop_id": "s-9q9nk6m13y-grantav~bockmanrd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nk3yjq4-bockmanrd~viacatherine", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.246857, 37.76376], [-122.253786, 37.766815]]}, "type": "Feature", "name": "Encinal Av:Alameda High School -> Encinal Av:Chestnut St", "properties": {"origin_onestop_id": "s-9q9nf4wtcg-encinalav~alamedahighschool", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nf51x8k-encinalav~chestnutst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.167449, 37.703268], [-122.166687, 37.702116]]}, "type": "Feature", "name": "Merced St:Fairway Dr -> Merced St:Railroad Crossing (Near W Avenue 140th)", "properties": {"origin_onestop_id": "s-9q9nkp8mkn-mercedst~fairwaydr", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkp2ytz-mercedst~railroadcrossingnearwavenue140th", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.226238, 37.835274], [-122.224565, 37.834174]]}, "type": "Feature", "name": "Harbord Dr:Clarewood Dr -> Harbord Dr:Amy Dr", "properties": {"origin_onestop_id": "s-9q9p4xtw6n-harborddr~clarewooddr", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4xwb11-harborddr~amydr", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.304802, 37.902034], [-122.302203, 37.90063]]}, "type": "Feature", "name": "Carlson Blvd:Central Av -> Fairmount Av:San Pablo Av", "properties": {"origin_onestop_id": "s-9q9p8gu77e-carlsonblvd~centralav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p8gw70j-fairmountav~sanpabloav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.295356, 37.90289], [-122.297852, 37.902117]]}, "type": "Feature", "name": "Fairmount Av:Albermarle St -> Fairmount Av:Richmond St", "properties": {"origin_onestop_id": "s-9q9p9h50rd-fairmountav~albermarlest", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p95c7vd-fairmountav~richmondst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.091635, 37.692167], [-122.088948, 37.69301]]}, "type": "Feature", "name": "John Dr:Castro Valley Blvd -> Castro Valley Blvd:Stanton Av", "properties": {"origin_onestop_id": "s-9q9nmtxsf9-johndr~castrovalleyblvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmvc99q-castrovalleyblvd~stantonav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.149176, 37.713833], [-122.14571, 37.708504]]}, "type": "Feature", "name": "Washington Av:San Leandro Blvd -> Washington Av:139th Av", "properties": {"origin_onestop_id": "s-9q9ns3tejb-washingtonav~sanleandroblvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns885yw-washingtonav~139thav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.173031, 37.711658], [-122.170709, 37.708142]]}, "type": "Feature", "name": "Merced St:Williams St -> Merced St:Marina Blvd", "properties": {"origin_onestop_id": "s-9q9nechq64-mercedst~williamsst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nebw1b5-mercedst~marinablvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.211774, 37.827784], [-122.213222, 37.829456]]}, "type": "Feature", "name": "Moraga Av:Medau Pl (Montclair Park) -> Moraga Av:Recreation Center", "properties": {"origin_onestop_id": "s-9q9p5n0tsh-moragaave~medaupl<1016700", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4yxh99-moragaav~recreationcenter", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.130688, 37.686818], [-122.134816, 37.686769]]}, "type": "Feature", "name": "Lewelling Blvd:Hesperian Blvd -> Lewelling Blvd:Lewelling Community Church/School", "properties": {"origin_onestop_id": "s-9q9nkuejss-lewellingblvd~hesperianblvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nku8jkd-lewellingblvd~lewellingcommunitychurch~school", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.147688, 37.760316], [-122.152908, 37.765319]]}, "type": "Feature", "name": "Mountain Blvd:Sequoyah Rd -> Fontaine St:Overpass (Near King Estates Mid. Sch.)", "properties": {"origin_onestop_id": "s-9q9nu6ncb9-mountainblvd~sequoyahrd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu6fyyv-fontainest~overpassnearkingestatesmidsch", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.137965, 37.683031], [-122.138804, 37.685612]]}, "type": "Feature", "name": "Washington Av:Via Enrico -> Washington Av:Lewelling Blvd", "properties": {"origin_onestop_id": "s-9q9nkevze4-washingtonav~viaenrico", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nksmnxe-washingtonav~lewellingblvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.251084, 37.88691], [-122.252263, 37.890339]]}, "type": "Feature", "name": "Grizzly Peak Blvd:Arcade Av -> Grizzly Peak Blvd:Shasta Rd", "properties": {"origin_onestop_id": "s-9q9pd157pr-grizzlypeakblvd~arcadeav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9pd1dx5z-grizzlypeakblvd~shastard", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.122479, 37.70951], [-122.120223, 37.707455]]}, "type": "Feature", "name": "Foothill Blvd:Fairmont Dr -> Foothill Blvd:Fairmont Hospital North Entrance", "properties": {"origin_onestop_id": "s-9q9nt0c1gf-foothillblvd~fairmontdr", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nt06vbe-foothillblvd~fairmonthospitalnorthentrance", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.242684, 37.761733], [-122.246857, 37.76376]]}, "type": "Feature", "name": "Encinal Av:Park Av -> Encinal Av:Alameda High School", "properties": {"origin_onestop_id": "s-9q9nf63d51-encinalav~parkav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nf4wtcg-encinalav~alamedahighschool", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.226088, 37.777386], [-122.225279, 37.775429]]}, "type": "Feature", "name": "Fruitvale Av:International Blvd -> Fruitvale BART Station", "properties": {"origin_onestop_id": "s-9q9nftjtjx-fruitvaleav~internationalblvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nfsy2v8-fruitvalebartstation<1011330", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.252661, 37.857013], [-122.250896, 37.857621]]}, "type": "Feature", "name": "Ashby Av:College Av -> Ashby Av:Piedmont Av", "properties": {"origin_onestop_id": "s-9q9p65dm4d-ashbyav~collegeav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p65g8es-ashbyav~piedmontav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.206731, 37.77243], [-122.209109, 37.772498]]}, "type": "Feature", "name": "50th Av:Foothill Blvd -> Bond St:47th Av", "properties": {"origin_onestop_id": "s-9q9ngh7b2g-50thav~foothillblvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngh609r-bondst~47thav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.297688, 37.868307], [-122.298505, 37.870827]]}, "type": "Feature", "name": "6th St:University Av -> 6th St:Delaware St", "properties": {"origin_onestop_id": "s-9q9p3j9wck-6thst~universityav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3n0vw3-6thst~delawarest", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.12475, 37.698392], [-122.12541, 37.69662]]}, "type": "Feature", "name": "Coelho Dr:Mooney Av -> Bay Fair BART Station", "properties": {"origin_onestop_id": "s-9q9nkyz3p1-coelhodr~mooneyav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkyqyex-bayfairbartstation<1504240", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.12541, 37.69662], [-122.124512, 37.698266]]}, "type": "Feature", "name": "Bay Fair BART Station -> Coelho Dr:Mooney Av", "properties": {"origin_onestop_id": "s-9q9nkyqyex-bayfairbartstation<1504240", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkyz8kd-coelhodr~mooneyav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.190553, 37.750743], [-122.191932, 37.750074]]}, "type": "Feature", "name": "81st Av:Mother's Cookies Factory -> 81st Av:San Leandro St", "properties": {"origin_onestop_id": "s-9q9ng2rd18-81stav~motherscookiesfactory", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ng2nw1e-81stav~sanleandrost", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.149229, 37.763828], [-122.147762, 37.76024]]}, "type": "Feature", "name": "Mountain Blvd:Oakland Naval Medical Center -> Mountain Blvd:Sequoyah Rd", "properties": {"origin_onestop_id": "s-9q9nu6twhx-mountainblvd~oaklandnavalmedicalcenter", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu6n9qf-mountainblvd~sequoyahrd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.154506, 37.770766], [-122.151837, 37.766151]]}, "type": "Feature", "name": "Mountain Blvd:Shone Av -> Mountain Blvd:Overpass", "properties": {"origin_onestop_id": "s-9q9nu7cy9t-mountainblvd~shoneav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu75ezb-mountainblvd~overpass", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.297604, 37.886486], [-122.30079, 37.887757]]}, "type": "Feature", "name": "San Pablo Av:Marin Av -> Buchanan St:Jackson St", "properties": {"origin_onestop_id": "s-9q9p9118g2-sanpabloav~marinav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p8cr21j-buchananst~jacksonst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.170148, 37.760126], [-122.165097, 37.762516]]}, "type": "Feature", "name": "82nd Av:Bancroft Av -> 82nd Av:MacArthur Blvd", "properties": {"origin_onestop_id": "s-9q9ngfn2tj-82ndav~bancroftav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu46ndg-82ndav~macarthurblvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.160269, 37.721441], [-122.157072, 37.722142]]}, "type": "Feature", "name": "San Leandro BART Station -> W Juana Av:Clarke St", "properties": {"origin_onestop_id": "s-9q9ns4vx76-sanleandrobartstation", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns5pgmu-wjuanaav~clarkest", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.216833, 37.798508], [-122.216278, 37.799882]]}, "type": "Feature", "name": "Fruitvale Av:Montana St -> Fruitvale Av:MacArthur Blvd", "properties": {"origin_onestop_id": "s-9q9p4ch2m2-fruitvaleav~montanast", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4ckf4b-fruitvaleave~macarthurblvd<9902630", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.164402, 37.772905], [-122.162255, 37.7718]]}, "type": "Feature", "name": "Greenly Dr:Columbian Dr -> Greenly Dr:Field St", "properties": {"origin_onestop_id": "s-9q9nuh6e55-greenlydr~columbiandr", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nuhhhtj-greenlydr~fieldst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.139035, 37.694093], [-122.139111, 37.696058]]}, "type": "Feature", "name": "Washington Av:Springlake Dr -> Washington Av:Bradrick Dr", "properties": {"origin_onestop_id": "s-9q9nkwj040-washingtonav~springlakedr", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkwm52q-washingtonav~bradrickdr", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.160273, 37.717378], [-122.158148, 37.719273]]}, "type": "Feature", "name": "Williams St:Alvarado St -> San Leandro Blvd:Thornton St", "properties": {"origin_onestop_id": "s-9q9ns4jxek-williamsst~alvaradost", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns4x4sy-sanleandroblvd~thorntonst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.226541, 37.837478], [-122.226238, 37.835274]]}, "type": "Feature", "name": "Harbord Dr:Florence Av -> Harbord Dr:Clarewood Dr", "properties": {"origin_onestop_id": "s-9q9p68j771-harborddr~florenceav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4xtw6n-harborddr~clarewooddr", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.216278, 37.799882], [-122.211035, 37.802745]]}, "type": "Feature", "name": "Fruitvale Av:MacArthur Blvd -> Lincoln Av:Hearst Av", "properties": {"origin_onestop_id": "s-9q9p4ckf4b-fruitvaleave~macarthurblvd<9902630", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p51b8uq-lincolnav~hearstav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.139353, 37.693354], [-122.139262, 37.687736]]}, "type": "Feature", "name": "Washington Av:Springlake Dr -> Washington Av:Fargo Av", "properties": {"origin_onestop_id": "s-9q9nktugdy-washingtonav~springlakedr", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nksufuz-washingtonav~fargoav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.156479, 37.750789], [-122.154365, 37.751464]]}, "type": "Feature", "name": "98th Av:Lawlor St -> 98th Av:Stearns Av (Bishop O'Dowd High School)", "properties": {"origin_onestop_id": "s-9q9nu22679-98thav~lawlorst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu23yhy-98thav~stearnsavbishopodowdhighschool", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.158467, 37.74992], [-122.156479, 37.750789]]}, "type": "Feature", "name": "98th Av:MacArthur Blvd -> 98th Av:Lawlor St", "properties": {"origin_onestop_id": "s-9q9nu0nvjr-98thav~macarthurblvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu22679-98thav~lawlorst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.29708, 37.880162], [-122.295783, 37.880829]]}, "type": "Feature", "name": "Gilman St:10th St -> San Pablo Av:Gilman St", "properties": {"origin_onestop_id": "s-9q9p3pcgzm-gilmanst~10thst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3pfzvd-sanpabloav~gilmanst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.188734, 37.751599], [-122.190553, 37.750743]]}, "type": "Feature", "name": "81st Av:Sunshine Biscuits Factory -> 81st Av:Mother's Cookies Factory", "properties": {"origin_onestop_id": "s-9q9ng82zh0-81stav~sunshinebiscuitsfactory", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ng2rd18-81stav~motherscookiesfactory", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.154161, 37.721654], [-122.157282, 37.722251]]}, "type": "Feature", "name": "Washington Av:Thornton St -> W Juana Av:Clarke St", "properties": {"origin_onestop_id": "s-9q9ns74099-washingtonav~thorntonst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns5pu11-wjuanaav~clarkest", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.15342, 37.733163], [-122.160309, 37.730486]]}, "type": "Feature", "name": "Dutton Av:Warwick Av -> E 14th St:Best Av (Dutton Av)", "properties": {"origin_onestop_id": "s-9q9nsm4ee5-duttonav~warwickav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nshts42-e14thst~bestavduttonav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.162605, 37.716572], [-122.165204, 37.715484]]}, "type": "Feature", "name": "Williams St:Orchard Av -> Williams St:Wayne Av", "properties": {"origin_onestop_id": "s-9q9ns45fuy-williamsst~orchardav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns1fh87-williamsst~wayneav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.305328, 37.901748], [-122.302929, 37.902316]]}, "type": "Feature", "name": "Central Av:Yosemite Av -> Central Av:San Pablo Av", "properties": {"origin_onestop_id": "s-9q9p8ggcxm-centralav~yosemiteav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p8gvszp-centralav~sanpabloav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.158148, 37.719273], [-122.160269, 37.721441]]}, "type": "Feature", "name": "San Leandro Blvd:Thornton St -> San Leandro BART Station", "properties": {"origin_onestop_id": "s-9q9ns4x4sy-sanleandroblvd~thorntonst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns4vx76-sanleandrobartstation", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.186109, 37.775819], [-122.174358, 37.769296]]}, "type": "Feature", "name": "MacArthur Blvd:Millsbrae Av -> Eastmont Transit Center", "properties": {"origin_onestop_id": "s-9q9ngsfu17-macarthurblvd~millsbraeav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nggeq55-eastmonttransitcenter", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.128312, 37.6708], [-122.121789, 37.671866]]}, "type": "Feature", "name": "Bockman Rd:Via Honda -> Hesperian Blvd:Bockman Rd", "properties": {"origin_onestop_id": "s-9q9nkcubk4-bockmanrd~viahonda", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nm1cws0-hesperianblvd~bockmanrd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.159125, 37.769705], [-122.157508, 37.770864]]}, "type": "Feature", "name": "Greenly Dr:Keller Av -> Keller Av:Earl St", "properties": {"origin_onestop_id": "s-9q9nu5y2qp-greenlydr~kellerav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu5zx5z-kellerav~earlst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.147762, 37.76024], [-122.147863, 37.757156]]}, "type": "Feature", "name": "Mountain Blvd:Sequoyah Rd -> Mountain Blvd:Calafia Av", "properties": {"origin_onestop_id": "s-9q9nu6n9qf-mountainblvd~sequoyahrd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu3qxkk-mountainblvd~calafiaav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.162255, 37.7718], [-122.160561, 37.770458]]}, "type": "Feature", "name": "Greenly Dr:Field St -> Greenly Dr:Lamp St", "properties": {"origin_onestop_id": "s-9q9nuhhhtj-greenlydr~fieldst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu5vkue-greenlydr~lampst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.145865, 37.67138], [-122.147291, 37.671625]]}, "type": "Feature", "name": "Bockman Rd:Via Amigos -> Bockman Rd:Via Walter", "properties": {"origin_onestop_id": "s-9q9nk9b5en-bockmanrd~viaamigos", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nk3zj1g-bockmanrd~viawalter", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.295555, 37.86164], [-122.296808, 37.865489]]}, "type": "Feature", "name": "6th St:Channing Way -> 6th St:Allston Way", "properties": {"origin_onestop_id": "s-9q9p3he051-6thst~channingway", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3j4nmy-6thst~allstonway", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.10645, 37.701418], [-122.101596, 37.70266]]}, "type": "Feature", "name": "Miramar Av:Saratoga St -> Miramar Av:Rolando Av", "properties": {"origin_onestop_id": "s-9q9nmrkf9m-miramarav~saratogast", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmx83ft-miramarav~rolandoav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.159194, 37.761688], [-122.162894, 37.762422]]}, "type": "Feature", "name": "Golf Links Rd:Fontaine St -> Golf Links Rd:Cosgrave Av", "properties": {"origin_onestop_id": "s-9q9nu4q3u2-golflinksrd~fontainest", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu47wn3-golflinksrd~cosgraveav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.12541, 37.69662], [-122.130143, 37.696986]]}, "type": "Feature", "name": "Bay Fair BART Station -> Hesperian Blvd:Thornally St", "properties": {"origin_onestop_id": "s-9q9nkyqyex-bayfairbartstation<1504240", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkye8c7-hesperianblvd~thornallyst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.086951, 37.697529], [-122.088956, 37.701099]]}, "type": "Feature", "name": "Lake Chabot:Eden Medical Center -> Somerset Av:Bernal St", "properties": {"origin_onestop_id": "s-9q9nmydupb-lakechabot~edenmedicalcenter", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmz38c4-somersetav~bernalst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.109546, 37.698206], [-122.111135, 37.696899]]}, "type": "Feature", "name": "164th St:Gordon Way -> 164th St:Helo Dr", "properties": {"origin_onestop_id": "s-9q9nmqdxcq-164thst~gordonway", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmq92k7-164thst~helodr", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.254562, 37.738027], [-122.256544, 37.736475]]}, "type": "Feature", "name": "Mecartney Rd:Sharon Rd -> Harbor Bay Pkwy:Ferry Terminal", "properties": {"origin_onestop_id": "s-9q9ndjbzyn-mecartneyrd~sharonrd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9n9vxwbh-harborbayferryterminal<0101480", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.128017, 37.670942], [-122.131089, 37.670635]]}, "type": "Feature", "name": "Bockman Rd:Via Media -> Bockman Rd:Via Alamitos", "properties": {"origin_onestop_id": "s-9q9nkcv14u-bockmanrd~viamedia", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkcdz77-bockmanrd~viaalamitos", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.142682, 37.703929], [-122.141678, 37.702398]]}, "type": "Feature", "name": "Washington Av:Railroad Crossing -> Washington Av:Floresta Blvd", "properties": {"origin_onestop_id": "s-9q9nkxf3m1-washingtonav~railroadcrossing", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkxe0ks-washingtonav~florestablvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.153487, 37.733018], [-122.150637, 37.733635]]}, "type": "Feature", "name": "Dutton Av:Woodland Av -> Dutton Av:Bancroft Av", "properties": {"origin_onestop_id": "s-9q9nsm4dc2-duttonav~woodlandav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nsmhw7g-duttonav~bancroftav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.159288, 37.729028], [-122.157942, 37.725055]]}, "type": "Feature", "name": "E 14th St:Lorraine Blvd -> Hays St:Davis St", "properties": {"origin_onestop_id": "s-9q9nshq7d2-e14thst~lorraineblvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns5xk3e-haysst~davisst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.139192, 37.725664], [-122.123919, 37.710005]]}, "type": "Feature", "name": "Grand Av:Maud Av -> 150th Av:Foothill Blvd", "properties": {"origin_onestop_id": "s-9q9nseszyt-grandav~maudav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nt0bhdq-150thav~foothillblvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.302929, 37.902316], [-122.298866, 37.902354]]}, "type": "Feature", "name": "Central Av:San Pablo Av -> El Cerrito Plaza BART Station", "properties": {"origin_onestop_id": "s-9q9p8gvszp-centralav~sanpabloav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p95btzg-elcerritobartstation<0500850", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.291519, 37.847031], [-122.292153, 37.849045]]}, "type": "Feature", "name": "Hollis St:65th St -> Hollis St:67th St", "properties": {"origin_onestop_id": "s-9q9p31y4cj-hollisst~65thst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p34jwdm-hollisst~67thst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.152908, 37.765319], [-122.151569, 37.761551]]}, "type": "Feature", "name": "Fontaine St:Overpass (Near King Estates Mid. Sch.) -> Fontaine St:Crest St (Charles Howard School)", "properties": {"origin_onestop_id": "s-9q9nu6fyyv-fontainest~overpassnearkingestatesmidsch", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu67byp-fontainest~creststcharleshowardschool", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.140417, 37.678317], [-122.143162, 37.677179]]}, "type": "Feature", "name": "Grant Av:Nielson Av -> Grant Av:Channel St", "properties": {"origin_onestop_id": "s-9q9nkehh45-grantav~nielsonav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkdfj6p-grantav~channelst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.129744, 37.696936], [-122.12541, 37.69662]]}, "type": "Feature", "name": "Hesperian Blvd:Thornally Dr -> Bay Fair BART Station", "properties": {"origin_onestop_id": "s-9q9nkyebdd-hesperianblvd~thornallydr", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkyqyex-bayfairbartstation<1504240", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.165236, 37.762583], [-122.167818, 37.761375]]}, "type": "Feature", "name": "82nd Av:MacArthur Blvd -> 82nd Av:Hillside St", "properties": {"origin_onestop_id": "s-9q9nu43yzx-82ndav~macarthurblvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu40pgw-82ndav~hillsidest", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.20736, 37.8065], [-122.210999, 37.802937]]}, "type": "Feature", "name": "Lincoln Av:Tiffin Rd -> Lincoln Av:Hearst Av", "properties": {"origin_onestop_id": "s-9q9p547qf4-lincolnav~tiffinrd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p51bdj6-lincolnav~hearstav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.253786, 37.766815], [-122.258387, 37.768792]]}, "type": "Feature", "name": "Encinal Av:Chestnut St -> Encinal Av:Grand St", "properties": {"origin_onestop_id": "s-9q9nf51x8k-encinalav~chestnutst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncgw5jj-encinalav~grandst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.14838, 37.682159], [-122.146392, 37.683171]]}, "type": "Feature", "name": "Lewelling Blvd:Dewey St -> Lewelling Blvd:Andover St", "properties": {"origin_onestop_id": "s-9q9nk7y62r-lewellingblvd~deweyst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkkp8qu-lewellingblvd~andoverst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.198763, 37.77897], [-122.199455, 37.77848]]}, "type": "Feature", "name": "Monticello Av:Walnut St -> Monticello Av:Brookdale Av", "properties": {"origin_onestop_id": "s-9q9ngm3w6q-monticelloav~walnutst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngm35d7-monticelloav~brookdaleav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.101853, 37.669548], [-122.10432, 37.671718]]}, "type": "Feature", "name": "Meekland Av:Laurel Av -> Meekland Av:Sunset Blvd", "properties": {"origin_onestop_id": "s-9q9nm981h8-meeklandav~laurelav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nm3ymej-meeklandav~sunsetblvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.116869, 37.704617], [-122.115562, 37.704926]]}, "type": "Feature", "name": "159th Av:Liberty St -> Foothill Blvd:Manchester Rd", "properties": {"origin_onestop_id": "s-9q9nmpvjqd-159thav~libertyst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmpypj5-foothillblvd~manchesterrd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.141191, 37.702204], [-122.144237, 37.706699]]}, "type": "Feature", "name": "Washington Av:Halcyon Dr -> Washington Av:143rd Av", "properties": {"origin_onestop_id": "s-9q9nkx7rrb-washingtonav~halcyondr", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns8332y-washingtonav~143rdav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.209129, 37.824312], [-122.198218, 37.810511]]}, "type": "Feature", "name": "Mountain Blvd:Snake Rd -> Monterey Blvd:Lincoln Av", "properties": {"origin_onestop_id": "s-9q9p5jdn8f-mountainblvd~snakerd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p571ypn-montereyblvd~lincolnav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.125117, 37.696332], [-122.124512, 37.698266]]}, "type": "Feature", "name": "Bay Fair BART Station -> Coelho Dr:Mooney Av", "properties": {"origin_onestop_id": "s-9q9nkyqyex-bayfairbartstation<1500590", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkyz8kd-coelhodr~mooneyav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.269182, 37.77133], [-122.273254, 37.77143]]}, "type": "Feature", "name": "Central Av:Weber St -> Central Av:8th St", "properties": {"origin_onestop_id": "s-9q9ncsn3cw-centralav~weberst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncs56d8-centralav~8thst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.210999, 37.802937], [-122.216343, 37.800099]]}, "type": "Feature", "name": "Lincoln Av:Hearst Av -> Fruitvale Av:MacArthur Blvd", "properties": {"origin_onestop_id": "s-9q9p51bdj6-lincolnav~hearstav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4ckf4b-fruitvaleave~macarthurblvd<1011200", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.221266, 37.832771], [-122.219084, 37.832807]]}, "type": "Feature", "name": "Harbord Dr:Moraga Av -> Moraga Av:Estates Dr", "properties": {"origin_onestop_id": "s-9q9p4z1py5-harborddr~moragaav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4z6b0f-moragaav~estatesdr", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.162476, 37.716466], [-122.160273, 37.717378]]}, "type": "Feature", "name": "Williams St:Orchard Av -> Williams St:Alvarado St", "properties": {"origin_onestop_id": "s-9q9ns45frf-williamsst~orchardav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns4jxek-williamsst~alvaradost", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.163026, 37.698034], [-122.160355, 37.699154]]}, "type": "Feature", "name": "Spruce St:Elm St -> Spruce St:Locust St", "properties": {"origin_onestop_id": "s-9q9nknewgn-sprucest~elmst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nknvt3r-sprucest~locustst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.12475, 37.698392], [-122.125629, 37.696458]]}, "type": "Feature", "name": "Coelho Dr:Mooney Av -> Bay Fair BART Station", "properties": {"origin_onestop_id": "s-9q9nkyz3p1-coelhodr~mooneyav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkyqyex-bayfairbartstation<1500570", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.246653, 37.880416], [-122.246038, 37.881104]]}, "type": "Feature", "name": "Centennial Dr:Parking Lot -> Centennial Dr:Parking Lot", "properties": {"origin_onestop_id": "s-9q9p6pytqt-centennialdr~parkinglot", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9pd0p1kv-centennialdr~parkinglot", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.276371, 37.888681], [-122.277507, 37.891555]]}, "type": "Feature", "name": "The Alameda:Marin Av -> Solano Av:The Alameda", "properties": {"origin_onestop_id": "s-9q9p993jd4-thealameda~marinav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p99bnr9-solanoav~thealameda", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.171103, 37.709203], [-122.172549, 37.712247]]}, "type": "Feature", "name": "Merced St:Marina Blvd -> Williams St:Merced St", "properties": {"origin_onestop_id": "s-9q9nebv8nb-mercedst~marinablvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9neck9v2-williamsst~mercedst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.210765, 37.772164], [-122.215062, 37.772576]]}, "type": "Feature", "name": "46th Av:Bancroft Av -> International Blvd:High St", "properties": {"origin_onestop_id": "s-9q9ngh0yfc-46thav~bancroftav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nfum9nw-internationalblvd~highst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.288292, 37.900983], [-122.288523, 37.902873]]}, "type": "Feature", "name": "Colusa Av:Lynn Av -> Colusa Av:Curry Av", "properties": {"origin_onestop_id": "s-9q9p978mhr-colusaav~lynnav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9k00nz-colusaav~curryav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.28032, 37.893158], [-122.282379, 37.894565]]}, "type": "Feature", "name": "Colusa Av:Tacoma Av -> Colusa Av:Vincente Av", "properties": {"origin_onestop_id": "s-9q9p96npwh-colusaav~tacomaav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p96kxy4-colusaav~vincenteav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.251178, 37.813202], [-122.249096, 37.810236]]}, "type": "Feature", "name": "MacArthur Blvd:#345 -> MacArthur Blvd:Grand Av", "properties": {"origin_onestop_id": "s-9q9p45emv5-macarthurblvd~345", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p45hutd-macarthurblvd~grandav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.292153, 37.849045], [-122.291379, 37.85218]]}, "type": "Feature", "name": "Hollis St:67th St -> 7th St:Anthony St", "properties": {"origin_onestop_id": "s-9q9p34jwdm-hollisst~67thst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p34y0um-7thst~anthonyst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.209109, 37.772498], [-122.210765, 37.772164]]}, "type": "Feature", "name": "Bond St:47th Av -> 46th Av:Bancroft Av", "properties": {"origin_onestop_id": "s-9q9ngh609r-bondst~47thav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngh0yfc-46thav~bancroftav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.162894, 37.762422], [-122.165236, 37.762583]]}, "type": "Feature", "name": "Golf Links Rd:Cosgrave Av -> 82nd Av:MacArthur Blvd", "properties": {"origin_onestop_id": "s-9q9nu47wn3-golflinksrd~cosgraveav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu43yzx-82ndav~macarthurblvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.164329, 37.797821], [-122.16419, 37.798069]]}, "type": "Feature", "name": "Skyline Blvd:Balmoral Dr -> Skyline Blvd:Balmoral Dr", "properties": {"origin_onestop_id": "s-9q9ph0fskb-skylineblvd~balmoraldr", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ph0fv8n-skylineblvd~balmoraldr", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.133666, 37.67026], [-122.131471, 37.670474]]}, "type": "Feature", "name": "Bockman Rd:Via Chiquita -> Bockman Rd:Via Alamitos", "properties": {"origin_onestop_id": "s-9q9nkc8vpm-bockmanrd~viachiquita", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkcdw6m-bockmanrd~viaalamitos", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.191932, 37.750074], [-122.197631, 37.753866]]}, "type": "Feature", "name": "81st Av:San Leandro St -> San Leandro St:Coliseum BART Walkway", "properties": {"origin_onestop_id": "s-9q9ng2nw1e-81stav~sanleandrost", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ng2ff5m-coliseumbartstation<1031000", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.24243, 37.811013], [-122.23952, 37.809752]]}, "type": "Feature", "name": "Longridge Rd:Lakeshore Av -> Longridge Rd:Rosemount Rd", "properties": {"origin_onestop_id": "s-9q9p473c0g-longridgerd~lakeshoreav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p475cu8-longridgerd~rosemountrd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.090157, 37.670752], [-122.086099, 37.669284]]}, "type": "Feature", "name": "A St:Grand St -> Hayward BART Station", "properties": {"origin_onestop_id": "s-9q9nmcb8j1-ast~grandst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmce4r2-haywardbartstation<0802090", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.155874, 37.72264], [-122.154151, 37.721389]]}, "type": "Feature", "name": "W Juana Av:Hays St -> Washington Av:Thornton St", "properties": {"origin_onestop_id": "s-9q9ns70y3c-wjuanaav~haysst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns6fp1b-washingtonav~thorntonst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.12475, 37.698392], [-122.125907, 37.696977]]}, "type": "Feature", "name": "Coelho Dr:Mooney Av -> Bay Fair BART Station", "properties": {"origin_onestop_id": "s-9q9nkyz3p1-coelhodr~mooneyav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkyqyex-bayfairbartstation<1500630", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.28511, 37.89648], [-122.285649, 37.898634]]}, "type": "Feature", "name": "Colusa Av:Thousand Oaks Blvd -> Colusa Av:Visalia Av", "properties": {"origin_onestop_id": "s-9q9p96fdyr-colusaav~thousandoaksblvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p974r9c-colusaav~visaliaav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.261004, 37.828488], [-122.253103, 37.833055]]}, "type": "Feature", "name": "40th St:Webster St -> Broadway:Whitmore St", "properties": {"origin_onestop_id": "s-9q9p1ykqbj-40thst~websterst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4p6180-broadway~whitmorest", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.093361, 37.691239], [-122.091635, 37.692167]]}, "type": "Feature", "name": "John Dr:Foothill Blvd -> John Dr:Castro Valley Blvd", "properties": {"origin_onestop_id": "s-9q9nmtqr6k-johndr~foothillblvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmtxsf9-johndr~castrovalleyblvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.173934, 37.758436], [-122.175652, 37.757597]]}, "type": "Feature", "name": "82nd Av:Birch St -> 82nd Av:Plymouth St", "properties": {"origin_onestop_id": "s-9q9ngcewuf-82ndav~birchst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngcd3uy-82ndav~plymouthst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.126227, 37.679504], [-122.121604, 37.682481]]}, "type": "Feature", "name": "Paseo Grande:Hesperian Blvd -> Paseo Grande:Via Toledo", "properties": {"origin_onestop_id": "s-9q9nkgq7h8-paseogrande~hesperianblvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nm5cu27-paseogrande~viatoledo", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.222987, 37.775888], [-122.225458, 37.775518]]}, "type": "Feature", "name": "35th Av:International Blvd -> Fruitvale BART Station", "properties": {"origin_onestop_id": "s-9q9nfszumz-35thav~internationalblvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nfsy2v8-fruitvalebartstation<1011320", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.092784, 37.67321], [-122.090065, 37.67108]]}, "type": "Feature", "name": "Western Av:Laurel Av -> Western Av:A St", "properties": {"origin_onestop_id": "s-9q9nmdnwrg-westernav~laurelav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmcb9zq-westernav~ast", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.093225, 37.701287], [-122.095186, 37.70212]]}, "type": "Feature", "name": "Stanton Av:Carlton Av -> Stanton Av:Acorn St", "properties": {"origin_onestop_id": "s-9q9nmxq3vt-stantonav~carltonav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmxkyzb-stantonav~acornst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.307449, 37.901401], [-122.305328, 37.901748]]}, "type": "Feature", "name": "Central Av:Belmont Av -> Central Av:Yosemite Av", "properties": {"origin_onestop_id": "s-9q9p8gdrtv-centralav~belmontav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p8ggcxm-centralav~yosemiteav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.149875, 37.753767], [-122.147688, 37.760316]]}, "type": "Feature", "name": "Mountain Blvd:Golf Links Rd -> Mountain Blvd:Sequoyah Rd", "properties": {"origin_onestop_id": "s-9q9nu2v5ts-mountainblvd~golflinksrd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu6ncb9-mountainblvd~sequoyahrd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.158447, 37.699946], [-122.157458, 37.698579]]}, "type": "Feature", "name": "Spruce St:Wiley St -> Wiley St:Ottawa Av", "properties": {"origin_onestop_id": "s-9q9nkpnfjg-sprucest~wileyst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nknzdhu-wileyst~ottawaav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.151524, 37.717393], [-122.149176, 37.713833]]}, "type": "Feature", "name": "Washington Av:Estabrook St -> Washington Av:San Leandro Blvd", "properties": {"origin_onestop_id": "s-9q9ns65zxp-washingtonav~estabrookst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns3tejb-washingtonav~sanleandroblvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.122717, 37.671314], [-122.128017, 37.670942]]}, "type": "Feature", "name": "Bockman Rd:Via Arriba -> Bockman Rd:Via Media", "properties": {"origin_onestop_id": "s-9q9nm1bgq3-bockmanrd~viaarriba", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkcv14u-bockmanrd~viamedia", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.201488, 37.777038], [-122.203429, 37.77651]]}, "type": "Feature", "name": "Monticello Av:Fairfax Av -> Monticello Av:Vicksburg Av", "properties": {"origin_onestop_id": "s-9q9ngjpe4y-monticelloav~fairfaxav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngjn0je-monticelloav~vicksburgav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.165204, 37.715484], [-122.168807, 37.713984]]}, "type": "Feature", "name": "Williams St:Wayne Av -> William St:Castro St", "properties": {"origin_onestop_id": "s-9q9ns1fh87-williamsst~wayneav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9necx7uk-williamst~castrost", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.127106, 37.679152], [-122.123383, 37.673746]]}, "type": "Feature", "name": "Paseo Grande:Hesperian Blvd -> Hesperian Blvd:Hacienda Av", "properties": {"origin_onestop_id": "s-9q9nkgmbbp-paseogrande~hesperianblvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nm423qz-hesperianblvd~haciendaav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.299663, 37.874332], [-122.300284, 37.876349]]}, "type": "Feature", "name": "6th St:Cedar St -> 6th St:Page St", "properties": {"origin_onestop_id": "s-9q9p3nb1gr-6thst~cedarst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p2zptsz-6thst~pagest", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.160561, 37.770458], [-122.159125, 37.769705]]}, "type": "Feature", "name": "Greenly Dr:Lamp St -> Greenly Dr:Keller Av", "properties": {"origin_onestop_id": "s-9q9nu5vkue-greenlydr~lampst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu5y2qp-greenlydr~kellerav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.178361, 37.78907], [-122.179337, 37.790126]]}, "type": "Feature", "name": "Mountain Blvd:Bermuda Av -> Mountain Blvd:Knoll Av", "properties": {"origin_onestop_id": "s-9q9ngz23mc-mountainblvd~bermudaav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngxrxrn-mountainblvd~knollav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.159002, 37.729084], [-122.16002, 37.730976]]}, "type": "Feature", "name": "E 14th St:Begier Av -> Dutton Av:E 14th St", "properties": {"origin_onestop_id": "s-9q9nshqebg-e14thst~begierav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nshtyc5-duttonav~e14thst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.138872, 37.688379], [-122.139035, 37.694093]]}, "type": "Feature", "name": "Washington Av:Fargo Av -> Washington Av:Springlake Dr", "properties": {"origin_onestop_id": "s-9q9nksvnwp-washingtonav~fargoav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkwj040-washingtonav~springlakedr", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.198218, 37.810511], [-122.186339, 37.798629]]}, "type": "Feature", "name": "Monterey Blvd:Lincoln Av -> Redwood Rd:Aliso Av", "properties": {"origin_onestop_id": "s-9q9p571ypn-montereyblvd~lincolnav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5948gz-redwoodrd~alisoav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.232291, 37.824902], [-122.231964, 37.825041]]}, "type": "Feature", "name": "Highland Av:Vista Av -> Highland Way:Highland Av", "properties": {"origin_onestop_id": "s-9q9p4tc63j-highlandave~highlandway<1100350", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4tc63j-highlandave~highlandway<1100360", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.088627, 37.685083], [-122.089987, 37.683307]]}, "type": "Feature", "name": "Grove Way:Gary Dr -> Foothill Blvd:Grove Way", "properties": {"origin_onestop_id": "s-9q9nmu3g8b-groveway~garydr", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmu0c1j-foothillblvd~groveway", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.178234, 37.784678], [-122.178361, 37.78907]]}, "type": "Feature", "name": "Mountain Blvd:Frontage Rd -> Mountain Blvd:Bermuda Av", "properties": {"origin_onestop_id": "s-9q9ngy2x8y-mountainblvd~frontagerd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngz23mc-mountainblvd~bermudaav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.165097, 37.762516], [-122.159172, 37.76156]]}, "type": "Feature", "name": "82nd Av:MacArthur Blvd -> Golf Links Rd:Fontaine St", "properties": {"origin_onestop_id": "s-9q9nu46ndg-82ndav~macarthurblvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu4q3hb-golflinksrd~fontainest", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.294807, 37.846139], [-122.291519, 37.847031]]}, "type": "Feature", "name": "65th St:Shellmound St (Bay St) -> Hollis St:65th St", "properties": {"origin_onestop_id": "s-9q9p31etsr-65thst~shellmoundstbayst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p31y4cj-hollisst~65thst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.11529, 37.695795], [-122.113165, 37.695027]]}, "type": "Feature", "name": "E 14th St:163rd Av -> 164th Av:E 14th St", "properties": {"origin_onestop_id": "s-9q9nmnq3gt-e14thst~163rdav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmnpvmn-164thav~e14thst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.235751, 37.809387], [-122.232411, 37.80986]]}, "type": "Feature", "name": "Longridge Rd:Verrada Rd -> Longridge Rd:Carlston Av", "properties": {"origin_onestop_id": "s-9q9p46yxss-longridgerd~verradard", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4e146k-longridgerd~carlstonav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.090157, 37.670752], [-122.086675, 37.669833]]}, "type": "Feature", "name": "A St:Grand St -> Hayward BART Station", "properties": {"origin_onestop_id": "s-9q9nmcb8j1-ast~grandst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmce4r2-haywardbartstation<0802130", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.110858, 37.696922], [-122.109517, 37.698026]]}, "type": "Feature", "name": "164th Av:Helo Dr -> 164th Av:Gordon Way", "properties": {"origin_onestop_id": "s-9q9nmq986z-164thav~helodr", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmqdwfj-164thav~gordonway", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.159172, 37.76156], [-122.152664, 37.7655]]}, "type": "Feature", "name": "Golf Links Rd:Fontaine St -> Fontaine St:Overpass (Near King Estates Mid. Sch.)", "properties": {"origin_onestop_id": "s-9q9nu4q3hb-golflinksrd~fontainest", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu6gpux-fontainest~overpassnearkingestatesmidsch", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.20486, 37.808095], [-122.20736, 37.8065]]}, "type": "Feature", "name": "Lincoln Av:Head Royce School -> Lincoln Av:Tiffin Rd", "properties": {"origin_onestop_id": "s-9q9p54v0h7-lincolnav~headroyceschool", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p547qf4-lincolnav~tiffinrd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.145184, 37.708142], [-122.148942, 37.713949]]}, "type": "Feature", "name": "Washington Av:139th Av -> Washington Av:San Leandro Blvd", "properties": {"origin_onestop_id": "s-9q9ns889fg-washingtonav~139thav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns3tgem-washingtonav~sanleandroblvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.305893, 37.889515], [-122.307189, 37.894086]]}, "type": "Feature", "name": "Pierce St:Washington Av -> Pierce St:Gateview Apts", "properties": {"origin_onestop_id": "s-9q9p8ced6j-piercest~washingtonav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p8f6t5c-piercest~gateviewapts", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.144237, 37.706699], [-122.145184, 37.708142]]}, "type": "Feature", "name": "Washington Av:143rd Av -> Washington Av:139th Av", "properties": {"origin_onestop_id": "s-9q9ns8332y-washingtonav~143rdav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns889fg-washingtonav~139thav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.14333, 37.684712], [-122.139574, 37.686312]]}, "type": "Feature", "name": "Lewelling Blvd:Sedgeman St -> Lewelling Blvd:Washington Av", "properties": {"origin_onestop_id": "s-9q9nks3cq5-lewellingblvd~sedgemanst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkssdtt-lewellingblvd~washingtonav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.169115, 37.705782], [-122.166382, 37.705285]]}, "type": "Feature", "name": "Merced St:Republic Av -> Kaiser Hospital San Leandro", "properties": {"origin_onestop_id": "s-9q9nebphj7-mercedst~republicav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns011hy-kaiserhospitalsanleandro", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.295504, 37.843159], [-122.295946, 37.844598]]}, "type": "Feature", "name": "Christie Av:64th St -> Christie St:64th St", "properties": {"origin_onestop_id": "s-9q9p315hkh-christieav~64thst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p316ucb-christiest~64thst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.185136, 37.75318], [-122.178953, 37.755876]]}, "type": "Feature", "name": "81st Av:Rudsdale St -> 82nd Av:International Blvd", "properties": {"origin_onestop_id": "s-9q9ng8g2py-81stav~rudsdalest", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngc0pbj-82ndav~internationalblvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.240879, 37.809309], [-122.242764, 37.810684]]}, "type": "Feature", "name": "Trestle Glen Rd:Stratford Rd -> Trestle Glen Rd:Lakeshore Av (Wesley Way)", "properties": {"origin_onestop_id": "s-9q9p46fzjn-trestleglenrd~stratfordrd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p471x1n-trestleglenrd~lakeshoreavwesleyway", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.157458, 37.698579], [-122.157005, 37.695342]]}, "type": "Feature", "name": "Wiley St:Ottawa Av -> Wiley St:Purdue St", "properties": {"origin_onestop_id": "s-9q9nknzdhu-wileyst~ottawaav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nknpzr3-wileyst~purduest", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.123476, 37.752436], [-122.124653, 37.751835]]}, "type": "Feature", "name": "Glen Artney St:Shetland Av -> Shetland Av:Golf Links Rd", "properties": {"origin_onestop_id": "s-9q9nv087uu-glenartneyst~shetlandav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nubx83k-shetlandav~golflinksrd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.087106, 37.701429], [-122.087183, 37.697454]]}, "type": "Feature", "name": "Somerset Av:Wisteria St -> Lake Chabot:Eden Medical Center", "properties": {"origin_onestop_id": "s-9q9nmz6fsp-somersetav~wisteriast", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmydgd6-lakechabot~edenmedicalcenter", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.231081, 37.806235], [-122.232639, 37.806824]]}, "type": "Feature", "name": "Grosvenor Pl:Holman Rd -> Holman Rd:Trestle Glen Rd", "properties": {"origin_onestop_id": "s-9q9p4d6j33-grosvenorpl~holmanrd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4d8btn-holmanrd~trestleglenrd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.205468, 37.774002], [-122.206731, 37.77243]]}, "type": "Feature", "name": "50th Av:Melrose Av -> 50th Av:Foothill Blvd", "properties": {"origin_onestop_id": "s-9q9nghs9w0-50thav~melroseav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngh7b2g-50thav~foothillblvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.142089, 37.677386], [-122.13957, 37.678375]]}, "type": "Feature", "name": "Grant Av:Channel St -> Grant Av:Nielson Av", "properties": {"origin_onestop_id": "s-9q9nkdfyej-grantav~channelst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkehsmw-grantav~nielsonav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.147351, 37.754669], [-122.141164, 37.75743]]}, "type": "Feature", "name": "Golf Links Rd:Anza Av -> Golf Links Rd:Elysian Fields Dr", "properties": {"origin_onestop_id": "s-9q9nu3p0bk-golflinksrd~anzaav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu9e8bx-golflinksrd~elysianfieldsdr", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.147034, 37.675037], [-122.142089, 37.677386]]}, "type": "Feature", "name": "Grant Av: Via Nueva -> Grant Av:Channel St", "properties": {"origin_onestop_id": "s-9q9nk6x0zz-grantav~vianueva", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkdfyej-grantav~channelst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.104162, 37.678218], [-122.101431, 37.679108]]}, "type": "Feature", "name": "Blossom Way:Haviland Av -> Blossom Way:Western Av", "properties": {"origin_onestop_id": "s-9q9nm7n7wb-blossomway~havilandav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nme22wq-blossomway~westernav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.124653, 37.751835], [-122.125709, 37.752472]]}, "type": "Feature", "name": "Shetland Av:Golf Links Rd -> Golf Links Rd:Grass Valley Sch. (Near Dunkirk Av)", "properties": {"origin_onestop_id": "s-9q9nubx83k-shetlandav~golflinksrd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nubwu0d-golflinksrd~grassvalleyschneardunkirkav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.139574, 37.686312], [-122.137508, 37.686535]]}, "type": "Feature", "name": "Lewelling Blvd:Washington Av -> Lewelling Blvd:Tropic Ct", "properties": {"origin_onestop_id": "s-9q9nkssdtt-lewellingblvd~washingtonav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nksw5vz-lewellingblvd~tropicct", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.248154, 37.884709], [-122.249161, 37.885852]]}, "type": "Feature", "name": "Grizzly Peak Blvd:#1411 -> Grizzly Peak Blvd:Hill Rd", "properties": {"origin_onestop_id": "s-9q9pd0tw7t-grizzlypeakblvd~1411", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9pd0uvh4-grizzlypeakblvd~hillrd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.2174, 37.797024], [-122.216833, 37.798508]]}, "type": "Feature", "name": "Fruitvale Av:Pleasant St -> Fruitvale Av:Montana St", "properties": {"origin_onestop_id": "s-9q9p4bsp85-fruitvaleav~pleasantst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4ch2m2-fruitvaleav~montanast", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.163303, 37.777501], [-122.154201, 37.772279]]}, "type": "Feature", "name": "Monte Vista Driveway:Leona Quarry Dr -> Keller Av:Greenridge Dr", "properties": {"origin_onestop_id": "s-9q9nuj5mus-montevistadriveway~leonaquarrydr", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nuk4p2z-kellerav~greenridgedr", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.18531, 37.753212], [-122.188734, 37.751599]]}, "type": "Feature", "name": "81st Av:Rudsdale St -> 81st Av:Sunshine Biscuits Factory", "properties": {"origin_onestop_id": "s-9q9ng8g27u-81stav~rudsdalest", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ng82zh0-81stav~sunshinebiscuitsfactory", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.125629, 37.696458], [-122.122579, 37.694572]]}, "type": "Feature", "name": "Bay Fair BART Station -> Elgin St:Videll St", "properties": {"origin_onestop_id": "s-9q9nkyqyex-bayfairbartstation<1500570", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmn14c9-elginst~videllst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.090728, 37.700647], [-122.087183, 37.697454]]}, "type": "Feature", "name": "Somerset Av:Sprague Ct -> Lake Chabot:Eden Medical Center", "properties": {"origin_onestop_id": "s-9q9nmz0npv-somersetav~spraguect", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmydgd6-lakechabot~edenmedicalcenter", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.198354, 37.810284], [-122.200691, 37.810484]]}, "type": "Feature", "name": "Lincoln Av:Monterey Blvd -> Lincoln Av:Greek Church", "properties": {"origin_onestop_id": "s-9q9p571ugg-lincolnav~montereyblvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p570nj9-lincolnav~greekchurch", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.088948, 37.69301], [-122.086651, 37.694703]]}, "type": "Feature", "name": "Castro Valley Blvd:Stanton Av -> Lake Chabot Rd:Castro Valley Blvd", "properties": {"origin_onestop_id": "s-9q9nmvc99q-castrovalleyblvd~stantonav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmy55wc-lakechabotrd~castrovalleyblvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.28654, 37.880554], [-122.283561, 37.880764]]}, "type": "Feature", "name": "Gilman St:Ordway St -> Hopkins St:Sacramento St", "properties": {"origin_onestop_id": "s-9q9p3rcwjp-gilmanst~ordwayst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3rgz6w-hopkinsst~sacramentost", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.097378, 37.676441], [-122.09518, 37.674859]]}, "type": "Feature", "name": "Western Av:Willow Av -> Western Blvd:Sunset Av", "properties": {"origin_onestop_id": "s-9q9nmdg3hv-westernav~willowav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmdmpbn-westernblvd~sunsetav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.098281, 37.7035], [-122.095069, 37.701916]]}, "type": "Feature", "name": "Miramar Av:Stanton Av -> Stanton Av:Acorn St", "properties": {"origin_onestop_id": "s-9q9nmxdwzc-miramarav~stantonav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmxmjdd-stantonav~acornst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.170709, 37.708142], [-122.169115, 37.705782]]}, "type": "Feature", "name": "Merced St:Marina Blvd -> Merced St:Republic Av", "properties": {"origin_onestop_id": "s-9q9nebw1b5-mercedst~marinablvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nebphj7-mercedst~republicav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.168036, 37.774008], [-122.166903, 37.774445]]}, "type": "Feature", "name": "Sunkist Dr:Edwards Av -> Edwards Av:Greenly Dr", "properties": {"origin_onestop_id": "s-9q9nguxcw3-sunkistdr~edwardsav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nuh8u0f-edwardsav~greenlydr", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.131471, 37.670474], [-122.128312, 37.6708]]}, "type": "Feature", "name": "Bockman Rd:Via Alamitos -> Bockman Rd:Via Honda", "properties": {"origin_onestop_id": "s-9q9nkcdw6m-bockmanrd~viaalamitos", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkcubk4-bockmanrd~viahonda", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.148942, 37.713949], [-122.150018, 37.715492]]}, "type": "Feature", "name": "Washington Av:San Leandro Blvd -> Washington Av:Cornwall Way", "properties": {"origin_onestop_id": "s-9q9ns3tgem-washingtonav~sanleandroblvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns3vhdm-washingtonav~cornwallway", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.256544, 37.736475], [-122.254372, 37.737884]]}, "type": "Feature", "name": "Harbor Bay Pkwy:Ferry Terminal -> Mecartney Rd:Sharon Rd", "properties": {"origin_onestop_id": "s-9q9n9vxwbh-harborbayferryterminal<0101480", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ndjcp4e-mecartneyrd~sharonrd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.105002, 37.678083], [-122.116653, 37.68465]]}, "type": "Feature", "name": "Blossom Way:Haviland Av -> Meekland Av:Paseo Grande", "properties": {"origin_onestop_id": "s-9q9nm7jfep-blossomway~havilandav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmhm2gx-meeklandav~paseogrande", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.157282, 37.722251], [-122.160201, 37.721266]]}, "type": "Feature", "name": "W Juana Av:Clarke St -> San Leandro BART Station", "properties": {"origin_onestop_id": "s-9q9ns5pu11-wjuanaav~clarkest", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns4vwm1-sanleandrobartstation", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.297852, 37.902117], [-122.298706, 37.902537]]}, "type": "Feature", "name": "Fairmount Av:Richmond St -> El Cerrito Plaza BART Station", "properties": {"origin_onestop_id": "s-9q9p95c7vd-fairmountav~richmondst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p95btzg-elcerritobartstation<0500890", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.146214, 37.683521], [-122.150041, 37.681591]]}, "type": "Feature", "name": "Lewelling Blvd:Andover St -> Lewelling Blvd:Farnsworth St", "properties": {"origin_onestop_id": "s-9q9nkkpf6v-lewellingblvd~andoverst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nk7tp1t-lewellingblvd~farnsworthst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.261727, 37.770259], [-122.264951, 37.771199]]}, "type": "Feature", "name": "Encinal Av:Benton St -> Central Av:Bay St", "properties": {"origin_onestop_id": "s-9q9ncggexq-encinalav~bentonst", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncu13hj-centralav~bayst", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.286733, 37.899485], [-122.288292, 37.900983]]}, "type": "Feature", "name": "Colusa Av:Oak View Av -> Colusa Av:Lynn Av", "properties": {"origin_onestop_id": "s-9q9p973s88-colusaav~oakviewav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p978mhr-colusaav~lynnav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.123543, 37.695379], [-122.125117, 37.696332]]}, "type": "Feature", "name": "Elgin St:Linnea Av -> Bay Fair BART Station", "properties": {"origin_onestop_id": "s-9q9nmn0r7p-elginst~linneaav", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkyqyex-bayfairbartstation<1500590", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.141678, 37.702398], [-122.140527, 37.700618]]}, "type": "Feature", "name": "Washington Av:Floresta Blvd -> Washington Av:Floresta Blvd", "properties": {"origin_onestop_id": "s-9q9nkxe0ks-washingtonav~florestablvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkx5yp2-washingtonav~florestablvd", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.185413, 37.775283], [-122.184747, 37.775898]]}, "type": "Feature", "name": "Seminary Av:Camden St (MacArthur Blvd) -> MacArthur Blvd:Camden St (Seminary Av Jctn)", "properties": {"origin_onestop_id": "s-9q9ngsg2cx-seminaryav~camdenstmacarthurblvd", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngsurs5-seminaryave~macarthurblvd<1018730", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.138195, 37.682978], [-122.136646, 37.678994]]}, "type": "Feature", "name": "Washington Av:Via Enrico -> Via Alamitos:Grant Av", "properties": {"origin_onestop_id": "s-9q9nkevxmb-washingtonav~viaenrico", "stroke": "#fef0d9", "frequency": 1.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkeqb1c-viaalamitos~grantav", "stroke-width": 1, "trips": 2}}, {"geometry": {"type": "LineString", "coordinates": [[-122.138585, 37.735872], [-122.143809, 37.738641]]}, "type": "Feature", "name": "Marlow Dr:Revere Av -> MacArthur Blvd:Lewis Av", "properties": {"origin_onestop_id": "s-9q9nstt7ks-marlowdr~revereav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nsw1edb-macarthurblvd~lewisav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.274261, 37.883525], [-122.275195, 37.88534]]}, "type": "Feature", "name": "Martin Luther King Jr Way:Berryman St -> Hopkins St:The Alameda", "properties": {"origin_onestop_id": "s-9q9p986xe0-martinlutherkingjrway~berrymanst", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p98cfj7-hopkinsst~thealameda", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.252263, 37.890339], [-122.255, 37.891648]]}, "type": "Feature", "name": "Grizzly Peak Blvd:Shasta Rd -> Grizzly Peak Blvd:Muir Way", "properties": {"origin_onestop_id": "s-9q9pd1dx5z-grizzlypeakblvd~shastard", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9pd1bwu5-grizzlypeakblvd~muirway", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.18587, 37.788581], [-122.185583, 37.787162]]}, "type": "Feature", "name": "Tompkins Av:Enos Av -> Tompkins Av:Buell St", "properties": {"origin_onestop_id": "s-9q9ngx4yqy-tompkinsav~enosav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngwgnjt-tompkinsav~buellst", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.266223, 37.882624], [-122.267332, 37.882117]]}, "type": "Feature", "name": "Spruce St:Rose St -> Oxford St:Rose St", "properties": {"origin_onestop_id": "s-9q9p9b26q8-sprucest~rosest", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p98pxkd-oxfordst~rosest", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.266722, 37.876427], [-122.266377, 37.873826]]}, "type": "Feature", "name": "Oxford St:Virginia St -> Oxford St:Hearst Av", "properties": {"origin_onestop_id": "s-9q9p3z0n4v-oxfordst~virginiast", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3y8r4b-oxfordst~hearstav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.206384, 37.772541], [-122.205297, 37.774]]}, "type": "Feature", "name": "50th Av:Foothill Blvd -> 50th Av:Melrose Av", "properties": {"origin_onestop_id": "s-9q9nghk0bz-50thav~foothillblvd", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nghsc6p-50thav~melroseav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.181211, 37.784828], [-122.178234, 37.784678]]}, "type": "Feature", "name": "Daisy St:Davenport Av -> Mountain Blvd:Frontage Rd", "properties": {"origin_onestop_id": "s-9q9ngww2e6-daisyst~davenportav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngy2x8y-mountainblvd~frontagerd", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.266204, 37.872173], [-122.267649, 37.869491]]}, "type": "Feature", "name": "Oxford St:University Av -> Allston Way:Shattuck Av", "properties": {"origin_onestop_id": "s-9q9p3y2mqu-oxfordst~universityav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3wp1qn-centerst~shattuckave<9902480", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.26639, 37.8839], [-122.266223, 37.882624]]}, "type": "Feature", "name": "Spruce St:Glen Av -> Spruce St:Rose St", "properties": {"origin_onestop_id": "s-9q9p9b83dw-sprucest~glenav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9b26q8-sprucest~rosest", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.174627, 37.711846], [-122.176482, 37.714379]]}, "type": "Feature", "name": "Westgate Pkwy:Williams St -> Westgate Pkwy:#Walmart", "properties": {"origin_onestop_id": "s-9q9nec5pkv-westgatepkwy~williamsst", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nec9y1t-westgatepkwy~walmart", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.267141, 37.891978], [-122.267297, 37.890902]]}, "type": "Feature", "name": "Spruce St:Santa Barbara Rd -> Spruce St:San Benito Rd", "properties": {"origin_onestop_id": "s-9q9p9dpbc0-sprucest~santabarbarard", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p99zdt2-sprucest~sanbenitord", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.146214, 37.683521], [-122.148578, 37.682337]]}, "type": "Feature", "name": "Lewelling Blvd:Andover St -> Lewelling Blvd:Dewey St", "properties": {"origin_onestop_id": "s-9q9nkkpf6v-lewellingblvd~andoverst", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nk7y5eb-lewellingblvd~deweyst", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.233071, 37.826326], [-122.232291, 37.824902]]}, "type": "Feature", "name": "Highland Av:Oakland Av -> Highland Av:Vista Av", "properties": {"origin_onestop_id": "s-9q9p4w0d74-highlandav~oaklandav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4tc63j-highlandave~highlandway<1100350", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.266923, 37.878445], [-122.266722, 37.876427]]}, "type": "Feature", "name": "Oxford St:Cedar St -> Oxford St:Virginia St", "properties": {"origin_onestop_id": "s-9q9p3xxcyj-oxfordst~cedarst", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3z0n4v-oxfordst~virginiast", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.299981, 37.883455], [-122.30015, 37.885444]]}, "type": "Feature", "name": "Jackson St:8th St -> Jackson St:Ohlone St", "properties": {"origin_onestop_id": "s-9q9p8brz5g-jacksonst~8thst", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p8bzdxy-jacksonst~ohlonest", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.275195, 37.88534], [-122.276688, 37.884366]]}, "type": "Feature", "name": "Hopkins St:The Alameda -> Hopkins St:Beverly Pl", "properties": {"origin_onestop_id": "s-9q9p98cfj7-hopkinsst~thealameda", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p988u6t-hopkinsst~beverlypl", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.267161, 37.890892], [-122.266921, 37.892184]]}, "type": "Feature", "name": "Spruce St:San Benito Rd -> Spruce St:Santa Barbara Rd", "properties": {"origin_onestop_id": "s-9q9p99zf2w-sprucest~sanbenitord", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9dpcyp-sprucest~santabarbarard", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.270361, 37.904381], [-122.270755, 37.902099]]}, "type": "Feature", "name": "Spruce St:Grizzley Peak Blvd -> Spruce St:Vassar Av", "properties": {"origin_onestop_id": "s-9q9p9sm3n0-sprucest~grizzleypeakblvd", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9ev5sz-sprucest~vassarav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.167423, 37.703606], [-122.170176, 37.707917]]}, "type": "Feature", "name": "Merced St:Fairway Dr -> Merced St:Marina Blvd", "properties": {"origin_onestop_id": "s-9q9nkp8rkt-mercedst~fairwaydr", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nebw2s9-mercedst~marinablvd", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.277872, 37.903316], [-122.278496, 37.905065]]}, "type": "Feature", "name": "Arlington Av:Amherst Av -> Arlington Av:#259", "properties": {"origin_onestop_id": "s-9q9p9kpfz4-arlingtonav~amherstav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9krt08-arlingtonav~259", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.270755, 37.902099], [-122.270144, 37.900737]]}, "type": "Feature", "name": "Spruce St:Vassar Av -> Spruce St:#551", "properties": {"origin_onestop_id": "s-9q9p9ev5sz-sprucest~vassarav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9eteg1-sprucest~551", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.276365, 37.901973], [-122.277872, 37.903316]]}, "type": "Feature", "name": "Arlington Av:Boynton Path -> Arlington Av:Amherst Av", "properties": {"origin_onestop_id": "s-9q9p9ec4fp-arlingtonav~boyntonpath", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9kpfz4-arlingtonav~amherstav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.276898, 37.90099], [-122.276365, 37.901973]]}, "type": "Feature", "name": "Arlington Av:San Luis Rd -> Arlington Av:Boynton Path", "properties": {"origin_onestop_id": "s-9q9p9e8tmb-arlingtonav~sanluisrd", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9ec4fp-arlingtonav~boyntonpath", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.269982, 37.897871], [-122.267595, 37.893017]]}, "type": "Feature", "name": "Spruce St:Halkin Ln -> Spruce St:Marin Av", "properties": {"origin_onestop_id": "s-9q9p9ejeng-sprucest~halkinln", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9dpqyd-sprucest~marinav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.143686, 37.738404], [-122.141312, 37.736908]]}, "type": "Feature", "name": "MacArthur Blvd:Lewis Av -> MacArthur Blvd:Fortuna Av", "properties": {"origin_onestop_id": "s-9q9nsw1dju-macarthurblvd~lewisav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nstg3mj-macarthurblvd~fortunaav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.189646, 37.789892], [-122.188395, 37.790533]]}, "type": "Feature", "name": "High St:Steele St -> High St:Hyacinth Av", "properties": {"origin_onestop_id": "s-9q9ngx2nnf-highst~steelest", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngx91u1-highst~hyacinthav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.254991, 37.845937], [-122.252402, 37.849139]]}, "type": "Feature", "name": "Claremont Av:Chabot Rd -> Claremont Av:College Av", "properties": {"origin_onestop_id": "s-9q9p618ss1-claremontav~chabotrd", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p644x0w-claremontav~collegeav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.151133, 37.742106], [-122.152078, 37.743116]]}, "type": "Feature", "name": "MacArthur Blvd:108th Av -> 106th Av:MacArthur Blvd", "properties": {"origin_onestop_id": "s-9q9nsqsr8q-macarthurblvd~108thav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nsqgtd6-106thav~macarthurblvd", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.188395, 37.790533], [-122.186171, 37.789756]]}, "type": "Feature", "name": "High St:Hyacinth Av -> Tompkins Av:Carson St", "properties": {"origin_onestop_id": "s-9q9ngx91u1-highst~hyacinthav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngx6trc-tompkinsav~carsonst", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.154506, 37.770766], [-122.154201, 37.772279]]}, "type": "Feature", "name": "Mountain Blvd:Shone Av -> Keller Av:Greenridge Dr", "properties": {"origin_onestop_id": "s-9q9nu7cy9t-mountainblvd~shoneav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nuk4p2z-kellerav~greenridgedr", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.194046, 37.78232], [-122.19593, 37.780977]]}, "type": "Feature", "name": "Monticello Av:Birdsall Av -> Monticello Av:Virginia Av", "properties": {"origin_onestop_id": "s-9q9ngqj1bq-monticelloav~birdsallav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngmgdhk-monticelloav~virginiaav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.192103, 37.781072], [-122.192143, 37.77896]]}, "type": "Feature", "name": "Birdsall Av:Camden St -> Birdsall Av:Madera Av", "properties": {"origin_onestop_id": "s-9q9ngmy6tw-birdsallav~camdenst", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngmqqks-birdsallav~maderaav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.303107, 37.902343], [-122.305004, 37.901934]]}, "type": "Feature", "name": "Central Av:San Pablo Av -> Central Av:Carlson Blvd", "properties": {"origin_onestop_id": "s-9q9p8gvt5h-centralav~sanpabloav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p8gu4yb-centralav~carlsonblvd", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.207078, 37.806535], [-122.204357, 37.808199]]}, "type": "Feature", "name": "Lincoln Av:Burlington St -> Lincoln Av:Head Royce School", "properties": {"origin_onestop_id": "s-9q9p547x08-lincolnav~burlingtonst", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p54v88p-lincolnav~headroyceschool", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.266921, 37.892184], [-122.267895, 37.893368]]}, "type": "Feature", "name": "Spruce St:Santa Barbara Rd -> Spruce St:Marin Av", "properties": {"origin_onestop_id": "s-9q9p9dpcyp-sprucest~santabarbarard", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9dr0ze-sprucest~marinav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.182812, 37.784526], [-122.181211, 37.784828]]}, "type": "Feature", "name": "Daisy St:Fair Av -> Daisy St:Davenport Av", "properties": {"origin_onestop_id": "s-9q9ngwmny4-daisyst~fairav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngww2e6-daisyst~davenportav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.196813, 37.773348], [-122.19549, 37.772859]]}, "type": "Feature", "name": "Trask St:Ygnacio Av -> 55th Av:Foothill Blvd", "properties": {"origin_onestop_id": "s-9q9ngk6vxy-traskst~ygnacioav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngk7fye-55thav~foothillblvd", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.276371, 37.888681], [-122.276223, 37.891101]]}, "type": "Feature", "name": "The Alameda:Marin Av -> Solano Av:The Alameda", "properties": {"origin_onestop_id": "s-9q9p993jd4-thealameda~marinav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p99c5tm-solanoav~thealameda", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.307298, 37.893869], [-122.305844, 37.889031]]}, "type": "Feature", "name": "Pierce St:Gateview Apts -> Pierce St:Solano Av", "properties": {"origin_onestop_id": "s-9q9p8f6ec3-piercest~gateviewapts", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p8c7xe7-piercest~solanoav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.137965, 37.683031], [-122.139889, 37.686438]]}, "type": "Feature", "name": "Washington Av:Via Enrico -> Lewelling Blvd:Washington Av", "properties": {"origin_onestop_id": "s-9q9nkevze4-washingtonav~viaenrico", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkss7qm-lewellingblvd~washingtonav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.211186, 37.771043], [-122.208168, 37.77171]]}, "type": "Feature", "name": "Bancroft Way:International Blvd -> Bancroft Av:48th Av", "properties": {"origin_onestop_id": "s-9q9ngh082b-bancroftway~internationalblvd", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngh4spm-bancroftav~48thav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.300069, 37.883508], [-122.29708, 37.880162]]}, "type": "Feature", "name": "Jackson St:8th St -> Gilman St:10th St", "properties": {"origin_onestop_id": "s-9q9p8brz3v-jacksonst~8thst", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3pcgzm-gilmanst~10thst", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.275406, 37.909166], [-122.274612, 37.906661]]}, "type": "Feature", "name": "Kenyon Av:Trinity Av -> Trinity Av:Beloit Av", "properties": {"origin_onestop_id": "s-9q9p9t1ubs-kenyonav~trinityav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9sdq71-trinityav~beloitav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.267662, 37.87076], [-122.26598, 37.872768]]}, "type": "Feature", "name": "Shattuck Sq:Center St -> Oxford St:University Av", "properties": {"origin_onestop_id": "s-9q9p3wp1qn-centerst~shattuckave<0306210", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3y88u5-oxfordst~universityav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.31382, 37.863834], [-122.317279, 37.862813]]}, "type": "Feature", "name": "University Av:Bait Shop -> Seawall Dr:University Av", "properties": {"origin_onestop_id": "s-9q9p2svuc6-universityav~baitshop", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p2seqbg-seawalldr~universityav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.29622, 37.880325], [-122.293306, 37.880949]]}, "type": "Feature", "name": "Gilman St:San Pablo Av -> Gilman St:Cornell Av", "properties": {"origin_onestop_id": "s-9q9p3pfsgs-gilmanst~sanpabloav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p90h8x2-gilmanst~cornellav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.29708, 37.880162], [-122.29622, 37.880325]]}, "type": "Feature", "name": "Gilman St:10th St -> Gilman St:San Pablo Av", "properties": {"origin_onestop_id": "s-9q9p3pcgzm-gilmanst~10thst", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3pfsgs-gilmanst~sanpabloav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.266765, 37.888355], [-122.267161, 37.890892]]}, "type": "Feature", "name": "Spruce St:Los Angeles Av -> Spruce St:San Benito Rd", "properties": {"origin_onestop_id": "s-9q9p9c259v-sprucest~losangelesav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p99zf2w-sprucest~sanbenitord", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.272268, 37.888418], [-122.277111, 37.891164]]}, "type": "Feature", "name": "Sutter St:Hopkins St -> The Alameda:Solano Av", "properties": {"origin_onestop_id": "s-9q9p99kh19-sutterst~hopkinsst", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p99bs0b-thealameda~solanoav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.273941, 37.79969], [-122.271338, 37.803848]]}, "type": "Feature", "name": "Broadway:7th St -> Broadway:13th St (12th St BART Station)", "properties": {"origin_onestop_id": "s-9q9p194z4s-broadway~7thst", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1dh9te-14thst~broadway<1006350", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.26951, 37.90131], [-122.27057, 37.902399]]}, "type": "Feature", "name": "Spruce St:#533 -> Spruce St:Vassar Av", "properties": {"origin_onestop_id": "s-9q9p9ewp1u-sprucest~533", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9evm3p-sprucest~vassarav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.192132, 37.775143], [-122.191565, 37.777714]]}, "type": "Feature", "name": "55th Av:Fleming Av -> Birdsail Av:Roberts Av", "properties": {"origin_onestop_id": "s-9q9ngky2hv-55thav~flemingav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngmnz4h-birdsailav~robertsav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.275136, 37.885497], [-122.274345, 37.882975]]}, "type": "Feature", "name": "The Alameda:Hopkins St -> Martin Luther King Jr Way:Berryman St", "properties": {"origin_onestop_id": "s-9q9p98cgnb-thealameda~hopkinsst", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p986s36-martinlutherkingjrway~berrymanst", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.251664, 37.79217], [-122.24964, 37.790385]]}, "type": "Feature", "name": "E 12th St:9th Av -> E 12th St:11th Av", "properties": {"origin_onestop_id": "s-9q9nfpg53g-e12thst~9thav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nfps8by-e12thst~11thav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.228267, 37.842645], [-122.225766, 37.842019]]}, "type": "Feature", "name": "Broadway Ter:Sheridan Rd (Near Florence Av) -> Broadway Ter:Warren Frwy Entrance", "properties": {"origin_onestop_id": "s-9q9p69h16u-broadwayter~sheridanrdnearflorenceav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p68vvtp-broadwayter~warrenfrwyentrance", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.281833, 37.881815], [-122.284164, 37.880576]]}, "type": "Feature", "name": "Hopkins St:Monterey Av -> Hopkins St:Albina Av", "properties": {"origin_onestop_id": "s-9q9p92jjdf-hopkinsst~montereyav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3rgqk7-hopkinsst~albinaav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.194335, 37.777368], [-122.195714, 37.776661]]}, "type": "Feature", "name": "Madera Av:Fleming Av -> Madera Av:Walnut St", "properties": {"origin_onestop_id": "s-9q9ngmhv1e-maderaav~flemingav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngm5c12-maderaav~walnutst", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.211035, 37.802745], [-122.207078, 37.806535]]}, "type": "Feature", "name": "Lincoln Av:Hearst Av -> Lincoln Av:Burlington St", "properties": {"origin_onestop_id": "s-9q9p51b8uq-lincolnav~hearstav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p547x08-lincolnav~burlingtonst", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.246638, 37.856285], [-122.243462, 37.857911]]}, "type": "Feature", "name": "Claremont Av:Hazel Rd -> Tunnel Rd:Domingo Av (Ashby Av)", "properties": {"origin_onestop_id": "s-9q9p65w8yg-claremontav~hazelrd", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p67c42f-tunnelrd~domingoavashbyav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.293306, 37.880949], [-122.291021, 37.881396]]}, "type": "Feature", "name": "Gilman St:Cornell Av -> Gilman St:Santa Fe Av", "properties": {"origin_onestop_id": "s-9q9p90h8x2-gilmanst~cornellav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p90n7hs-gilmanst~santafeav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.24964, 37.790385], [-122.248012, 37.788955]]}, "type": "Feature", "name": "E 12th St:11th Av -> E 12th St:13th Av", "properties": {"origin_onestop_id": "s-9q9nfps8by-e12thst~11thav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nfpm8wg-e12thst~13thav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.267984, 37.872119], [-122.263217, 37.867201]]}, "type": "Feature", "name": "University Av:Shattuck Av -> Durant Av:Ellsworth St", "properties": {"origin_onestop_id": "s-9q9p3wrjj6-universityav~shattuckav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3vd8kt-durantav~ellsworthst", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.258264, 37.894138], [-122.260421, 37.896165]]}, "type": "Feature", "name": "Grizzly Peak Blvd:Latham Ln -> Grizzly Peak Blvd:Forest Ln", "properties": {"origin_onestop_id": "s-9q9p9fqjrg-grizzlypeakblvd~lathamln", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9fu9jt-grizzlypeakblvd~forestln", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.270144, 37.900737], [-122.269982, 37.897871]]}, "type": "Feature", "name": "Spruce St:#551 -> Spruce St:Halkin Ln", "properties": {"origin_onestop_id": "s-9q9p9eteg1-sprucest~551", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9ejeng-sprucest~halkinln", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.278496, 37.905065], [-122.279421, 37.907337]]}, "type": "Feature", "name": "Arlington Av:#259 -> Arlington Av:Wellesley Av", "properties": {"origin_onestop_id": "s-9q9p9krt08-arlingtonav~259", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9kyf4z-arlingtonav~wellesleyav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.306245, 37.887105], [-122.301187, 37.887509]]}, "type": "Feature", "name": "Buchanan St:Usda Trucking -> Buchanan St:Jackson St", "properties": {"origin_onestop_id": "s-9q9p8c5k3u-buchananst~usdatrucking", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p8cnyxz-buchananst~jacksonst", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.14409, 37.761544], [-122.141246, 37.762818]]}, "type": "Feature", "name": "Sequoyah Rd:Turnley Av -> Sequoyah Rd:Oak Hill Rd", "properties": {"origin_onestop_id": "s-9q9nud32uq-sequoyahrd~turnleyav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nude2qe-sequoyahrd~oakhillrd", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.30514, 37.887582], [-122.305893, 37.889515]]}, "type": "Feature", "name": "Buchanan St:Pierce St -> Pierce St:Washington Av", "properties": {"origin_onestop_id": "s-9q9p8chp5t-buchananst~piercest", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p8ced6j-piercest~washingtonav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.266295, 37.884088], [-122.266555, 37.886299]]}, "type": "Feature", "name": "Spruce St:Glen Av -> Spruce St:Eunice St", "properties": {"origin_onestop_id": "s-9q9p9b86uc-sprucest~glenav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9bbpwy-sprucest~eunicest", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.203589, 37.776282], [-122.201625, 37.776864]]}, "type": "Feature", "name": "50th Av:Vicksburg Av -> Monticello Av:Fairfax Av", "properties": {"origin_onestop_id": "s-9q9nghyncc-50thav~vicksburgav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngjp6pv-monticelloav~fairfaxav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.13494, 37.770196], [-122.136388, 37.770239]]}, "type": "Feature", "name": "Sequoyah Rd:Keller Av -> Hansom Dr:Coach Dr", "properties": {"origin_onestop_id": "s-9q9nugb53d-sequoyahrd~kellerav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nueygxf-hansomdr~coachdr", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.276559, 37.898824], [-122.276898, 37.90099]]}, "type": "Feature", "name": "Arlington Av:San Fernando Av -> Arlington Av:San Luis Rd", "properties": {"origin_onestop_id": "s-9q9p9e2bts-arlingtonav~sanfernandoav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9e8tmb-arlingtonav~sanluisrd", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.278761, 37.891297], [-122.277111, 37.891164]]}, "type": "Feature", "name": "Solano Av:Colusa Av -> The Alameda:Solano Av", "properties": {"origin_onestop_id": "s-9q9p93zkf3-solanoav~colusaav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p99bs0b-thealameda~solanoav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.205297, 37.774], [-122.203589, 37.776282]]}, "type": "Feature", "name": "50th Av:Melrose Av -> 50th Av:Vicksburg Av", "properties": {"origin_onestop_id": "s-9q9nghsc6p-50thav~melroseav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nghyncc-50thav~vicksburgav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.137043, 37.76614], [-122.134924, 37.767765]]}, "type": "Feature", "name": "Sequoyah Rd:Heafey Rd -> Sequoyah Rd:Mendenhall Rd", "properties": {"origin_onestop_id": "s-9q9nuene8w-sequoyahrd~heafeyrd", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nug2j1v-sequoyahrd~mendenhallrd", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.267005, 37.880365], [-122.267194, 37.882097]]}, "type": "Feature", "name": "Oxford St:Vine St -> Oxford St:Rose St", "properties": {"origin_onestop_id": "s-9q9p3xzvh7-oxfordst~vinest", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p98pxpy-oxfordst~rosest", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.191565, 37.777714], [-122.191948, 37.780891]]}, "type": "Feature", "name": "Birdsail Av:Roberts Av -> Birdsall Av:Camden St", "properties": {"origin_onestop_id": "s-9q9ngmnz4h-birdsailav~robertsav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngmy99h-birdsallav~camdenst", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.191948, 37.780891], [-122.193141, 37.782229]]}, "type": "Feature", "name": "Birdsall Av:Camden St -> Birdsall Av:Kingsland Av", "properties": {"origin_onestop_id": "s-9q9ngmy99h-birdsallav~camdenst", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngqj9mm-birdsallav~kingslandav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.186171, 37.789756], [-122.18587, 37.788581]]}, "type": "Feature", "name": "Tompkins Av:Carson St -> Tompkins Av:Enos Av", "properties": {"origin_onestop_id": "s-9q9ngx6trc-tompkinsav~carsonst", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngx4yqy-tompkinsav~enosav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.237102, 37.735178], [-122.23941, 37.73571]]}, "type": "Feature", "name": "Mecartney Rd:Camellia Dr -> Mecartney Rd:Island Dr", "properties": {"origin_onestop_id": "s-9q9ndmmxm5-mecartneyrd~camelliadr", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ndmefrq-mecartneyrd~islanddr", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.19549, 37.772859], [-122.194118, 37.773773]]}, "type": "Feature", "name": "55th Av:Foothill Blvd -> 55th Av:Brookdale Av", "properties": {"origin_onestop_id": "s-9q9ngk7fye-55thav~foothillblvd", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngksbnt-55thav~brookdaleav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.26986, 37.897971], [-122.270826, 37.899376]]}, "type": "Feature", "name": "Spruce St:Halkin Ln -> Spruce St:Acacia Walk", "properties": {"origin_onestop_id": "s-9q9p9ejg9v-sprucest~halkinln", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9em5g7-sprucest~acaciawalk", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.276688, 37.884366], [-122.279578, 37.882928]]}, "type": "Feature", "name": "Hopkins St:Beverly Pl -> Hopkins St:Colusa Av", "properties": {"origin_onestop_id": "s-9q9p988u6t-hopkinsst~beverlypl", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p92qsp3-hopkinsst~colusaav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.272646, 37.889875], [-122.27394, 37.892003]]}, "type": "Feature", "name": "Marin Av:The Circle -> Arlington Av:Indian Rock Path", "properties": {"origin_onestop_id": "s-9q9p99eu8b-marinav~thecircle", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9d4bft-arlingtonav~indianrockpath", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.260421, 37.896165], [-122.261536, 37.896957]]}, "type": "Feature", "name": "Grizzly Peak Blvd:Forest Ln -> Grizzly Peak Blvd:Marin Av", "properties": {"origin_onestop_id": "s-9q9p9fu9jt-grizzlypeakblvd~forestln", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9fgvg8-grizzlypeakblvd~marinav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.276409, 37.88773], [-122.275136, 37.885497]]}, "type": "Feature", "name": "The Alameda:Monterey Av -> The Alameda:Hopkins St", "properties": {"origin_onestop_id": "s-9q9p993010-thealameda~montereyav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p98cgnb-thealameda~hopkinsst", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.091954, 37.710262], [-122.09048, 37.707507]]}, "type": "Feature", "name": "Seven Hills Rd:Carlwyn Dr -> Lake Chabot Rd:Keith Av", "properties": {"origin_onestop_id": "s-9q9nt8zq5q-sevenhillsrd~carlwyndr", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ntb2qjs-lakechabotrd~keithav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.27475, 37.889376], [-122.276371, 37.888681]]}, "type": "Feature", "name": "Marin Av:Lassen St -> The Alameda:Marin Av", "properties": {"origin_onestop_id": "s-9q9p99d1xg-marinav~lassenst", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p993jd4-thealameda~marinav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.266128, 37.882797], [-122.266295, 37.884088]]}, "type": "Feature", "name": "Spruce St:Rose St -> Spruce St:Glen Av", "properties": {"origin_onestop_id": "s-9q9p9b2e29-sprucest~rosest", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9b86uc-sprucest~glenav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.256671, 37.827341], [-122.253103, 37.833055]]}, "type": "Feature", "name": "Broadway:40th St -> Broadway:Whitmore St", "properties": {"origin_onestop_id": "s-9q9p1yr2jp-broadway~40thst", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4p6180-broadway~whitmorest", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.306035, 37.866399], [-122.311537, 37.864765]]}, "type": "Feature", "name": "University Av:W Frontage Rd -> University Av:Marina Blvd", "properties": {"origin_onestop_id": "s-9q9p2v77yb-universityav~wfrontagerd", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p2tp6nx-universityav~marinablvd", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.170176, 37.707917], [-122.392953, 37.789752]]}, "type": "Feature", "name": "Merced St:Marina Blvd -> Transbay Temp Terminal", "properties": {"origin_onestop_id": "s-9q9nebw2s9-mercedst~marinablvd", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q8yyz7y5b-sanfranciscoterminal<1410380", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.252912, 37.793291], [-122.251664, 37.79217]]}, "type": "Feature", "name": "E 12th St:7th Av -> E 12th St:9th Av", "properties": {"origin_onestop_id": "s-9q9p4041us-e12thst~7thav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nfpg53g-e12thst~9thav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.277111, 37.891164], [-122.276409, 37.88773]]}, "type": "Feature", "name": "The Alameda:Solano Av -> The Alameda:Monterey Av", "properties": {"origin_onestop_id": "s-9q9p99bs0b-thealameda~solanoav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p993010-thealameda~montereyav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.234431, 37.828811], [-122.23379, 37.827638]]}, "type": "Feature", "name": "Highland Av:Park Way -> Highland Av:Blair Av", "properties": {"origin_onestop_id": "s-9q9p4qx8g3-highlandav~parkway", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4w21fq-highlandav~blairav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.266277, 37.874507], [-122.266583, 37.876771]]}, "type": "Feature", "name": "Oxford St:Hearst Av -> Oxford St:Virginia St", "properties": {"origin_onestop_id": "s-9q9p3yb6vr-oxfordst~hearstav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3z20nj-oxfordst~virginiast", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.27057, 37.902399], [-122.26976, 37.904313]]}, "type": "Feature", "name": "Spruce St:Vassar Av -> Spruce St:Grizzly Peak Blvd", "properties": {"origin_onestop_id": "s-9q9p9evm3p-sprucest~vassarav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9smbsh-sprucest~grizzlypeakblvd", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.194988, 37.787168], [-122.192646, 37.788347]]}, "type": "Feature", "name": "High St:MacArthur Blvd -> High St:Kansas St", "properties": {"origin_onestop_id": "s-9q9ngquq4q-highst~macarthurblvd", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngrnj0f-highst~kansasst", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.311537, 37.864765], [-122.31382, 37.863834]]}, "type": "Feature", "name": "University Av:Marina Blvd -> University Av:Bait Shop", "properties": {"origin_onestop_id": "s-9q9p2tp6nx-universityav~marinablvd", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p2svuc6-universityav~baitshop", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.257166, 37.843147], [-122.254991, 37.845937]]}, "type": "Feature", "name": "Claremont Av:Hudson St -> Claremont Av:Chabot Rd", "properties": {"origin_onestop_id": "s-9q9p3cph39-claremontav~hudsonst", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p618ss1-claremontav~chabotrd", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.193475, 37.782381], [-122.192103, 37.781072]]}, "type": "Feature", "name": "Birdsall Av:Monticello Av -> Birdsall Av:Camden St", "properties": {"origin_onestop_id": "s-9q9ngqj6md-birdsallav~monticelloav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngmy6tw-birdsallav~camdenst", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.170251, 37.760213], [-122.179444, 37.755761]]}, "type": "Feature", "name": "82nd Av:Bancroft Av -> 82nd Av:International Blvd", "properties": {"origin_onestop_id": "s-9q9ngfn34v-82ndav~bancroftav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ng9pxhx-82ndav~internationalblvd", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.087315, 37.710374], [-122.088516, 37.710322]]}, "type": "Feature", "name": "Seven Hills Rd:Marciel Ct -> Seven Hills Rd:Quail Av", "properties": {"origin_onestop_id": "s-9q9ntbfwz7-sevenhillsrd~marcielct", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ntbcye3-sevenhillsrd~quailav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.143809, 37.738641], [-122.144948, 37.739193]]}, "type": "Feature", "name": "MacArthur Blvd:Lewis Av -> MacArthur Blvd:Victoria Av", "properties": {"origin_onestop_id": "s-9q9nsw1edb-macarthurblvd~lewisav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nsw0y8r-macarthurblvd~victoriaav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.193141, 37.782229], [-122.194046, 37.78232]]}, "type": "Feature", "name": "Birdsall Av:Kingsland Av -> Monticello Av:Birdsall Av", "properties": {"origin_onestop_id": "s-9q9ngqj9mm-birdsallav~kingslandav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngqj1bq-monticelloav~birdsallav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.300116, 37.884997], [-122.300069, 37.883508]]}, "type": "Feature", "name": "Jackson St:Ohlone Av -> Jackson St:8th St", "properties": {"origin_onestop_id": "s-9q9p8bzb0e-jacksonst~ohloneav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p8brz3v-jacksonst~8thst", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.236882, 37.795191], [-122.234607, 37.796013]]}, "type": "Feature", "name": "14th Av:E 24th St -> 14th Av:E 26th St", "properties": {"origin_onestop_id": "s-9q9p42mufn-14thav~e24thst", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p42x3xp-14thav~e26thst", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.267127, 37.880326], [-122.266923, 37.878445]]}, "type": "Feature", "name": "Oxford St:Vine St -> Oxford St:Cedar St", "properties": {"origin_onestop_id": "s-9q9p3xzuck-oxfordst~vinest", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3xxcyj-oxfordst~cedarst", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.197513, 37.779736], [-122.195907, 37.780875]]}, "type": "Feature", "name": "Monticello Av:Fleming Av -> Monticello Av:Virginia Av", "properties": {"origin_onestop_id": "s-9q9ngmd6zt-monticelloav~flemingav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngmg9sc-monticelloav~virginiaav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.305844, 37.889031], [-122.306245, 37.887105]]}, "type": "Feature", "name": "Pierce St:Solano Av -> Buchanan St:Usda Trucking", "properties": {"origin_onestop_id": "s-9q9p8c7xe7-piercest~solanoav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p8c5k3u-buchananst~usdatrucking", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.279421, 37.907337], [-122.280221, 37.908184]]}, "type": "Feature", "name": "Arlington Av:Wellesley Av -> Arlington Av:Sunset Dr", "properties": {"origin_onestop_id": "s-9q9p9kyf4z-arlingtonav~wellesleyav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9kyr0m-arlingtonav~sunsetdr", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.266204, 37.872173], [-122.267465, 37.869536]]}, "type": "Feature", "name": "Oxford St:University Av -> Allston Way:Shattuck Av", "properties": {"origin_onestop_id": "s-9q9p3y2mqu-oxfordst~universityav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3wp1qn-centerst~shattuckave<9903520", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.301187, 37.887509], [-122.300116, 37.884997]]}, "type": "Feature", "name": "Buchanan St:Jackson St -> Jackson St:Ohlone Av", "properties": {"origin_onestop_id": "s-9q9p8cnyxz-buchananst~jacksonst", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p8bzb0e-jacksonst~ohloneav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.214642, 37.772133], [-122.211186, 37.771043]]}, "type": "Feature", "name": "International Blvd:High St -> Bancroft Way:International Blvd", "properties": {"origin_onestop_id": "s-9q9nfunn87-internationalblvd~highst", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngh082b-bancroftway~internationalblvd", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.196848, 37.775111], [-122.196813, 37.773348]]}, "type": "Feature", "name": "Kingsland Av:Mavis St -> Trask St:Ygnacio Av", "properties": {"origin_onestop_id": "s-9q9ngkdzzp-kingslandav~mavisst", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngk6vxy-traskst~ygnacioav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.185332, 37.785263], [-122.182812, 37.784526]]}, "type": "Feature", "name": "Tompkins Av:Daisy St -> Daisy St:Fair Av", "properties": {"origin_onestop_id": "s-9q9ngwe757-tompkinsav~daisyst", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngwmny4-daisyst~fairav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.266644, 37.885881], [-122.26639, 37.8839]]}, "type": "Feature", "name": "Spruce St:Eunice St -> Spruce St:Glen Av", "properties": {"origin_onestop_id": "s-9q9p9bbjk8-sprucest~eunicest", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9b83dw-sprucest~glenav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.148814, 37.744108], [-122.150069, 37.741445]]}, "type": "Feature", "name": "Foothill Blvd:106th Av -> MacArthur Blvd:109th Av", "properties": {"origin_onestop_id": "s-9q9nsrjgq7-foothillblvd~106thav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nsqt5c5-macarthurblvd~109thav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.19593, 37.780977], [-122.197399, 37.779935]]}, "type": "Feature", "name": "Monticello Av:Virginia Av -> Monticello Av:Fleming Av", "properties": {"origin_onestop_id": "s-9q9ngmgdhk-monticelloav~virginiaav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngmds44-monticelloav~flemingav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.191261, 37.789058], [-122.189646, 37.789892]]}, "type": "Feature", "name": "High St:Pampas Av -> High St:Steele St", "properties": {"origin_onestop_id": "s-9q9ngrr11q-highst~pampasav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngx2nnf-highst~steelest", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.271546, 37.79442], [-122.276533, 37.795565]]}, "type": "Feature", "name": "Alice St:2nd St -> Broadway:Embarcadero W", "properties": {"origin_onestop_id": "s-9q9p18k86q-alicest~2ndst", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p182zn7-broadway~embarcaderow", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.30015, 37.885444], [-122.302584, 37.887683]]}, "type": "Feature", "name": "Jackson St:Ohlone St -> Buchanan St:Polk St", "properties": {"origin_onestop_id": "s-9q9p8bzdxy-jacksonst~ohlonest", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p8cjzz0-buchananst~polkst", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.268979, 37.895267], [-122.26986, 37.897971]]}, "type": "Feature", "name": "Spruce St:Montrose Rd -> Spruce St:Halkin Ln", "properties": {"origin_onestop_id": "s-9q9p9dw7ym-sprucest~montroserd", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9ejg9v-sprucest~halkinln", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.090184, 37.706577], [-122.089294, 37.703873]]}, "type": "Feature", "name": "Lake Chabot Rd:Christensen Ln -> Lake Chabot Rd:Barlow Dr", "properties": {"origin_onestop_id": "s-9q9ntb28sx-lakechabotrd~christensenln", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmzc2cr-lakechabotrd~barlowdr", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.199308, 37.778461], [-122.197513, 37.779736]]}, "type": "Feature", "name": "Monticello Av:Brookdale Av -> Monticello Av:Fleming Av", "properties": {"origin_onestop_id": "s-9q9ngm35mx-monticelloav~brookdaleav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngmd6zt-monticelloav~flemingav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.271338, 37.803848], [-122.2684, 37.80908]]}, "type": "Feature", "name": "Broadway:13th St (12th St BART Station) -> Thomas L Berkley Way (20th St):Broadway", "properties": {"origin_onestop_id": "s-9q9p1dh9te-14thst~broadway<1006350", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1dyvgg-thomaslberkleyway20thst~broadway", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.195714, 37.776661], [-122.196848, 37.775111]]}, "type": "Feature", "name": "Madera Av:Walnut St -> Kingsland Av:Mavis St", "properties": {"origin_onestop_id": "s-9q9ngm5c12-maderaav~walnutst", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngkdzzp-kingslandav~mavisst", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.201625, 37.776864], [-122.199308, 37.778461]]}, "type": "Feature", "name": "Monticello Av:Fairfax Av -> Monticello Av:Brookdale Av", "properties": {"origin_onestop_id": "s-9q9ngjp6pv-monticelloav~fairfaxav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngm35mx-monticelloav~brookdaleav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.267662, 37.87076], [-122.268319, 37.872541]]}, "type": "Feature", "name": "Shattuck Sq:Center St -> Shattuck Av:University Av", "properties": {"origin_onestop_id": "s-9q9p3wp1qn-centerst~shattuckave<0306210", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3wqzt9-shattuckav~universityav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.266583, 37.876771], [-122.266797, 37.878635]]}, "type": "Feature", "name": "Oxford St:Virginia St -> Oxford St:Cedar St", "properties": {"origin_onestop_id": "s-9q9p3z20nj-oxfordst~virginiast", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3z8511-oxfordst~cedarst", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.185583, 37.787162], [-122.185332, 37.785263]]}, "type": "Feature", "name": "Tompkins Av:Buell St -> Tompkins Av:Daisy St", "properties": {"origin_onestop_id": "s-9q9ngwgnjt-tompkinsav~buellst", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngwe757-tompkinsav~daisyst", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.23379, 37.827638], [-122.233071, 37.826326]]}, "type": "Feature", "name": "Highland Av:Blair Av -> Highland Av:Oakland Av", "properties": {"origin_onestop_id": "s-9q9p4w21fq-highlandav~blairav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4w0d74-highlandav~oaklandav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.196906, 37.786183], [-122.194988, 37.787168]]}, "type": "Feature", "name": "High St:Porter St/MacArthur Blvd -> High St:MacArthur Blvd", "properties": {"origin_onestop_id": "s-9q9ngqfbmx-highst~porterst~macarthurblvd", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngquq4q-highst~macarthurblvd", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.225279, 37.775429], [-122.219769, 37.774589]]}, "type": "Feature", "name": "Fruitvale BART Station -> International Blvd:38th Av", "properties": {"origin_onestop_id": "s-9q9nfsy2v8-fruitvalebartstation<1011330", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nfudkbv-internationalblvd~38thav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.267194, 37.882097], [-122.266128, 37.882797]]}, "type": "Feature", "name": "Oxford St:Rose St -> Spruce St:Rose St", "properties": {"origin_onestop_id": "s-9q9p98pxpy-oxfordst~rosest", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9b2e29-sprucest~rosest", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.110206, 37.702267], [-122.116129, 37.705454]]}, "type": "Feature", "name": "Foothill Blvd:Carolyn St -> Foothill Blvd:Manchester Rd", "properties": {"origin_onestop_id": "s-9q9nmr6p9g-foothillblvd~carolynst", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nt0jdpy-foothillblvd~manchesterrd", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.268853, 37.874571], [-122.266377, 37.873826]]}, "type": "Feature", "name": "Shattuck Av:Delaware St -> Oxford St:Hearst Av", "properties": {"origin_onestop_id": "s-9q9p3wye35-shattuckav~delawarest", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3y8r4b-oxfordst~hearstav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.267895, 37.893368], [-122.268979, 37.895267]]}, "type": "Feature", "name": "Spruce St:Marin Av -> Spruce St:Montrose Rd", "properties": {"origin_onestop_id": "s-9q9p9dr0ze-sprucest~marinav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9dw7ym-sprucest~montroserd", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.179304, 37.718168], [-122.170134, 37.721052]]}, "type": "Feature", "name": "Westgate Pkwy:Davis St -> Davis St:Pierce Av (Douglas Dr)", "properties": {"origin_onestop_id": "s-9q9nedrsrb-westgatepkwy~davisst", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nefymj9-davisst~pierceavdouglasdr", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.252402, 37.849139], [-122.249954, 37.852177]]}, "type": "Feature", "name": "Claremont Av:College Av -> Claremont Av:Eton Ct", "properties": {"origin_onestop_id": "s-9q9p644x0w-claremontav~collegeav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p64u2ct-claremontav~etonct", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.195907, 37.780875], [-122.193475, 37.782381]]}, "type": "Feature", "name": "Monticello Av:Virginia Av -> Birdsall Av:Monticello Av", "properties": {"origin_onestop_id": "s-9q9ngmg9sc-monticelloav~virginiaav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngqj6md-birdsallav~monticelloav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.2458, 37.789595], [-122.244776, 37.79032]]}, "type": "Feature", "name": "14th Av:International Blvd -> 14th Av:E 15th St", "properties": {"origin_onestop_id": "s-9q9nfprk67-14thav~internationalblvd", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nfr80d6-14thav~e15thst", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.270826, 37.899376], [-122.26951, 37.90131]]}, "type": "Feature", "name": "Spruce St:Acacia Walk -> Spruce St:#533", "properties": {"origin_onestop_id": "s-9q9p9em5g7-sprucest~acaciawalk", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9ewp1u-sprucest~533", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.089294, 37.703873], [-122.088309, 37.701325]]}, "type": "Feature", "name": "Lake Chabot Rd:Barlow Dr -> Lake Chabot Rd:Somerset Av", "properties": {"origin_onestop_id": "s-9q9nmzc2cr-lakechabotrd~barlowdr", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmz640h-lakechabotrd~somersetav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.274612, 37.906661], [-122.270361, 37.904381]]}, "type": "Feature", "name": "Trinity Av:Beloit Av -> Spruce St:Grizzley Peak Blvd", "properties": {"origin_onestop_id": "s-9q9p9sdq71-trinityav~beloitav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9sm3n0-sprucest~grizzleypeakblvd", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.184588, 37.707232], [-122.18186, 37.708359]]}, "type": "Feature", "name": "Williams St:Nome St -> Williams St:Doolittle Dr", "properties": {"origin_onestop_id": "s-9q9ne87us9-williamsst~nomest", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ne8tgh7-williamsst~doolittledr", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.279578, 37.882928], [-122.281833, 37.881815]]}, "type": "Feature", "name": "Hopkins St:Colusa Av -> Hopkins St:Monterey Av", "properties": {"origin_onestop_id": "s-9q9p92qsp3-hopkinsst~colusaav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p92jjdf-hopkinsst~montereyav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.265173, 37.899359], [-122.266358, 37.900952]]}, "type": "Feature", "name": "Grizzly Peak Blvd:Keeler Av -> Grizzly Peak Blvd:Creston Rd (North-West Jctn)", "properties": {"origin_onestop_id": "s-9q9p9g35yb-grizzlypeakblvd~keelerav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9g8m53-grizzlypeakblvd~crestonrdnorth~westjctn", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.274897, 37.88915], [-122.272646, 37.889875]]}, "type": "Feature", "name": "Marin Av:Lassen St -> Marin Av:The Circle", "properties": {"origin_onestop_id": "s-9q9p99d0k3-marinav~lassenst", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p99eu8b-marinav~thecircle", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.267332, 37.882117], [-122.267127, 37.880326]]}, "type": "Feature", "name": "Oxford St:Rose St -> Oxford St:Vine St", "properties": {"origin_onestop_id": "s-9q9p98pxkd-oxfordst~rosest", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3xzuck-oxfordst~vinest", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.276711, 37.773611], [-122.277159, 37.775303]]}, "type": "Feature", "name": "Webster St:Santa Clara Av -> Lincoln Av:Webster St", "properties": {"origin_onestop_id": "s-9q9ncs2z4p-websterst~santaclaraav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncsb3pd-lincolnav~websterst", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.266555, 37.886299], [-122.266765, 37.888355]]}, "type": "Feature", "name": "Spruce St:Eunice St -> Spruce St:Los Angeles Av", "properties": {"origin_onestop_id": "s-9q9p9bbpwy-sprucest~eunicest", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9c259v-sprucest~losangelesav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.256447, 37.892599], [-122.258264, 37.894138]]}, "type": "Feature", "name": "Grizzly Peak Blvd:Creston Rd (South-East Jctn) -> Grizzly Peak Blvd:Latham Ln", "properties": {"origin_onestop_id": "s-9q9p9fps6k-grizzlypeakblvd~crestonrdsouth~eastjctn", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9fqjrg-grizzlypeakblvd~lathamln", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.26598, 37.872768], [-122.266277, 37.874507]]}, "type": "Feature", "name": "Oxford St:University Av -> Oxford St:Hearst Av", "properties": {"origin_onestop_id": "s-9q9p3y88u5-oxfordst~universityav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3yb6vr-oxfordst~hearstav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.274719, 37.894409], [-122.275692, 37.897156]]}, "type": "Feature", "name": "Arlington Av:Southampton Av -> Arlington Av:Thousand Oaks Blvd", "properties": {"origin_onestop_id": "s-9q9p9d6qbt-arlingtonav~southamptonav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9dcwcv-arlingtonav~thousandoaksblvd", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.272958, 37.908945], [-122.275406, 37.909166]]}, "type": "Feature", "name": "Purdue Av:Kenyon Av -> Kenyon Av:Trinity Av", "properties": {"origin_onestop_id": "s-9q9p9t5e9e-purdueav~kenyonav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9t1ubs-kenyonav~trinityav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.088516, 37.710322], [-122.091954, 37.710262]]}, "type": "Feature", "name": "Seven Hills Rd:Quail Av -> Seven Hills Rd:Carlwyn Dr", "properties": {"origin_onestop_id": "s-9q9ntbcye3-sevenhillsrd~quailav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nt8zq5q-sevenhillsrd~carlwyndr", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.298866, 37.902354], [-122.303107, 37.902343]]}, "type": "Feature", "name": "El Cerrito Plaza BART Station -> Central Av:San Pablo Av", "properties": {"origin_onestop_id": "s-9q9p95btzg-elcerritobartstation<0500850", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p8gvt5h-centralav~sanpabloav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.274635, 37.893107], [-122.274719, 37.894409]]}, "type": "Feature", "name": "Arlington Av:Mendocino Path -> Arlington Av:Southampton Av", "properties": {"origin_onestop_id": "s-9q9p9d4r67-arlingtonav~mendocinopath", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9d6qbt-arlingtonav~southamptonav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.277111, 37.891164], [-122.274897, 37.88915]]}, "type": "Feature", "name": "The Alameda:Solano Av -> Marin Av:Lassen St", "properties": {"origin_onestop_id": "s-9q9p99bs0b-thealameda~solanoav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p99d0k3-marinav~lassenst", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.248012, 37.788955], [-122.2458, 37.789595]]}, "type": "Feature", "name": "E 12th St:13th Av -> 14th Av:International Blvd", "properties": {"origin_onestop_id": "s-9q9nfpm8wg-e12thst~13thav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nfprk67-14thav~internationalblvd", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.275692, 37.897156], [-122.276559, 37.898824]]}, "type": "Feature", "name": "Arlington Av:Thousand Oaks Blvd -> Arlington Av:San Fernando Av", "properties": {"origin_onestop_id": "s-9q9p9dcwcv-arlingtonav~thousandoaksblvd", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9e2bts-arlingtonav~sanfernandoav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.139684, 37.701683], [-122.135505, 37.701655]]}, "type": "Feature", "name": "Halcyon Dr:Washington Av (Floresta Blvd) -> Halcyon Dr:Oleander St", "properties": {"origin_onestop_id": "s-9q9nkxks5p-halcyondr~washingtonavflorestablvd", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkxrsh3-halcyondr~oleanderst", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.208168, 37.77171], [-122.206384, 37.772541]]}, "type": "Feature", "name": "Bancroft Av:48th Av -> 50th Av:Foothill Blvd", "properties": {"origin_onestop_id": "s-9q9ngh4spm-bancroftav~48thav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nghk0bz-50thav~foothillblvd", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.147587, 37.740291], [-122.144954, 37.739024]]}, "type": "Feature", "name": "MacArthur Blvd:Broadmoor Blvd -> MacArthur Blvd:Mitchell Av", "properties": {"origin_onestop_id": "s-9q9nsqqv4u-macarthurblvd~broadmoorblvd", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nsw0v8r-macarthurblvd~mitchellav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.18186, 37.708359], [-122.178127, 37.709918]]}, "type": "Feature", "name": "Williams St:Doolittle Dr -> Williams St:#2051", "properties": {"origin_onestop_id": "s-9q9ne8tgh7-williamsst~doolittledr", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nebbs5q-williamsst~2051", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.236689, 37.854225], [-122.220394, 37.85484]]}, "type": "Feature", "name": "Tunnel Rd:Roble Rd -> Caldecott Ln:Parkwood Community", "properties": {"origin_onestop_id": "s-9q9p67juyd-tunnelrd~roblerd", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p6g3b6m-caldecottln~parkwoodcommunity", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.150069, 37.741445], [-122.147587, 37.740291]]}, "type": "Feature", "name": "MacArthur Blvd:109th Av -> MacArthur Blvd:Broadmoor Blvd", "properties": {"origin_onestop_id": "s-9q9nsqt5c5-macarthurblvd~109thav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nsqqv4u-macarthurblvd~broadmoorblvd", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.266797, 37.878635], [-122.267005, 37.880365]]}, "type": "Feature", "name": "Oxford St:Cedar St -> Oxford St:Vine St", "properties": {"origin_onestop_id": "s-9q9p3z8511-oxfordst~cedarst", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3xzvh7-oxfordst~vinest", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.192143, 37.77896], [-122.194335, 37.777368]]}, "type": "Feature", "name": "Birdsall Av:Madera Av -> Madera Av:Fleming Av", "properties": {"origin_onestop_id": "s-9q9ngmqqks-birdsallav~maderaav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngmhv1e-maderaav~flemingav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.176482, 37.714379], [-122.179304, 37.718168]]}, "type": "Feature", "name": "Westgate Pkwy:#Walmart -> Westgate Pkwy:Davis St", "properties": {"origin_onestop_id": "s-9q9nec9y1t-westgatepkwy~walmart", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nedrsrb-westgatepkwy~davisst", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.299063, 37.879903], [-122.299981, 37.883455]]}, "type": "Feature", "name": "Gilman St:8th St -> Jackson St:8th St", "properties": {"origin_onestop_id": "s-9q9p3pbd3m-gilmanst~8thst", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p8brz5g-jacksonst~8thst", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.229422, 37.842136], [-122.230695, 37.841029]]}, "type": "Feature", "name": "Florence Av:Broadway Ter -> Florence Av:Alta Rd", "properties": {"origin_onestop_id": "s-9q9p68gq2j-florenceav~broadwayter", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p68drfr-florenceav~altard", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.231888, 37.842702], [-122.229422, 37.842136]]}, "type": "Feature", "name": "Broadway Ter:Hermosa Av -> Florence Av:Broadway Ter", "properties": {"origin_onestop_id": "s-9q9p6913ww-broadwayter~hermosaav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p68gq2j-florenceav~broadwayter", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.09048, 37.707507], [-122.090184, 37.706577]]}, "type": "Feature", "name": "Lake Chabot Rd:Keith Av -> Lake Chabot Rd:Christensen Ln", "properties": {"origin_onestop_id": "s-9q9ntb2qjs-lakechabotrd~keithav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ntb28sx-lakechabotrd~christensenln", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.088309, 37.701325], [-122.087183, 37.697454]]}, "type": "Feature", "name": "Lake Chabot Rd:Somerset Av -> Lake Chabot:Eden Medical Center", "properties": {"origin_onestop_id": "s-9q9nmz640h-lakechabotrd~somersetav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmydgd6-lakechabot~edenmedicalcenter", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.147688, 37.760316], [-122.14409, 37.761544]]}, "type": "Feature", "name": "Mountain Blvd:Sequoyah Rd -> Sequoyah Rd:Turnley Av", "properties": {"origin_onestop_id": "s-9q9nu6ncb9-mountainblvd~sequoyahrd", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nud32uq-sequoyahrd~turnleyav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.242612, 37.791594], [-122.241616, 37.792573]]}, "type": "Feature", "name": "15th Av:E 17th St -> 14th Av:Sonoma Way", "properties": {"origin_onestop_id": "s-9q9nfr9xux-15thav~e17thst", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nfrfmey-14thav~sonomaway", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.280221, 37.908184], [-122.280155, 37.910474]]}, "type": "Feature", "name": "Arlington Av:Sunset Dr -> Arlington Av:Westminster Av", "properties": {"origin_onestop_id": "s-9q9p9kyr0m-arlingtonav~sunsetdr", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9mqk9b-arlingtonav~westminsterav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.291021, 37.881396], [-122.289873, 37.881348]]}, "type": "Feature", "name": "Gilman St:Santa Fe Av -> Gilman St:Curtis St", "properties": {"origin_onestop_id": "s-9q9p90n7hs-gilmanst~santafeav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p90p4z7-gilmanst~curtisst", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.244776, 37.79032], [-122.242612, 37.791594]]}, "type": "Feature", "name": "14th Av:E 15th St -> 15th Av:E 17th St", "properties": {"origin_onestop_id": "s-9q9nfr80d6-14thav~e15thst", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nfr9xux-15thav~e17thst", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.178127, 37.709918], [-122.174627, 37.711846]]}, "type": "Feature", "name": "Williams St:#2051 -> Westgate Pkwy:Williams St", "properties": {"origin_onestop_id": "s-9q9nebbs5q-williamsst~2051", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nec5pkv-westgatepkwy~williamsst", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.141246, 37.762818], [-122.137043, 37.76614]]}, "type": "Feature", "name": "Sequoyah Rd:Oak Hill Rd -> Sequoyah Rd:Heafey Rd", "properties": {"origin_onestop_id": "s-9q9nude2qe-sequoyahrd~oakhillrd", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nuene8w-sequoyahrd~heafeyrd", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.197399, 37.779935], [-122.198763, 37.77897]]}, "type": "Feature", "name": "Monticello Av:Fleming Av -> Monticello Av:Walnut St", "properties": {"origin_onestop_id": "s-9q9ngmds44-monticelloav~flemingav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngm3w6q-monticelloav~walnutst", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.23941, 37.73571], [-122.241388, 37.736177]]}, "type": "Feature", "name": "Mecartney Rd:Island Dr -> Mecartney Rd:Auburn Dr", "properties": {"origin_onestop_id": "s-9q9ndmefrq-mecartneyrd~islanddr", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ndmdt1j-mecartneyrd~auburndr", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.28013, 37.892254], [-122.278761, 37.891297]]}, "type": "Feature", "name": "Colusa Av:Thousand Oaks School -> Solano Av:Colusa Av", "properties": {"origin_onestop_id": "s-9q9p96n66k-colusaav~thousandoaksschool", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p93zkf3-solanoav~colusaav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.192646, 37.788347], [-122.191261, 37.789058]]}, "type": "Feature", "name": "High St:Kansas St -> High St:Pampas Av", "properties": {"origin_onestop_id": "s-9q9ngrnj0f-highst~kansasst", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngrr11q-highst~pampasav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.225458, 37.775518], [-122.219769, 37.774589]]}, "type": "Feature", "name": "Fruitvale BART Station -> International Blvd:38th Av", "properties": {"origin_onestop_id": "s-9q9nfsy2v8-fruitvalebartstation<1011320", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nfudkbv-internationalblvd~38thav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.270178, 37.90712], [-122.271774, 37.906845]]}, "type": "Feature", "name": "Beloit Av:Grizzly Peak Blvd -> Purdue Av:Beloit Av", "properties": {"origin_onestop_id": "s-9q9p9sv8fr-beloitav~grizzlypeakblvd", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9ssrmh-purdueav~beloitav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.255, 37.891648], [-122.256447, 37.892599]]}, "type": "Feature", "name": "Grizzly Peak Blvd:Muir Way -> Grizzly Peak Blvd:Creston Rd (South-East Jctn)", "properties": {"origin_onestop_id": "s-9q9pd1bwu5-grizzlypeakblvd~muirway", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9fps6k-grizzlypeakblvd~crestonrdsouth~eastjctn", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.271774, 37.906845], [-122.272958, 37.908945]]}, "type": "Feature", "name": "Purdue Av:Beloit Av -> Purdue Av:Kenyon Av", "properties": {"origin_onestop_id": "s-9q9p9ssrmh-purdueav~beloitav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9t5e9e-purdueav~kenyonav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.134924, 37.767765], [-122.13494, 37.770196]]}, "type": "Feature", "name": "Sequoyah Rd:Mendenhall Rd -> Sequoyah Rd:Keller Av", "properties": {"origin_onestop_id": "s-9q9nug2j1v-sequoyahrd~mendenhallrd", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nugb53d-sequoyahrd~kellerav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.148578, 37.682337], [-122.150041, 37.681591]]}, "type": "Feature", "name": "Lewelling Blvd:Dewey St -> Lewelling Blvd:Farnsworth St", "properties": {"origin_onestop_id": "s-9q9nk7y5eb-lewellingblvd~deweyst", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nk7tp1t-lewellingblvd~farnsworthst", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.247693, 37.811396], [-122.39343, 37.790109]]}, "type": "Feature", "name": "Lake Park Av:Grand Av -> Transbay Temp Terminal", "properties": {"origin_onestop_id": "s-9q9p45mgq7-lakeparkav~grandav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q8yyz7y5b-sanfranciscoterminal<1410350", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.297414, 37.868157], [-122.306035, 37.866399]]}, "type": "Feature", "name": "University Av:6th St -> University Av:W Frontage Rd", "properties": {"origin_onestop_id": "s-9q9p3j9wp8-universityav~6thst", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p2v77yb-universityav~wfrontagerd", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.273173, 37.873625], [-122.27362, 37.878041]]}, "type": "Feature", "name": "Martin Luther King Jr Way:Hearst Av -> Martin Luther King Jr Way:Cedar St", "properties": {"origin_onestop_id": "s-9q9p3wemue-martinlutherkingjrway~hearstav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3x7pd4-martinlutherkingjrway~cedarst", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.289583, 37.860794], [-122.28816, 37.856294]]}, "type": "Feature", "name": "San Pablo Av:Dwight Way -> San Pablo Av:Grayson St", "properties": {"origin_onestop_id": "s-9q9p3hr7n5-sanpabloav~dwightway", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3782zk-sanpabloav~graysonst", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.194118, 37.773773], [-122.192132, 37.775143]]}, "type": "Feature", "name": "55th Av:Brookdale Av -> 55th Av:Fleming Av", "properties": {"origin_onestop_id": "s-9q9ngksbnt-55thav~brookdaleav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngky2hv-55thav~flemingav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.235211, 37.830237], [-122.234431, 37.828811]]}, "type": "Feature", "name": "Highland Av:Moraga Av -> Highland Av:Park Way", "properties": {"origin_onestop_id": "s-9q9p4qz115-highlandav~moragaav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4qx8g3-highlandav~parkway", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.267595, 37.893017], [-122.267141, 37.891978]]}, "type": "Feature", "name": "Spruce St:Marin Av -> Spruce St:Santa Barbara Rd", "properties": {"origin_onestop_id": "s-9q9p9dpqyd-sprucest~marinav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9dpbc0-sprucest~santabarbarard", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.27394, 37.892003], [-122.274635, 37.893107]]}, "type": "Feature", "name": "Arlington Av:Indian Rock Path -> Arlington Av:Mendocino Path", "properties": {"origin_onestop_id": "s-9q9p9d4bft-arlingtonav~indianrockpath", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9d4r67-arlingtonav~mendocinopath", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.240132, 37.793631], [-122.236882, 37.795191]]}, "type": "Feature", "name": "14th Av:E 21st St -> 14th Av:E 24th St", "properties": {"origin_onestop_id": "s-9q9p4257y7-14thav~e21stst", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p42mufn-14thav~e24thst", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.144954, 37.739024], [-122.143686, 37.738404]]}, "type": "Feature", "name": "MacArthur Blvd:Mitchell Av -> MacArthur Blvd:Lewis Av", "properties": {"origin_onestop_id": "s-9q9nsw0v8r-macarthurblvd~mitchellav", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nsw1dju-macarthurblvd~lewisav", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.298706, 37.902537], [-122.296639, 37.902362]]}, "type": "Feature", "name": "El Cerrito Plaza BART Station -> Fairmount Av:Victoria St", "properties": {"origin_onestop_id": "s-9q9p95btzg-elcerritobartstation<0500890", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p95fm3b-fairmountav~victoriast", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.26976, 37.904313], [-122.270178, 37.90712]]}, "type": "Feature", "name": "Spruce St:Grizzly Peak Blvd -> Beloit Av:Grizzly Peak Blvd", "properties": {"origin_onestop_id": "s-9q9p9smbsh-sprucest~grizzlypeakblvd", "stroke": "#fef0d9", "frequency": 1.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9sv8fr-beloitav~grizzlypeakblvd", "stroke-width": 1, "trips": 3}}, {"geometry": {"type": "LineString", "coordinates": [[-122.154828, 37.680165], [-122.158932, 37.683924]]}, "type": "Feature", "name": "Lewelling Blvd:Sunnyhaven St -> Wicks Blvd:Burkhart Av", "properties": {"origin_onestop_id": "s-9q9nk73wf5-lewellingblvd~sunnyhavenst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkhnsf8-wicksblvd~burkhartav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.293665, 37.858548], [-122.29261, 37.855413]]}, "type": "Feature", "name": "7th St:Parker St -> 7th St:Grayson St", "properties": {"origin_onestop_id": "s-9q9p35uqp0-7thst~parkerst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p35m5z8-7thst~graysonst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.276046, 37.787925], [-122.273287, 37.785994]]}, "type": "Feature", "name": "Marina Village Pkwy:Mariner Square Dr (North Jctn) -> Marina Village Pkwy:#1201", "properties": {"origin_onestop_id": "s-9q9ncx169e-marinavillagepkwy~marinersquaredrnorthjctn", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncwer3g-marinavillagepkwy~1201", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.258146, 37.815799], [-122.25729, 37.816391]]}, "type": "Feature", "name": "Oakland Av:29th St -> Oakland Av:Perkinsway Path", "properties": {"origin_onestop_id": "s-9q9p1unkfx-oaklandav~29thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1uqbqw-oaklandav~perkinswaypath", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.215789, 37.800204], [-122.216647, 37.798659]]}, "type": "Feature", "name": "MacArthur Blvd:Fruitvale Av -> Montana St:Fruitvale Av", "properties": {"origin_onestop_id": "s-9q9p4ckf4b-fruitvaleave~macarthurblvd<9902640", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4ch91s-montanast~fruitvaleav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.270477, 37.851003], [-122.269542, 37.852913]]}, "type": "Feature", "name": "Adeline St:Fairview St -> Adeline St:Ashby BART Station", "properties": {"origin_onestop_id": "s-9q9p3dt656-adelinest~fairviewst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3dyj1n-adelinest~ashbybartstation", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.260561, 37.814059], [-122.262457, 37.811107]]}, "type": "Feature", "name": "Harrison St:West Lake Middle School -> Harrison St:Grand Av", "properties": {"origin_onestop_id": "s-9q9p1gudf7-harrisonst~westlakemiddleschool", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1g71wm-harrisonst~grandav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.288372, 37.818229], [-122.286116, 37.82105]]}, "type": "Feature", "name": "Peralta St:24th St -> Peralta St:28th St", "properties": {"origin_onestop_id": "s-9q9p1k874k-peraltast~24thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1m1gwf-peraltast~28thst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.309363, 37.908913], [-122.312242, 37.909449]]}, "type": "Feature", "name": "Carlson Blvd:Sutter Av -> Carlson Blvd:Santa Clara St", "properties": {"origin_onestop_id": "s-9q9p8v153m-carlsonblvd~sutterav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p8tnyw1-carlsonblvd~santaclarast", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.154205, 37.744694], [-122.158684, 37.749769]]}, "type": "Feature", "name": "MacArthur Blvd:Foothill Blvd -> MacArthur Blvd:98th Av", "properties": {"origin_onestop_id": "s-9q9nsr4nb8-macarthurblvd~foothillblvd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu0nu26-macarthurblvd~98thav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.264053, 37.890737], [-122.262642, 37.889634]]}, "type": "Feature", "name": "Euclid Av:Cragmont Av -> Euclid Av:Bret Harte Path", "properties": {"origin_onestop_id": "s-9q9p9cf191-euclidav~cragmontav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9ce51g-euclidav~brethartepath", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.292315, 37.813288], [-122.288372, 37.818229]]}, "type": "Feature", "name": "Peralta St:17th St -> Peralta St:24th St", "properties": {"origin_onestop_id": "s-9q9p15tqqe-peraltast~17thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1k874k-peraltast~24thst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.298867, 37.90367], [-122.298179, 37.902183]]}, "type": "Feature", "name": "Richmond St:Central Av -> Richmond St:Fairmount Av", "properties": {"origin_onestop_id": "s-9q9p9h0svu-richmondst~centralav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p95chjz-richmondst~fairmountav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.176904, 37.715143], [-122.174877, 37.71143]]}, "type": "Feature", "name": "Westgate Pkwy:#Walmart -> Williams St:Westgate Pkwy", "properties": {"origin_onestop_id": "s-9q9necc6xu-westgatepkwy~walmart", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nec4vp0-williamsst~westgatepkwy", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.162171, 37.723414], [-122.160394, 37.721889]]}, "type": "Feature", "name": "Davis St:San Leandro Blvd -> San Leandro BART Station", "properties": {"origin_onestop_id": "s-9q9ns5k4z4-davisst~sanleandroblvd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns5j9bt-sanleandrobartstation", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.163303, 37.777501], [-122.393061, 37.789878]]}, "type": "Feature", "name": "Monte Vista Driveway:Leona Quarry Dr -> Transbay Temp Terminal", "properties": {"origin_onestop_id": "s-9q9nuj5mus-montevistadriveway~leonaquarrydr", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q8yyz7y5b-sanfranciscoterminal<1410370", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.31535, 37.823222], [-122.282974, 37.801161]]}, "type": "Feature", "name": "I-80 Fwy:Toll Plaza (East Bound) -> 5th St:Market St", "properties": {"origin_onestop_id": "s-9q9p0ts8jz-i~80fwy~tollplazaeastbound", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p13kr8p-5thst~marketst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.269009, 37.855491], [-122.27005, 37.852597]]}, "type": "Feature", "name": "Adeline St:Russell St -> Adeline St:Ashby BART Station", "properties": {"origin_onestop_id": "s-9q9p3eqkjw-adelinest~russellst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3dvem7-adelinest~ashbybartstation", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.266482, 37.829354], [-122.264674, 37.829094]]}, "type": "Feature", "name": "40th St:MacArthur BART Station -> 40th St:Telegraph Av", "properties": {"origin_onestop_id": "s-9q9p1y87bq-40thst~macarthurbartstation", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1y9d6w-40thst~telegraphav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.124512, 37.698266], [-122.120437, 37.70026]]}, "type": "Feature", "name": "Coelho Dr:Mooney Av -> 159th Av:E 14th St", "properties": {"origin_onestop_id": "s-9q9nkyz8kd-coelhodr~mooneyav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmp4egt-159thav~e14thst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.315824, 37.91028], [-122.318364, 37.911597]]}, "type": "Feature", "name": "Carlson Blvd:Tehama Av -> Carlson Blvd:Imperial Av", "properties": {"origin_onestop_id": "s-9q9p8tk76s-carlsonblvd~tehamaav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p8td7p9-carlsonblvd~imperialav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.274268, 37.863141], [-122.276508, 37.862852]]}, "type": "Feature", "name": "Dwight Way:Grant St -> Dwight Way:Mc Gee Av", "properties": {"origin_onestop_id": "s-9q9p3sf8g1-dwightway~grantst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3s8zng-dwightway~mcgeeav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.255595, 37.817534], [-122.253523, 37.819046]]}, "type": "Feature", "name": "Oakland Av:Pearl St -> Oakland Av:MacArthur Blvd", "properties": {"origin_onestop_id": "s-9q9p4h2pn5-oaklandav~pearlst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4h9xym-oaklandav~macarthurblvd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.25013, 37.862746], [-122.250266, 37.864539]]}, "type": "Feature", "name": "Warring St:Derby St -> Warring St:Parker St", "properties": {"origin_onestop_id": "s-9q9p6hsnmx-warringst~derbyst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p6jh0fm-warringst~parkerst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.227824, 37.77322], [-122.225206, 37.775229]]}, "type": "Feature", "name": "Fruitvale Av:E 9th St -> Fruitvale BART Station", "properties": {"origin_onestop_id": "s-9q9nfskkvq-fruitvaleav~e9thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nfsy2v8-fruitvalebartstation<1011310", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.249976, 37.852445], [-122.251829, 37.850162]]}, "type": "Feature", "name": "Claremont Av:Eton Av -> Claremont Av:Mystic St", "properties": {"origin_onestop_id": "s-9q9p64u63p-claremontav~etonav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p646vjv-claremontav~mysticst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.267307, 37.808793], [-122.269089, 37.807922]]}, "type": "Feature", "name": "Thomas L Berkley Way (20th St):Franklin St -> Broadway:19th St (19th St BART Station)", "properties": {"origin_onestop_id": "s-9q9p1dzsjm-thomaslberkleyway20thst~franklinst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1dwr5e-broadway~19thst19thstbartstation", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.238238, 37.855268], [-122.244115, 37.858143]]}, "type": "Feature", "name": "Tunnel Rd:Bridge Rd -> Ashby Av:Domingo Av", "properties": {"origin_onestop_id": "s-9q9p67kfft-tunnelrd~bridgerd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p67be9t-ashbyav~domingoav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.238783, 37.751879], [-122.240782, 37.753268]]}, "type": "Feature", "name": "Otis Dr:High St -> Otis Dr:Mound St", "properties": {"origin_onestop_id": "s-9q9nf2s2tu-otisdr~highst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nf2fbxr-otisdr~moundst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.235377, 37.75524], [-122.237443, 37.753385]]}, "type": "Feature", "name": "High St:San Jose Av -> High St:Fillmore St", "properties": {"origin_onestop_id": "s-9q9nf3nujq-highst~sanjoseav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nf2v3mj-highst~fillmorest", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.270027, 37.863579], [-122.267368, 37.86511]]}, "type": "Feature", "name": "Dwight Way:Milvia St -> Shattuck Av:Haste St", "properties": {"origin_onestop_id": "s-9q9p3svemf-dwightway~milviast", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3tps7b-shattuckav~hastest", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.158269, 37.682702], [-122.154279, 37.68008]]}, "type": "Feature", "name": "Wicks Blvd:Mission Bay Complex -> Lewelling Blvd:Calgary St", "properties": {"origin_onestop_id": "s-9q9nk5zjdh-wicksblvd~missionbaycomplex", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nk73yqu-lewellingblvd~calgaryst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.262462, 37.889915], [-122.263703, 37.890763]]}, "type": "Feature", "name": "Euclid Av:Bret Harte Path -> Euclid Av:Cragmont Av", "properties": {"origin_onestop_id": "s-9q9p9cehy0-euclidav~brethartepath", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9cf39n-euclidav~cragmontav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.27881, 37.853377], [-122.281718, 37.853218]]}, "type": "Feature", "name": "Ashby Av:Sacramento St -> Ashby Av:Acton St", "properties": {"origin_onestop_id": "s-9q9p36zrch-ashbyav~sacramentost", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p36vnvr-ashbyav~actonst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.274505, 37.862978], [-122.271746, 37.863355]]}, "type": "Feature", "name": "Dwight Way:Grant St -> Dwight Way:Martin Luther King Jr Way", "properties": {"origin_onestop_id": "s-9q9p3sdrvd-dwightway~grantst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3su6jb-dwightway~martinlutherkingjrway", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.119222, 37.693094], [-122.119043, 37.689766]]}, "type": "Feature", "name": "Delano St:Ashland Av -> Ashland Av:Crespi Pl", "properties": {"origin_onestop_id": "s-9q9nmjg6pv-delanost~ashlandav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmj5wu1-ashlandav~crespipl", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.227155, 37.822014], [-122.228516, 37.822176]]}, "type": "Feature", "name": "Sheridan Av:Caperton Av -> Sheridan Av:Sierra Av", "properties": {"origin_onestop_id": "s-9q9p4tkchy-sheridanav~capertonav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4t7fjh-sheridanav~sierraav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.179722, 37.695031], [-122.175181, 37.696925]]}, "type": "Feature", "name": "Bermuda Way:Acapulco Rd -> Bermuda Way:Doolittle Dr", "properties": {"origin_onestop_id": "s-9q9n7wpmqp-bermudaway~acapulcord", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9n7yd8xb-bermudaway~doolittledr", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.212851, 37.817729], [-122.213993, 37.816965]]}, "type": "Feature", "name": "Estates Dr:Hampton Rd -> Inverleith Ter:Estates Dr", "properties": {"origin_onestop_id": "s-9q9p4ux24p-estatesdr~hamptonrd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4uq7z9-inverleithter~estatesdr", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.26045, 37.876208], [-122.260245, 37.875327]]}, "type": "Feature", "name": "Euclid Av:Ridge Rd -> Euclid Av:Hearst Av", "properties": {"origin_onestop_id": "s-9q9p3zhsvh-euclidav~ridgerd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3yuzcb-euclidav~hearstav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.264909, 37.892677], [-122.263767, 37.893963]]}, "type": "Feature", "name": "Euclid Av:Easter Way -> Euclid Av:Regal Rd", "properties": {"origin_onestop_id": "s-9q9p9f1kv4-euclidav~easterway", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9f6hrd-euclidav~regalrd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.244517, 37.755348], [-122.241165, 37.753353]]}, "type": "Feature", "name": "Otis Dr:Broadway -> Otis Dr:Mound St", "properties": {"origin_onestop_id": "s-9q9nf30kb6-otisdr~broadway", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nf2f9nr-otisdr~moundst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.286885, 37.806495], [-122.284177, 37.805885]]}, "type": "Feature", "name": "10th St:Adeline St -> 10th St:Filbert St", "properties": {"origin_onestop_id": "s-9q9p163qv1-10thst~adelinest", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1677hp-10thst~filbertst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.181749, 37.697558], [-122.189003, 37.699236]]}, "type": "Feature", "name": "Aurora Dr:Fairway Dr -> Monarch Bay Dr:Mulford Point Dr", "properties": {"origin_onestop_id": "s-9q9n7wtuny-auroradr~fairwaydr", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9n7wbtvy-monarchbaydr~mulfordpointdr", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.26773, 37.870194], [-122.266549, 37.871293]]}, "type": "Feature", "name": "Shattuck Sq:Center St (Berkeley BART Station) -> Addison St:Oxford St", "properties": {"origin_onestop_id": "s-9q9p3wp1qn-centerst~shattuckave<0304840", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3y20qb-addisonst~oxfordst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.252703, 37.854163], [-122.252886, 37.856032]]}, "type": "Feature", "name": "College Av:Woolsey St -> College Av:Webster St", "properties": {"origin_onestop_id": "s-9q9p654k3x-collegeav~woolseyst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p656pm7-collegeav~websterst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.253198, 37.758749], [-122.249165, 37.756778]]}, "type": "Feature", "name": "Alameda South Shore Center:Kohl's -> Alameda South Shore Center At Park St", "properties": {"origin_onestop_id": "s-9q9nf1cbwh-alamedasouthshorecenter~kohls", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nf1kv5v-alamedasouthshorecenteratparkst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.260832, 37.878556], [-122.261108, 37.879592]]}, "type": "Feature", "name": "Euclid Av:Hilgard Av -> Euclid Av:Cedar St", "properties": {"origin_onestop_id": "s-9q9p3zs6s4-euclidav~hilgardav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3zu0te-euclidav~cedarst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.276448, 37.795124], [-122.271312, 37.794013]]}, "type": "Feature", "name": "Embarcadero W:Broadway -> 2nd St:Oakland Amtrak", "properties": {"origin_onestop_id": "s-9q9p183h83-embarcaderow~broadway", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p18hwpf-2ndst~oaklandamtrak", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.16589, 37.692781], [-122.167555, 37.693201]]}, "type": "Feature", "name": "Farallon Dr:#2014 (North Face Complex) -> Farallon Dr:Griffith St", "properties": {"origin_onestop_id": "s-9q9nkjc827-farallondr~2014northfacecomplex", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkjb6c9-farallondr~griffithst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.244937, 37.85839], [-122.245086, 37.859029]]}, "type": "Feature", "name": "Claremont Av:Ashby Av -> Russell St:Claremont Blvd", "properties": {"origin_onestop_id": "s-9q9p65zvne-claremontav~ashbyav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p6hpbg4-russellst~claremontblvd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.185874, 37.69584], [-122.18185, 37.697399]]}, "type": "Feature", "name": "Fairway Dr:Monarch Bay Dr -> Aurora Dr:Fairway Dr", "properties": {"origin_onestop_id": "s-9q9n7w6fnv-fairwaydr~monarchbaydr", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9n7wtgk8-auroradr~fairwaydr", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.164147, 37.722925], [-122.16583, 37.722372]]}, "type": "Feature", "name": "Davis St:Alvarado St -> Davis St:Orchard Av", "properties": {"origin_onestop_id": "s-9q9ns54zcn-davisst~alvaradost", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns51s9z-davisst~orchardav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.263926, 37.893977], [-122.265045, 37.892464]]}, "type": "Feature", "name": "Euclid Av:Regal Rd -> Euclid Av:Easter Way", "properties": {"origin_onestop_id": "s-9q9p9f6hkj-euclidav~regalrd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9f179g-euclidav~easterway", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.25197, 37.847032], [-122.252175, 37.849246]]}, "type": "Feature", "name": "College Av:Chabot Rd -> College Av:Claremont Av", "properties": {"origin_onestop_id": "s-9q9p61fffw-collegeav~chabotrd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p644xvf-collegeav~claremontav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.261606, 37.883115], [-122.262655, 37.884385]]}, "type": "Feature", "name": "Euclid Av:Rose Walk -> Euclid Av:Bayview Pl", "properties": {"origin_onestop_id": "s-9q9p9b7v4h-euclidav~rosewalk", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9beh99-euclidav~bayviewpl", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.171902, 37.693793], [-122.177121, 37.696264]]}, "type": "Feature", "name": "Farallon Dr:Catalina St -> Bermuda Av:Santiago Rd", "properties": {"origin_onestop_id": "s-9q9n7vvnk2-farallondr~catalinast", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9n7y3kds-bermudaav~santiagord", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.118908, 37.690371], [-122.119267, 37.693222]]}, "type": "Feature", "name": "Ashland Av:Galway Dr -> Delano St:Ashland Av", "properties": {"origin_onestop_id": "s-9q9nmj7dr4-ashlandav~galwaydr", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmjg6yv-delanost~ashlandav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.273062, 37.801131], [-122.272624, 37.803168]]}, "type": "Feature", "name": "Broadway:9th St -> 12th St:Broadway (12th St BART Station)", "properties": {"origin_onestop_id": "s-9q9p197rx1-broadway~9thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p19u1u7-12thst~broadway<1000430", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.119104, 37.687869], [-122.116962, 37.686104]]}, "type": "Feature", "name": "Ashland Av:San Lorenzo High School -> Meekland Av:E Lewelling Blvd", "properties": {"origin_onestop_id": "s-9q9nmhgedx-ashlandav~sanlorenzohighschool", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmht1kw-meeklandav~elewellingblvd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.261095, 37.879198], [-122.26073, 37.877541]]}, "type": "Feature", "name": "Euclid Av:Cedar St -> Euclid Av:Virginia St", "properties": {"origin_onestop_id": "s-9q9p3zsnq4-euclidav~cedarst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3zkkwt-euclidav~virginiast", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.265099, 37.899189], [-122.262289, 37.898122]]}, "type": "Feature", "name": "Grizzly Peak Blvd:Keeler Av -> Grizzly Peak Blvd:Sunset Ln", "properties": {"origin_onestop_id": "s-9q9p9g36b8-grizzlypeakblvd~keelerav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9g5kd1-grizzlypeakblvd~sunsetln", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.255358, 37.856817], [-122.25712, 37.856586]]}, "type": "Feature", "name": "Ashby Av:Hillegass Av -> Ashby Av:Regent St", "properties": {"origin_onestop_id": "s-9q9p6587gw-ashbyav~hillegassav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3gx4de-ashbyav~regentst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.301928, 37.909637], [-122.300682, 37.907546]]}, "type": "Feature", "name": "Richmond St:Stockton Av -> Richmond St:Eureka Av", "properties": {"origin_onestop_id": "s-9q9p8vnrws-richmondst~stocktonav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p8uz77w-richmondst~eurekaav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.146585, 37.724433], [-122.148644, 37.727066]]}, "type": "Feature", "name": "Bancroft Av:Dolores Av -> Estudillo Av:Bancroft Av", "properties": {"origin_onestop_id": "s-9q9ns7x8f2-bancroftav~doloresav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nskn046-estudilloav~bancroftav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.138585, 37.735872], [-122.144948, 37.739193]]}, "type": "Feature", "name": "Marlow Dr:Revere Av -> MacArthur Blvd:Victoria Av", "properties": {"origin_onestop_id": "s-9q9nstt7ks-marlowdr~revereav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nsw0y8r-macarthurblvd~victoriaav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.135505, 37.701655], [-122.130141, 37.701334]]}, "type": "Feature", "name": "Halcyon Dr:Oleander St -> Hesperian Blvd:Halcyon Dr", "properties": {"origin_onestop_id": "s-9q9nkxrsh3-halcyondr~oleanderst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkz7d1q-hesperianblvd~halcyondr", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.115515, 37.705381], [-122.117061, 37.704424]]}, "type": "Feature", "name": "Manchester Rd:Foothill Blvd -> 159th Av:Liberty St", "properties": {"origin_onestop_id": "s-9q9nt0n1y2-manchesterrd~foothillblvd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmpvh4n-159thav~libertyst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.25044, 37.820601], [-122.248535, 37.821168]]}, "type": "Feature", "name": "Oakland Av:Bayo Vista Av -> Oakland Av:Monte Vista Av", "properties": {"origin_onestop_id": "s-9q9p4j5byr-oaklandav~bayovistaav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4jjk68-oaklandav~montevistaav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.163187, 37.723019], [-122.162171, 37.723414]]}, "type": "Feature", "name": "Davis St:Alvarado St -> Davis St:San Leandro Blvd", "properties": {"origin_onestop_id": "s-9q9ns572x2-davisst~alvaradost", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns5k4z4-davisst~sanleandroblvd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.26749, 37.900605], [-122.266589, 37.897245]]}, "type": "Feature", "name": "Euclid Av:Acacia Av -> Euclid Av:Poplar St", "properties": {"origin_onestop_id": "s-9q9p9exe0b-euclidav~acaciaav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9fbpmy-euclidav~poplarst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.266204, 37.872173], [-122.267627, 37.870917]]}, "type": "Feature", "name": "Oxford St:University Av -> Shattuck Av:Center St", "properties": {"origin_onestop_id": "s-9q9p3y2mqu-oxfordst~universityav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3wp1qn-centerst~shattuckave<0306220", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.276664, 37.862716], [-122.274505, 37.862978]]}, "type": "Feature", "name": "Dwight Way:Mc Gee Av -> Dwight Way:Grant St", "properties": {"origin_onestop_id": "s-9q9p3s8y71-dwightway~mcgeeav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3sdrvd-dwightway~grantst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.267421, 37.764905], [-122.264968, 37.764]]}, "type": "Feature", "name": "Otis Dr:Larchmont Isle -> Otis Dr:Heather Walk", "properties": {"origin_onestop_id": "s-9q9ncdzsd8-otisdr~larchmontisle", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncf9r5z-otisdr~heatherwalk", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.271746, 37.863355], [-122.270027, 37.863579]]}, "type": "Feature", "name": "Dwight Way:Martin Luther King Jr Way -> Dwight Way:Milvia St", "properties": {"origin_onestop_id": "s-9q9p3su6jb-dwightway~martinlutherkingjrway", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3svemf-dwightway~milviast", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.125117, 37.696332], [-122.129992, 37.707166]]}, "type": "Feature", "name": "Bay Fair BART Station -> Bancroft Av:Peters St", "properties": {"origin_onestop_id": "s-9q9nkyqyex-bayfairbartstation<1500590", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nsb7shv-bancroftav~petersst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.252767, 37.758682], [-122.254834, 37.759534]]}, "type": "Feature", "name": "Alameda South Shore Center:Kohl's -> Whitehall Pl:Willow St", "properties": {"origin_onestop_id": "s-9q9nf1f220-alamedasouthshorecenter~kohls", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nf1btpz-whitehallpl~willowst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.245837, 37.760801], [-122.247974, 37.757162]]}, "type": "Feature", "name": "Park St:San Jose Av -> Otis Dr:Park St", "properties": {"origin_onestop_id": "s-9q9nf4pk9e-parkst~sanjoseav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nf1t3th-parkst~otisdr<0102490", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.287012, 37.80665], [-122.289566, 37.806874]]}, "type": "Feature", "name": "10th St:Adeline St -> Union St:10th St", "properties": {"origin_onestop_id": "s-9q9p163rdn-10thst~adelinest", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p14x3n8-unionst~10thst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.304617, 37.902182], [-122.306056, 37.904289]]}, "type": "Feature", "name": "Carlson Blvd:Central Av -> Carlson Blvd:San Jose Av", "properties": {"origin_onestop_id": "s-9q9p8gukpy-carlsonblvd~centralav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p8u72qr-carlsonblvd~sanjoseav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.263768, 37.759281], [-122.260725, 37.75815]]}, "type": "Feature", "name": "Shoreline Dr:Grand St -> Shoreline Dr:Kitty Hawk Rd", "properties": {"origin_onestop_id": "s-9q9nccf5z8-shorelinedr~grandst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nccsmnt-shorelinedr~kittyhawkrd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.116653, 37.68465], [-122.117394, 37.686732]]}, "type": "Feature", "name": "Meekland Av:Paseo Grande -> E Lewelling Blvd:Meekland Av", "properties": {"origin_onestop_id": "s-9q9nmhm2gx-meeklandav~paseogrande", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmhsv4k-elewellingblvd~meeklandav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.264287, 37.855516], [-122.262173, 37.85579]]}, "type": "Feature", "name": "Ashby Av:Wheeler St -> Ashby Av:Deakin St", "properties": {"origin_onestop_id": "s-9q9p3g3u7e-ashbyav~wheelerst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3g7muy-ashbyav~deakinst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.158932, 37.683924], [-122.161064, 37.686793]]}, "type": "Feature", "name": "Wicks Blvd:Burkhart Av -> Wicks Blvd:Liberty Way (Stenzel Park)", "properties": {"origin_onestop_id": "s-9q9nkhnsf8-wicksblvd~burkhartav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkhtj2z-wicksblvd~libertywaystenzelpark", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.232216, 37.767139], [-122.229394, 37.769826]]}, "type": "Feature", "name": "Fernside Blvd:Versailles Av -> Fruitvale Av:Alameda Av", "properties": {"origin_onestop_id": "s-9q9nfe31wb-fernsideblvd~versaillesav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nfeg30t-fruitvaleav~alamedaav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.189007, 37.699041], [-122.185874, 37.69584]]}, "type": "Feature", "name": "Monarch Bay Dr:Mulford Point Dr -> Fairway Dr:Monarch Bay Dr", "properties": {"origin_onestop_id": "s-9q9n7wbsvf-monarchbaydr~mulfordpointdr", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9n7w6fnv-fairwaydr~monarchbaydr", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.266887, 37.897656], [-122.26766, 37.900977]]}, "type": "Feature", "name": "Euclid Av:Poplar St -> Euclid Av:Acacia Av", "properties": {"origin_onestop_id": "s-9q9p9epcz5-euclidav~poplarst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9exmjn-euclidav~acaciaav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.249165, 37.756778], [-122.248133, 37.757783]]}, "type": "Feature", "name": "Alameda South Shore Center At Park St -> Park St:Otis Dr", "properties": {"origin_onestop_id": "s-9q9nf1kv5v-alamedasouthshorecenteratparkst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nf1t3th-parkst~otisdr<0102820", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.277906, 37.871052], [-122.281627, 37.870586]]}, "type": "Feature", "name": "University Av:Mc Gee Av -> University Av:Sacramento St", "properties": {"origin_onestop_id": "s-9q9p3qpyy7-universityav~mcgeeav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3qjhps-universityav~sacramentost", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.221163, 37.818286], [-122.219433, 37.819448]]}, "type": "Feature", "name": "Hampton Rd:Saint James Dr -> Hampton Rd:Glen Alpine Rd", "properties": {"origin_onestop_id": "s-9q9p4u972r-hamptonrd~saintjamesdr", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4ufd2b-hamptonrd~glenalpinerd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.251411, 37.865983], [-122.250391, 37.864243]]}, "type": "Feature", "name": "Piedmont Av:Dwight Way -> Warring St:Parker St", "properties": {"origin_onestop_id": "s-9q9p6j71rd-piedmontav~dwightway", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p6hgzpq-warringst~parkerst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.29449, 37.837433], [-122.293641, 37.833348]]}, "type": "Feature", "name": "Christie St:Lyons Restaurant -> Shellmond St:Bay St", "properties": {"origin_onestop_id": "s-9q9p305g5b-christiest~lyonsrestaurant", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1pk7px-shellmondst~bayst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.255019, 37.891532], [-122.252576, 37.890497]]}, "type": "Feature", "name": "Grizzly Peak Blvd:Stevenson Av -> Grizzly Peak Blvd:Shasta Rd", "properties": {"origin_onestop_id": "s-9q9pd1bw5t-grizzlypeakblvd~stevensonav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9pd1f2hs-grizzlypeakblvd~shastard", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.130748, 37.678013], [-122.127106, 37.679152]]}, "type": "Feature", "name": "Paseo Grande:Via Media -> Paseo Grande:Hesperian Blvd", "properties": {"origin_onestop_id": "s-9q9nkg5476-paseogrande~viamedia", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkgmbbp-paseogrande~hesperianblvd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.302929, 37.902316], [-122.299013, 37.902888]]}, "type": "Feature", "name": "Central Av:San Pablo Av -> El Cerrito Plaza BART Station", "properties": {"origin_onestop_id": "s-9q9p8gvszp-centralav~sanpabloav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p95btzg-elcerritobartstation<0500880", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.138585, 37.735872], [-122.149875, 37.753767]]}, "type": "Feature", "name": "Marlow Dr:Revere Av -> Mountain Blvd:Golf Links Rd", "properties": {"origin_onestop_id": "s-9q9nstt7ks-marlowdr~revereav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu2v5ts-mountainblvd~golflinksrd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.186459, 37.704417], [-122.185525, 37.702695]]}, "type": "Feature", "name": "Aurora Dr:W Av 130 -> Marina Blvd:Aurora Dr", "properties": {"origin_onestop_id": "s-9q9n7xfs1h-auroradr~wav130", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9n7xe4ng-marinablvd~auroradr", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.239174, 37.743631], [-122.236394, 37.745455]]}, "type": "Feature", "name": "Robert Davey Jr Dr:Packet Landing Rd -> Island Dr:Bayfarm Park & Ride Lot", "properties": {"origin_onestop_id": "s-9q9ndrh0sf-robertdaveyjrdr~packetlandingrd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ndrq5jw-islanddr~bayfarmpark~ridelot", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.296225, 37.808405], [-122.295039, 37.809877]]}, "type": "Feature", "name": "Peralta St:9th St -> Peralta St:12th St", "properties": {"origin_onestop_id": "s-9q9p14f9gm-peraltast~9thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1556rp-peraltast~12thst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.285951, 37.776281], [-122.282041, 37.77523]]}, "type": "Feature", "name": "Pacific Av:4th St -> Lincoln Av:5th St", "properties": {"origin_onestop_id": "s-9q9nckfnfc-pacificav~4thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nckubtv-lincolnav~5thst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.283123, 37.830483], [-122.285383, 37.829524]]}, "type": "Feature", "name": "40th St:Harlan St -> Hollis St:40th St (Home Depot)", "properties": {"origin_onestop_id": "s-9q9p1qu4s9-40thst~harlanst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1qdsbn-hollisst~40thsthomedepot", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.233855, 37.756448], [-122.232547, 37.757632]]}, "type": "Feature", "name": "High St:Encinal Av -> High St:Sterling Av", "properties": {"origin_onestop_id": "s-9q9nf92528-highst~encinalav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nf98fph-highst~sterlingav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.268619, 37.855424], [-122.267728, 37.857758]]}, "type": "Feature", "name": "Adeline St:Ashby Av -> Adeline St:Oregon St", "properties": {"origin_onestop_id": "s-9q9p3eqeyd-adelinest~ashbyav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3ez37m-adelinest~oregonst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.25712, 37.856586], [-122.260145, 37.856207]]}, "type": "Feature", "name": "Ashby Av:Regent St -> Ashby Av:Telegraph Av", "properties": {"origin_onestop_id": "s-9q9p3gx4de-ashbyav~regentst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3gsbkh-ashbyav~telegraphav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.243791, 37.822604], [-122.240392, 37.823614]]}, "type": "Feature", "name": "Oakland Av:Grand Av -> Oakland Av:Fairview Av", "properties": {"origin_onestop_id": "s-9q9p4m2u9h-oaklandav~grandav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4me682-oaklandav~fairviewav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.262289, 37.898122], [-122.261209, 37.896729]]}, "type": "Feature", "name": "Grizzly Peak Blvd:Sunset Ln -> Grizzly Peak Blvd:Forest Ln", "properties": {"origin_onestop_id": "s-9q9p9g5kd1-grizzlypeakblvd~sunsetln", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9fuh7q-grizzlypeakblvd~forestln", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.163303, 37.692665], [-122.162993, 37.690593]]}, "type": "Feature", "name": "Wicks Blvd:Farallon Dr -> Wicks Blvd:Manor Blvd", "properties": {"origin_onestop_id": "s-9q9nkjersw-wicksblvd~farallondr", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkj7eeg-wicksblvd~manorblvd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.294399, 37.785], [-122.291369, 37.779022]]}, "type": "Feature", "name": "W Midway Av:Orion St -> Main St:Atlantic Av", "properties": {"origin_onestop_id": "s-9q9ncnectf-wmidwayav~orionst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncjqnu8-mainst~atlanticav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.174148, 37.769279], [-122.174041, 37.769193]]}, "type": "Feature", "name": "Foothill Blvd:Eastmont Transit Center -> Eastmont Transit Center", "properties": {"origin_onestop_id": "s-9q9nggetbp-foothillblvd~eastmonttransitcenter", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngget6x-eastmonttransitcenter", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.274889, 37.804172], [-122.277255, 37.80396]]}, "type": "Feature", "name": "12th:Clay St -> Mlk Jr Way:11th St", "properties": {"origin_onestop_id": "s-9q9p1d41k8-12th~clayst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p19cnk8-11thst~jeffersonst<1030880", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.177121, 37.696264], [-122.179997, 37.695059]]}, "type": "Feature", "name": "Bermuda Av:Santiago Rd -> Bermuda Av:Aurora Dr", "properties": {"origin_onestop_id": "s-9q9n7y3kds-bermudaav~santiagord", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9n7wpjxs-bermudaav~auroradr", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.265725, 37.808435], [-122.267307, 37.808793]]}, "type": "Feature", "name": "T.L. Berkley Way (20th St) :Webster St (Kaiser Ct) -> Thomas L Berkley Way (20th St):Franklin St", "properties": {"origin_onestop_id": "s-9q9p1fbf45-tlberkleyway20thst~websterstkaiserct", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1dzsjm-thomaslberkleyway20thst~franklinst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.286247, 37.85217], [-122.283454, 37.852739]]}, "type": "Feature", "name": "Ashby Av:San Pablo Av -> Ashby Av:Mabel St", "properties": {"origin_onestop_id": "s-9q9p36cbgg-ashbyav~sanpabloav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p36guhv-ashbyav~mabelst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.264234, 37.874585], [-122.266377, 37.873826]]}, "type": "Feature", "name": "Hearst Av:Arch St -> Oxford St:Hearst Av", "properties": {"origin_onestop_id": "s-9q9p3ycgky-hearstav~archst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3y8r4b-oxfordst~hearstav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.293484, 37.858603], [-122.293678, 37.860206]]}, "type": "Feature", "name": "7th St:Parker St -> Dwight Way:7th St", "properties": {"origin_onestop_id": "s-9q9p35uw77-7thst~parkerst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3hhrwv-dwightway~7thst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.217518, 37.818573], [-122.214917, 37.818219]]}, "type": "Feature", "name": "Hampton Rd:Lexford Rd -> Hampton Rd:Sandringham Rd", "properties": {"origin_onestop_id": "s-9q9p4uevjk-hamptonrd~lexfordrd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4utg44-hamptonrd~sandringhamrd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.267791, 37.859036], [-122.268495, 37.85708]]}, "type": "Feature", "name": "Adeline St:Ward St -> Adeline St:Oregon St", "properties": {"origin_onestop_id": "s-9q9p3sp2cg-adelinest~wardst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3ewv3x-adelinest~oregonst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.270609, 37.854256], [-122.268676, 37.854812]]}, "type": "Feature", "name": "Ashby Av:Martin Luther King Jr Way(Ashby BART Sa.) -> Ashby Av:Adeline St (Ashby BART Station)", "properties": {"origin_onestop_id": "s-9q9p3ejm02-ashbyav~martinlutherkingjrwayashbybartsa", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3eq8m2-ashbyav~adelinestashbybartstation", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.262808, 37.884397], [-122.261757, 37.883117]]}, "type": "Feature", "name": "Euclid Av:Bayview Pl -> Euclid Av:Codornices Park", "properties": {"origin_onestop_id": "s-9q9p9bduw5-euclidav~bayviewpl", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9b7tns-euclidav~codornicespark", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.255749, 37.758264], [-122.254771, 37.759409]]}, "type": "Feature", "name": "Willow St:Franciscan Way -> Whitehall Pl:Willow St", "properties": {"origin_onestop_id": "s-9q9nf18jfd-willowst~franciscanway", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nf1bu92-whitehallpl~willowst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.249976, 37.852445], [-122.252619, 37.849147]]}, "type": "Feature", "name": "Claremont Av:Eton Av -> Claremont Av:College Av", "properties": {"origin_onestop_id": "s-9q9p64u63p-claremontav~etonav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p644r78-claremontav~collegeav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.152072, 37.726122], [-122.153721, 37.725681]]}, "type": "Feature", "name": "Estudillo Av:Santa Rosa St -> Estudillo Av:#300 (San Leandro Community Library)", "properties": {"origin_onestop_id": "s-9q9ns7gdd6-estudilloav~santarosast", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns7f25b-estudilloav~300sanleandrocommunitylibrary", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.245107, 37.742432], [-122.242717, 37.744242]]}, "type": "Feature", "name": "Robert Davey Jr Dr:Oyster Pond Rd -> Robert Davey Jr Dr:Puddingstone Rd", "properties": {"origin_onestop_id": "s-9q9ndnzcde-robertdaveyjrdr~oysterpondrd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ndr1s4h-robertdaveyjrdr~puddingstonerd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.252886, 37.856032], [-122.255358, 37.856817]]}, "type": "Feature", "name": "College Av:Webster St -> Ashby Av:Hillegass Av", "properties": {"origin_onestop_id": "s-9q9p656pm7-collegeav~websterst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p6587gw-ashbyav~hillegassav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.235995, 37.853842], [-122.238238, 37.855268]]}, "type": "Feature", "name": "Tunnel Rd:Vicente Rd -> Tunnel Rd:Bridge Rd", "properties": {"origin_onestop_id": "s-9q9p67n6wg-tunnelrd~vicenterd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p67kfft-tunnelrd~bridgerd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.17215, 37.799551], [-122.170114, 37.798672]]}, "type": "Feature", "name": "Skyline Blvd:Rishell Rd -> Skyline Blvd:Redwood Rd", "properties": {"origin_onestop_id": "s-9q9p5chyqe-skylineblvd~rishellrd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5cn3np-skylineblvd~redwoodrd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.245345, 37.858197], [-122.246924, 37.856225]]}, "type": "Feature", "name": "Claremont Av:Ashby Av -> Claremont Av:Webster St", "properties": {"origin_onestop_id": "s-9q9p65zevp-claremontav~ashbyav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p65w82p-claremontav~websterst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.280972, 37.853162], [-122.27923, 37.853207]]}, "type": "Feature", "name": "Ashby Av:Acton St -> Ashby Av:Sacramento St", "properties": {"origin_onestop_id": "s-9q9p36vwwu-ashbyav~actonst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p36yyzm-ashbyav~sacramentost", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.25196, 37.738463], [-122.251191, 37.740519]]}, "type": "Feature", "name": "Aughinbaugh Way:Mecartney Rd -> Aughinbaugh Way:The Lagoon", "properties": {"origin_onestop_id": "s-9q9ndn4f6z-aughinbaughway~mecartneyrd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ndn7qky-aughinbaughway~thelagoon", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.178919, 37.717976], [-122.176904, 37.715143]]}, "type": "Feature", "name": "Westgate Pkwy:Davis St -> Westgate Pkwy:#Walmart", "properties": {"origin_onestop_id": "s-9q9nef250u-westgatepkwy~davisst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9necc6xu-westgatepkwy~walmart", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.254771, 37.759409], [-122.253198, 37.758749]]}, "type": "Feature", "name": "Whitehall Pl:Willow St -> Alameda South Shore Center:Kohl's", "properties": {"origin_onestop_id": "s-9q9nf1bu92-whitehallpl~willowst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nf1cbwh-alamedasouthshorecenter~kohls", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.219459, 37.819517], [-122.222649, 37.817786]]}, "type": "Feature", "name": "Hampton Rd:Glen Alpine Rd -> Hampton Rd:Seaview Av", "properties": {"origin_onestop_id": "s-9q9p4ufd8h-hamptonrd~glenalpinerd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4u80tf-hamptonrd~seaviewav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.284177, 37.805885], [-122.28159, 37.805266]]}, "type": "Feature", "name": "10th St:Filbert St -> 10th St:Market St", "properties": {"origin_onestop_id": "s-9q9p1677hp-10thst~filbertst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p16jr8k-10thst~marketst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.262642, 37.889634], [-122.261356, 37.887704]]}, "type": "Feature", "name": "Euclid Av:Bret Harte Path -> Euclid Av:#1152", "properties": {"origin_onestop_id": "s-9q9p9ce51g-euclidav~brethartepath", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9c5zzg-euclidav~1152", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.237082, 37.744998], [-122.239594, 37.744281]]}, "type": "Feature", "name": "Island Dr: Park & Ride -> Robert Davey Jr Dr:Packet Landing Rd", "properties": {"origin_onestop_id": "s-9q9ndrm8t9-islanddr~park~ride", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ndr5u75-robertdaveyjrdr~packetlandingrd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.265001, 37.895055], [-122.263926, 37.893977]]}, "type": "Feature", "name": "Euclid Av:Marin Av -> Euclid Av:Regal Rd", "properties": {"origin_onestop_id": "s-9q9p9f96dy-euclidav~marinav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9f6hkj-euclidav~regalrd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.268542, 37.872369], [-122.272872, 37.8717]]}, "type": "Feature", "name": "Shattuck Av:University Av -> University Av:Martin Luther King Jr Way", "properties": {"origin_onestop_id": "s-9q9p3wqy83-shattuckav~universityav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3w7des-universityav~martinlutherkingjrway", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.214592, 37.81818], [-122.217303, 37.81873]]}, "type": "Feature", "name": "Hampton Rd:Sandringham Rd -> Hampton Rd:Lexford Rd", "properties": {"origin_onestop_id": "s-9q9p4uw4ce-hamptonrd~sandringhamrd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4usn46-hamptonrd~lexfordrd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.232547, 37.757632], [-122.2311, 37.758946]]}, "type": "Feature", "name": "High St:Sterling Av -> High St:Santa Clara Av", "properties": {"origin_onestop_id": "s-9q9nf98fph-highst~sterlingav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nf9f1bc-highst~santaclaraav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.251191, 37.740519], [-122.250125, 37.741713]]}, "type": "Feature", "name": "Aughinbaugh Way:The Lagoon -> Aughinbaugh Way:Kofman Pkwy", "properties": {"origin_onestop_id": "s-9q9ndn7qky-aughinbaughway~thelagoon", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ndnsjmt-aughinbaughway~kofmanpkwy", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.136646, 37.678994], [-122.134372, 37.67682]]}, "type": "Feature", "name": "Via Alamitos:Grant Av -> Paseo Grande:Via Olinda", "properties": {"origin_onestop_id": "s-9q9nkeqb1c-viaalamitos~grantav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkfb7qu-paseogrande~viaolinda", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.225077, 37.818879], [-122.225639, 37.821069]]}, "type": "Feature", "name": "Hampton Rd:Crocker Av -> Crocker Av:Lincoln Av", "properties": {"origin_onestop_id": "s-9q9p4swqvq-hamptonrd~crockerav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4tn58n-crockerav~lincolnav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.272992, 37.768814], [-122.271104, 37.766071]]}, "type": "Feature", "name": "8th St:Portola Av -> Otis Dr:Westline Dr", "properties": {"origin_onestop_id": "s-9q9nceee2c-8thst~portolaav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncehgkc-otisdr~westlinedr", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.165279, 37.692737], [-122.163303, 37.692665]]}, "type": "Feature", "name": "Farallon Dr:#2012 -> Wicks Blvd:Farallon Dr", "properties": {"origin_onestop_id": "s-9q9nkjcbne-farallondr~2012", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkjersw-wicksblvd~farallondr", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.245055, 37.755766], [-122.248133, 37.757783]]}, "type": "Feature", "name": "Otis Dr:Broadway -> Park St:Otis Dr", "properties": {"origin_onestop_id": "s-9q9nf1pz7b-otisdr~broadway", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nf1t3th-parkst~otisdr<0102820", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.243027, 37.830072], [-122.246403, 37.829412]]}, "type": "Feature", "name": "Moraga Av:Ramona Av -> Pleasant Valley Av:Pleasant Valley Ct", "properties": {"origin_onestop_id": "s-9q9p4qc25h-moragaav~ramonaav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4nwuk3-pleasantvalleyav~pleasantvalleyct", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.234607, 37.796013], [-122.232974, 37.7966]]}, "type": "Feature", "name": "14th Av:E 26th St -> 14th Av:Vallecito Pl", "properties": {"origin_onestop_id": "s-9q9p42x3xp-14thav~e26thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p488tjk-14thav~vallecitopl", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.265217, 37.874229], [-122.264081, 37.874432]]}, "type": "Feature", "name": "Hearst Av:Spruce St -> Hearst Av:Arch St", "properties": {"origin_onestop_id": "s-9q9p3yc1mu-hearstav~sprucest", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3yf483-hearstav~archst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.119311, 37.701537], [-122.121197, 37.699342]]}, "type": "Feature", "name": "159th Av:Mateo St -> 159th Av:E 14th St", "properties": {"origin_onestop_id": "s-9q9nmp77mg-159thav~mateost", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmnfn9f-159thav~e14thst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.27005, 37.852597], [-122.270848, 37.850792]]}, "type": "Feature", "name": "Adeline St:Ashby BART Station -> Adeline St:Fairview St", "properties": {"origin_onestop_id": "s-9q9p3dvem7-adelinest~ashbybartstation", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3dt0fe-adelinest~fairviewst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.232553, 37.825845], [-122.233661, 37.827878]]}, "type": "Feature", "name": "Highland Av:Craig Av -> Highland Av:Pala Av", "properties": {"origin_onestop_id": "s-9q9p4tbzx0-highlandav~craigav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4w25m7-highlandav~palaav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.282041, 37.77523], [-122.279484, 37.775166]]}, "type": "Feature", "name": "Lincoln Av:5th St -> Lincoln Av:6th St", "properties": {"origin_onestop_id": "s-9q9nckubtv-lincolnav~5thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nckyb39-lincolnav~6thst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.297213, 37.88441], [-122.295773, 37.879897]]}, "type": "Feature", "name": "San Pablo Av:Monroe St -> San Pablo Av:Gilman St", "properties": {"origin_onestop_id": "s-9q9p909usm-sanpabloav~monroest", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3pffmu-sanpabloav~gilmanst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.282974, 37.801161], [-122.276501, 37.798624]]}, "type": "Feature", "name": "5th St:Market St -> 5th St:Washington St", "properties": {"origin_onestop_id": "s-9q9p13kr8p-5thst~marketst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p190bzn-5thst~washingtonst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.266833, 37.855346], [-122.26847, 37.855121]]}, "type": "Feature", "name": "Ashby Av:Shattuck Av -> Ashby Av:Adeline St (Ashby BART Station)", "properties": {"origin_onestop_id": "s-9q9p3g2527-ashbyav~shattuckav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3eqf44-ashbyav~adelinestashbybartstation", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.249285, 37.885762], [-122.248462, 37.884802]]}, "type": "Feature", "name": "Grizzly Peak Blvd:Hill Rd -> Grizzly Peak Blvd:Avenida Dr", "properties": {"origin_onestop_id": "s-9q9pd0uu91-grizzlypeakblvd~hillrd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9pd0tquq-grizzlypeakblvd~avenidadr", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.250391, 37.864243], [-122.250205, 37.862456]]}, "type": "Feature", "name": "Warring St:Parker St -> Warring St:Derby St", "properties": {"origin_onestop_id": "s-9q9p6hgzpq-warringst~parkerst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p6hshgc-warringst~derbyst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.244115, 37.858143], [-122.246924, 37.856225]]}, "type": "Feature", "name": "Ashby Av:Domingo Av -> Claremont Av:Webster St", "properties": {"origin_onestop_id": "s-9q9p67be9t-ashbyav~domingoav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p65w82p-claremontav~websterst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.241165, 37.753353], [-122.239189, 37.751927]]}, "type": "Feature", "name": "Otis Dr:Mound St -> Otis Dr:High St", "properties": {"origin_onestop_id": "s-9q9nf2f9nr-otisdr~moundst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nf2s0um-otisdr~highst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.296334, 37.808536], [-122.297441, 37.807155]]}, "type": "Feature", "name": "Peralta St:10th St -> Peralta St:8th St (School)", "properties": {"origin_onestop_id": "s-9q9p14fd8v-peraltast~10thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p149dxh-peraltast~8thstschool", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.284342, 37.823562], [-122.286441, 37.820914]]}, "type": "Feature", "name": "Peralta St:Louise St -> Peralta St:28th St", "properties": {"origin_onestop_id": "s-9q9p1me60q-peraltast~louisest", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1m1dz3-peraltast~28thst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.230802, 37.797386], [-122.22929, 37.798794]]}, "type": "Feature", "name": "14th Av:19th Av -> 14th Av:E 31st St", "properties": {"origin_onestop_id": "s-9q9p48f1xz-14thav~19thav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4953gj-14thav~e31stst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.25261, 37.82662], [-122.257217, 37.82793]]}, "type": "Feature", "name": "41st St:Piedmont Av -> 40th St:Broadway", "properties": {"origin_onestop_id": "s-9q9p4n4k59-41stst~piedmontav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1yr58m-40thst~broadway", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.268319, 37.872541], [-122.267939, 37.873868]]}, "type": "Feature", "name": "Shattuck Av:University Av -> Hearst Av:Shattuck Av", "properties": {"origin_onestop_id": "s-9q9p3wqzt9-shattuckav~universityav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3wxp17-hearstave~shattuckave<9902350", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.291369, 37.779022], [-122.290768, 37.776413]]}, "type": "Feature", "name": "Main St:Atlantic Av -> Pacific Av:Central Av", "properties": {"origin_onestop_id": "s-9q9ncjqnu8-mainst~atlanticav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nchyxd9-pacificav~centralav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.271312, 37.794013], [-122.271546, 37.79442]]}, "type": "Feature", "name": "2nd St:Oakland Amtrak -> Alice St:2nd St", "properties": {"origin_onestop_id": "s-9q9p18hwpf-2ndst~oaklandamtrak", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p18k86q-alicest~2ndst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.238688, 37.830632], [-122.243027, 37.830072]]}, "type": "Feature", "name": "Moraga Av:Monticello Av -> Moraga Av:Ramona Av", "properties": {"origin_onestop_id": "s-9q9p4que2h-moragaav~monticelloav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4qc25h-moragaav~ramonaav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.269542, 37.852913], [-122.268619, 37.855424]]}, "type": "Feature", "name": "Adeline St:Ashby BART Station -> Adeline St:Ashby Av", "properties": {"origin_onestop_id": "s-9q9p3dyj1n-adelinest~ashbybartstation", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3eqeyd-adelinest~ashbyav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.250762, 37.865846], [-122.251816, 37.868058]]}, "type": "Feature", "name": "Piedmont Cr:Dwight Way -> Piedmont Av:Channing Way", "properties": {"origin_onestop_id": "s-9q9p6j78wc-piedmontcr~dwightway", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p6jdvqj-piedmontav~channingway", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.261757, 37.883117], [-122.261517, 37.881227]]}, "type": "Feature", "name": "Euclid Av:Codornices Park -> Euclid Av:Vine Ln", "properties": {"origin_onestop_id": "s-9q9p9b7tns-euclidav~codornicespark", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9b5fhh-euclidav~vineln", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.267728, 37.857758], [-122.267328, 37.85894]]}, "type": "Feature", "name": "Adeline St:Oregon St -> Adeline St:Ward St", "properties": {"origin_onestop_id": "s-9q9p3ez37m-adelinest~oregonst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3sp8kc-adelinest~wardst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.252175, 37.849246], [-122.25101, 37.850868]]}, "type": "Feature", "name": "College Av:Claremont Av -> Claremont Av:Mystic St", "properties": {"origin_onestop_id": "s-9q9p644xvf-collegeav~claremontav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p64e92c-claremontav~mysticst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.179997, 37.695059], [-122.181749, 37.697558]]}, "type": "Feature", "name": "Bermuda Av:Aurora Dr -> Aurora Dr:Fairway Dr", "properties": {"origin_onestop_id": "s-9q9n7wpjxs-bermudaav~auroradr", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9n7wtuny-auroradr~fairwaydr", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.267812, 37.866468], [-122.26793, 37.864914]]}, "type": "Feature", "name": "Shattuck Av:Durant Av -> Haste St:Shattuck Av", "properties": {"origin_onestop_id": "s-9q9p3trk1m-shattuckav~durantav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3tp5ne-hastest~shattuckav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.262987, 37.761634], [-122.263768, 37.759281]]}, "type": "Feature", "name": "Grand St:#433 (Opp. Wood Middle School) -> Shoreline Dr:Grand St", "properties": {"origin_onestop_id": "s-9q9ncf6c3y-grandst~433oppwoodmiddleschool", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nccf5z8-shorelinedr~grandst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.255774, 37.818358], [-122.257124, 37.817515]]}, "type": "Feature", "name": "Harrison St:Pearl St -> Harrison St:Frisbie St", "properties": {"origin_onestop_id": "s-9q9p4h85cu-harrisonst~pearlst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1urnfx-harrisonst~frisbiest", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.168461, 37.721732], [-122.170361, 37.721259]]}, "type": "Feature", "name": "Davis St:Preda St -> Davis St:Douglas Dr", "properties": {"origin_onestop_id": "s-9q9negp9h8-davisst~predast", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nefyq22-davisst~douglasdr", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.21672, 37.835167], [-122.214203, 37.832405]]}, "type": "Feature", "name": "Mountain Blvd:#1475 -> Mountain Blvd:Thornhill Dr", "properties": {"origin_onestop_id": "s-9q9p4zstb4-mountainblvd~1475", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4znmdx-mountainblvd~thornhilldr", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.21672, 37.835167], [-122.214726, 37.832633]]}, "type": "Feature", "name": "Mountain Blvd:#1475 -> Thornhill Dr:Mountain Blvd", "properties": {"origin_onestop_id": "s-9q9p4zstb4-mountainblvd~1475", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4zjzn3-thornhilldr~mountainblvd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.154279, 37.68008], [-122.151029, 37.685737]]}, "type": "Feature", "name": "Lewelling Blvd:Calgary St -> Farnsworth St:Burkhart Av", "properties": {"origin_onestop_id": "s-9q9nk73yqu-lewellingblvd~calgaryst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkkkr6d-farnsworthst~burkhartav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.247471, 37.742817], [-122.245107, 37.742432]]}, "type": "Feature", "name": "Robert Davey Jr Dr:Channing Way -> Robert Davey Jr Dr:Oyster Pond Rd", "properties": {"origin_onestop_id": "s-9q9ndny5g7-robertdaveyjrdr~channingway", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ndnzcde-robertdaveyjrdr~oysterpondrd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.167555, 37.693201], [-122.171902, 37.693793]]}, "type": "Feature", "name": "Farallon Dr:Griffith St -> Farallon Dr:Catalina St", "properties": {"origin_onestop_id": "s-9q9nkjb6c9-farallondr~griffithst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9n7vvnk2-farallondr~catalinast", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.252647, 37.869607], [-122.255129, 37.869294]]}, "type": "Feature", "name": "Bancroft Way:Piedmont Av -> Bancroft Way:College Av", "properties": {"origin_onestop_id": "s-9q9p6jfq6y-bancroftway~piedmontav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p6jbs9h-bancroftway~collegeav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.276508, 37.862852], [-122.278566, 37.862586]]}, "type": "Feature", "name": "Dwight Way:Mc Gee Av -> Dwight Way:California St", "properties": {"origin_onestop_id": "s-9q9p3s8zng-dwightway~mcgeeav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3kxmwc-dwightway~californiast", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.292147, 37.860614], [-122.293981, 37.859594]]}, "type": "Feature", "name": "Dwight Way:9th St -> 7th St:Cutter Way", "properties": {"origin_onestop_id": "s-9q9p3hmd43-dwightway~9thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3hhhpe-7thst~cutterway", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.277502, 37.788309], [-122.276046, 37.787925]]}, "type": "Feature", "name": "Marina Village Pkwy:Mariner Sq Loop -> Marina Village Pkwy:Mariner Square Dr (North Jctn)", "properties": {"origin_onestop_id": "s-9q9ncx0hze-marinavillagepkwy~marinersqloop", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncx169e-marinavillagepkwy~marinersquaredrnorthjctn", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.251475, 37.887124], [-122.249285, 37.885762]]}, "type": "Feature", "name": "Grizzly Peak Blvd:Arcade Av -> Grizzly Peak Blvd:Hill Rd", "properties": {"origin_onestop_id": "s-9q9pd15hqp-grizzlypeakblvd~arcadeav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9pd0uu91-grizzlypeakblvd~hillrd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.213993, 37.816965], [-122.214592, 37.81818]]}, "type": "Feature", "name": "Inverleith Ter:Estates Dr -> Hampton Rd:Sandringham Rd", "properties": {"origin_onestop_id": "s-9q9p4uq7z9-inverleithter~estatesdr", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4uw4ce-hamptonrd~sandringhamrd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.167623, 37.76598], [-122.174413, 37.769185]]}, "type": "Feature", "name": "MacArthur Blvd:Parker Av -> Eastmont Transit Center", "properties": {"origin_onestop_id": "s-9q9nu506b0-macarthurblvd~parkerav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nggem3y-eastmonttransitcenter", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.27689, 37.773067], [-122.276397, 37.771353]]}, "type": "Feature", "name": "Webster St:Santa Clara Av -> Central Av:Webster St", "properties": {"origin_onestop_id": "s-9q9ncs2sjf-websterst~santaclaraav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncs1416-centralav~websterst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.260145, 37.856207], [-122.26262, 37.855868]]}, "type": "Feature", "name": "Ashby Av:Telegraph Av -> Ashby Av:Deakin St", "properties": {"origin_onestop_id": "s-9q9p3gsbkh-ashbyav~telegraphav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3g7n6m-ashbyav~deakinst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.300682, 37.907546], [-122.299811, 37.905724]]}, "type": "Feature", "name": "Richmond St:Eureka Av -> Richmond St:Lincoln Av", "properties": {"origin_onestop_id": "s-9q9p8uz77w-richmondst~eurekaav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p8uxbzg-richmondst~lincolnav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.236829, 37.830788], [-122.238688, 37.830632]]}, "type": "Feature", "name": "Moraga Av:Estrella Av -> Moraga Av:Monticello Av", "properties": {"origin_onestop_id": "s-9q9p4qvu76-moragaav~estrellaav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4que2h-moragaav~monticelloav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.25729, 37.816391], [-122.255595, 37.817534]]}, "type": "Feature", "name": "Oakland Av:Perkinsway Path -> Oakland Av:Pearl St", "properties": {"origin_onestop_id": "s-9q9p1uqbqw-oaklandav~perkinswaypath", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4h2pn5-oaklandav~pearlst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.297191, 37.807177], [-122.296225, 37.808405]]}, "type": "Feature", "name": "Peralta St:8th St -> Peralta St:9th St", "properties": {"origin_onestop_id": "s-9q9p149fub-peraltast~8thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p14f9gm-peraltast~9thst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.264836, 37.855588], [-122.266833, 37.855346]]}, "type": "Feature", "name": "Ashby Av:Wheeler St -> Ashby Av:Shattuck Av", "properties": {"origin_onestop_id": "s-9q9p3g3kyc-ashbyav~wheelerst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3g2527-ashbyav~shattuckav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.16583, 37.722372], [-122.168461, 37.721732]]}, "type": "Feature", "name": "Davis St:Orchard Av -> Davis St:Preda St", "properties": {"origin_onestop_id": "s-9q9ns51s9z-davisst~orchardav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9negp9h8-davisst~predast", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.293992, 37.903183], [-122.294277, 37.904809]]}, "type": "Feature", "name": "Fairmount Av:Ashbury Av -> Ashbury Av:Central Av", "properties": {"origin_onestop_id": "s-9q9p9hh4p3-fairmountav~ashburyav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9hk58b-ashburyav~centralav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.278491, 37.862475], [-122.276664, 37.862716]]}, "type": "Feature", "name": "Dwight Way:California St -> Dwight Way:Mc Gee Av", "properties": {"origin_onestop_id": "s-9q9p3kxsbs-dwightway~californiast", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3s8y71-dwightway~mcgeeav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.130627, 37.702012], [-122.136115, 37.70191]]}, "type": "Feature", "name": "Halcyon Dr:Hesperian Blvd -> Halcyon Dr:Oleander St", "properties": {"origin_onestop_id": "s-9q9nkz7nnh-halcyondr~hesperianblvd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkxrjw1-halcyondr~oleanderst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.246403, 37.829412], [-122.247708, 37.830072]]}, "type": "Feature", "name": "Pleasant Valley Av:Pleasant Valley Ct -> Piedmont Av:Pleasant Valley Av", "properties": {"origin_onestop_id": "s-9q9p4nwuk3-pleasantvalleyav~pleasantvalleyct", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4nvbju-piedmontav~pleasantvalleyav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.183029, 37.708039], [-122.185481, 37.707016]]}, "type": "Feature", "name": "Williams St:Doolittle Dr -> Williams St:Nome St", "properties": {"origin_onestop_id": "s-9q9ne8t11p-williamsst~doolittledr", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ne875rc-williamsst~nomest", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.157549, 37.724727], [-122.157394, 37.725433]]}, "type": "Feature", "name": "Hays St:W Estudillo Av -> Davis St:E 14th St", "properties": {"origin_onestop_id": "s-9q9ns5xd6y-haysst~westudilloav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns5xww6-davisst~e14thst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.229626, 37.729327], [-122.231695, 37.730989]]}, "type": "Feature", "name": "Maitland Dr:Harbor Bay Pkwy -> Maitland Dr:Fitchburg Av", "properties": {"origin_onestop_id": "s-9q9nds7j72-maitlanddr~harborbaypkwy", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nds9wgn-maitlanddr~fitchburgav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.188776, 37.701342], [-122.189007, 37.699041]]}, "type": "Feature", "name": "Marina Blvd:Neptune Dr -> Monarch Bay Dr:Mulford Point Dr", "properties": {"origin_onestop_id": "s-9q9n7x2f5p-marinablvd~neptunedr", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9n7wbsvf-monarchbaydr~mulfordpointdr", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.247209, 37.821547], [-122.243791, 37.822604]]}, "type": "Feature", "name": "Oakland Av:Olive Av -> Oakland Av:Grand Av", "properties": {"origin_onestop_id": "s-9q9p4jnq3x-oaklandav~oliveav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4m2u9h-oaklandav~grandav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.148644, 37.727066], [-122.150072, 37.726677]]}, "type": "Feature", "name": "Estudillo Av:Bancroft Av -> Estudillo Av:Santa Maria St", "properties": {"origin_onestop_id": "s-9q9nskn046-estudilloav~bancroftav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns7vjc4-estudilloav~santamariast", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.26766, 37.900977], [-122.267278, 37.901813]]}, "type": "Feature", "name": "Euclid Av:Acacia Av -> Euclid Av:Grizzly Peak Blvd", "properties": {"origin_onestop_id": "s-9q9p9exmjn-euclidav~acaciaav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9ezdjf-euclidav~grizzlypeakblvd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.250205, 37.862456], [-122.247281, 37.862424]]}, "type": "Feature", "name": "Warring St:Derby St -> Derby St:Claremont Blvd", "properties": {"origin_onestop_id": "s-9q9p6hshgc-warringst~derbyst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p6hwhxg-derbyst~claremontblvd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.247281, 37.862424], [-122.245636, 37.860505]]}, "type": "Feature", "name": "Derby St:Claremont Blvd -> Claremont Blvd:Garber St", "properties": {"origin_onestop_id": "s-9q9p6hwhxg-derbyst~claremontblvd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p6hr3qj-claremontblvd~garberst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.274908, 37.84409], [-122.272847, 37.845978]]}, "type": "Feature", "name": "Market St:59th St -> Stanford Av:King St", "properties": {"origin_onestop_id": "s-9q9p3961u1-marketst~59thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p39esu1-stanfordav~kingst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.286078, 37.861609], [-122.28779, 37.861391]]}, "type": "Feature", "name": "Dwight Way:Bonar St -> Dwight Way:Curtis St", "properties": {"origin_onestop_id": "s-9q9p3k3zzg-dwightway~bonarst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3k2wxf-dwightway~curtisst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.281627, 37.870586], [-122.287418, 37.869836]]}, "type": "Feature", "name": "University Av:Sacramento St -> University Av:Bonar St", "properties": {"origin_onestop_id": "s-9q9p3qjhps-universityav~sacramentost", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3mcpb9-universityav~bonarst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.162548, 37.689046], [-122.160634, 37.685852]]}, "type": "Feature", "name": "Wicks Blvd:Sea Cloud Av -> Wicks Blvd:Liberty Way (Opp. Stenzel Park)", "properties": {"origin_onestop_id": "s-9q9nkj5fw7-wicksblvd~seacloudav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkhmrfz-wicksblvd~libertywayoppstenzelpark", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.271091, 37.849115], [-122.270477, 37.851003]]}, "type": "Feature", "name": "Adeline St:Alcatraz Av -> Adeline St:Fairview St", "properties": {"origin_onestop_id": "s-9q9p3dhzj4-adelinest~alcatrazav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3dt656-adelinest~fairviewst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.134372, 37.67682], [-122.130748, 37.678013]]}, "type": "Feature", "name": "Paseo Grande:Via Olinda -> Paseo Grande:Via Media", "properties": {"origin_onestop_id": "s-9q9nkfb7qu-paseogrande~viaolinda", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkg5476-paseogrande~viamedia", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.276388, 37.783169], [-122.269908, 37.799051]]}, "type": "Feature", "name": "Webster St:Stargell Av -> Harrison St:8th St", "properties": {"origin_onestop_id": "s-9q9ncw1nct-websterst~stargellav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p19jg2t-harrisonst~8thst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.262173, 37.85579], [-122.259359, 37.85616]]}, "type": "Feature", "name": "Ashby Av:Deakin St -> Ashby Av:Telegraph Av", "properties": {"origin_onestop_id": "s-9q9p3g7muy-ashbyav~deakinst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3gt2n7-ashbyav~telegraphav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.276536, 37.777642], [-122.276121, 37.779599]]}, "type": "Feature", "name": "Webster St:Buena Vista Av -> Atlantic Av:Webster St", "properties": {"origin_onestop_id": "s-9q9nct0ywn-websterst~buenavistaav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nct94pg-atlanticav~websterst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.264483, 37.895091], [-122.265755, 37.896308]]}, "type": "Feature", "name": "Euclid Av:Marin Av -> Euclid Av:Rock Ln", "properties": {"origin_onestop_id": "s-9q9p9f9dzh-euclidav~marinav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9fbccr-euclidav~rockln", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.266851, 37.888452], [-122.266644, 37.885881]]}, "type": "Feature", "name": "Spruce St:Los Angeles Av -> Spruce St:Eunice St", "properties": {"origin_onestop_id": "s-9q9p99rupz-sprucest~losangelesav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9bbjk8-sprucest~eunicest", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.147413, 37.754762], [-122.149875, 37.753767]]}, "type": "Feature", "name": "Golf Links Rd:Anza Av -> Mountain Blvd:Golf Links Rd", "properties": {"origin_onestop_id": "s-9q9nu3ncqv-golflinksrd~anzaav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu2v5ts-mountainblvd~golflinksrd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.264968, 37.764], [-122.262297, 37.763009]]}, "type": "Feature", "name": "Otis Dr:Heather Walk -> Otis Dr:Grand St", "properties": {"origin_onestop_id": "s-9q9ncf9r5z-otisdr~heatherwalk", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncfe33z-otisdr~grandst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.245777, 37.860993], [-122.247097, 37.862529]]}, "type": "Feature", "name": "Belrose Av:Garber St -> Derby St:Claremont Blvd", "properties": {"origin_onestop_id": "s-9q9p6hrk6b-belroseav~garberst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p6hwmhn-derbyst~claremontblvd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.161064, 37.686793], [-122.162068, 37.688384]]}, "type": "Feature", "name": "Wicks Blvd:Liberty Way (Stenzel Park) -> Wicks Blvd:Sea Cloud Av", "properties": {"origin_onestop_id": "s-9q9nkhtj2z-wicksblvd~libertywaystenzelpark", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkhuq9r-wicksblvd~seacloudav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.252145, 37.81994], [-122.25044, 37.820601]]}, "type": "Feature", "name": "Oakland Av:Moss Av -> Oakland Av:Bayo Vista Av", "properties": {"origin_onestop_id": "s-9q9p4hftne-oaklandav~mossav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4j5byr-oaklandav~bayovistaav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.185525, 37.702695], [-122.188776, 37.701342]]}, "type": "Feature", "name": "Marina Blvd:Aurora Dr -> Marina Blvd:Neptune Dr", "properties": {"origin_onestop_id": "s-9q9n7xe4ng-marinablvd~auroradr", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9n7x2f5p-marinablvd~neptunedr", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.262504, 37.886293], [-122.262808, 37.884397]]}, "type": "Feature", "name": "Euclid Av:Eunice St -> Euclid Av:Bayview Pl", "properties": {"origin_onestop_id": "s-9q9p9bgpth-euclidav~eunicest", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9bduw5-euclidav~bayviewpl", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.263703, 37.890763], [-122.264909, 37.892677]]}, "type": "Feature", "name": "Euclid Av:Cragmont Av -> Euclid Av:Easter Way", "properties": {"origin_onestop_id": "s-9q9p9cf39n-euclidav~cragmontav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9f1kv4-euclidav~easterway", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.225639, 37.821069], [-122.227155, 37.822014]]}, "type": "Feature", "name": "Crocker Av:Lincoln Av -> Sheridan Av:Caperton Av", "properties": {"origin_onestop_id": "s-9q9p4tn58n-crockerav~lincolnav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4tkchy-sheridanav~capertonav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.273177, 37.799014], [-122.278177, 37.785082]]}, "type": "Feature", "name": "7th St:Franklin St -> Mariner Sq Loop:Stargell Av", "properties": {"origin_onestop_id": "s-9q9p1957hq-7thst~franklinst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncqxdpc-marinersqloop~stargellav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.116962, 37.686104], [-122.116875, 37.684893]]}, "type": "Feature", "name": "Meekland Av:E Lewelling Blvd -> Meekland Av:Paseo Grande", "properties": {"origin_onestop_id": "s-9q9nmht1kw-meeklandav~elewellingblvd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmhm4qt-meeklandav~paseogrande", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.218465, 37.819141], [-122.219459, 37.819517]]}, "type": "Feature", "name": "Hampton Rd:La Salle Av -> Hampton Rd:Glen Alpine Rd", "properties": {"origin_onestop_id": "s-9q9p4ug0rq-hamptonrd~lasalleav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4ufd8h-hamptonrd~glenalpinerd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.237443, 37.753385], [-122.238907, 37.752049]]}, "type": "Feature", "name": "High St:Fillmore St -> High St:Otis Dr", "properties": {"origin_onestop_id": "s-9q9nf2v3mj-highst~fillmorest", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nf2s3eh-highst~otisdr", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.273303, 37.845968], [-122.275026, 37.843523]]}, "type": "Feature", "name": "Stanford Av:King St -> Market St:59th St", "properties": {"origin_onestop_id": "s-9q9p39ek9x-stanfordav~kingst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p394n3r-marketst~59thst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.172958, 37.720525], [-122.178919, 37.717976]]}, "type": "Feature", "name": "Davis St:Frederick Rd -> Westgate Pkwy:Davis St", "properties": {"origin_onestop_id": "s-9q9nefu3gx-davisst~frederickrd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nef250u-westgatepkwy~davisst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.291221, 37.779655], [-122.293855, 37.785058]]}, "type": "Feature", "name": "Main St:Ralph Appezzato Memorial Pkwy -> W Midway Av:Orion St", "properties": {"origin_onestop_id": "s-9q9ncjw62n-mainst~ralphappezzatomemorialpkwy", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncns3ft-wmidwayav~orionst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.258308, 37.894061], [-122.256431, 37.892478]]}, "type": "Feature", "name": "Grizzly Peak Blvd:Latham Ln -> Grizzly Peak Blvd:Creston Rd (South-East Jctn)", "properties": {"origin_onestop_id": "s-9q9p9fqhyu-grizzlypeakblvd~lathamln", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9fpedt-grizzlypeakblvd~crestonrdsouth~eastjctn", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.245171, 37.73707], [-122.249034, 37.737566]]}, "type": "Feature", "name": "Mecartney Rd:Ironwood Rd -> Mecartney Rd:Baywalk Rd", "properties": {"origin_onestop_id": "s-9q9ndjzf35-mecartneyrd~ironwoodrd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ndjuvr0-mecartneyrd~baywalkrd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.118979, 37.68722], [-122.118908, 37.690371]]}, "type": "Feature", "name": "Ashland Av:E Lewelling Blvd -> Ashland Av:Galway Dr", "properties": {"origin_onestop_id": "s-9q9nmhexvx-ashlandav~elewellingblvd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmj7dr4-ashlandav~galwaydr", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.265961, 37.896051], [-122.265001, 37.895055]]}, "type": "Feature", "name": "Euclid Av:Rock Ln -> Euclid Av:Marin Av", "properties": {"origin_onestop_id": "s-9q9p9fb8kx-euclidav~rockln", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9f96dy-euclidav~marinav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.122579, 37.694572], [-122.119222, 37.693094]]}, "type": "Feature", "name": "Elgin St:Videll St -> Delano St:Ashland Av", "properties": {"origin_onestop_id": "s-9q9nmn14c9-elginst~videllst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmjg6pv-delanost~ashlandav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.162875, 37.691313], [-122.163651, 37.693341]]}, "type": "Feature", "name": "Wicks Blvd:Manor Blvd -> Farallon Dr:Wicks Blvd", "properties": {"origin_onestop_id": "s-9q9nkj7xy9-wicksblvd~manorblvd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkjg5ss-farallondr~wicksblvd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.295754, 37.908237], [-122.299173, 37.910622]]}, "type": "Feature", "name": "Ashbury Av:Eureka Av (El Cerrito High School) -> Ashbury Av:Stockton Av", "properties": {"origin_onestop_id": "s-9q9p9hfzqr-ashburyav~eurekaavelcerritohighschool", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9j2mqs-ashburyav~stocktonav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.28013, 37.892254], [-122.281795, 37.89133]]}, "type": "Feature", "name": "Colusa Av:Thousand Oaks School -> Solano Av:Ensenada Av", "properties": {"origin_onestop_id": "s-9q9p96n66k-colusaav~thousandoaksschool", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p93vhgx-solanoav~ensenadaav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.228526, 37.76127], [-122.226485, 37.763684]]}, "type": "Feature", "name": "High St:Fairview Av -> Fernside Blvd:High St", "properties": {"origin_onestop_id": "s-9q9nfd5zkf-highst~fairviewav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nfdtmkk-fernsideblvd~highst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.273287, 37.785994], [-122.271599, 37.784792]]}, "type": "Feature", "name": "Marina Village Pkwy:#1201 -> Marina Village Pkwy:#947", "properties": {"origin_onestop_id": "s-9q9ncwer3g-marinavillagepkwy~1201", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncws835-marinavillagepkwy~947", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.245636, 37.860505], [-122.245345, 37.858197]]}, "type": "Feature", "name": "Claremont Blvd:Garber St -> Claremont Av:Ashby Av", "properties": {"origin_onestop_id": "s-9q9p6hr3qj-claremontblvd~garberst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p65zevp-claremontav~ashbyav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.247974, 37.757162], [-122.244517, 37.755348]]}, "type": "Feature", "name": "Otis Dr:Park St -> Otis Dr:Broadway", "properties": {"origin_onestop_id": "s-9q9nf1t3th-parkst~otisdr<0102490", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nf30kb6-otisdr~broadway", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.26793, 37.864914], [-122.270287, 37.864586]]}, "type": "Feature", "name": "Haste St:Shattuck Av -> Haste St:Milvia St", "properties": {"origin_onestop_id": "s-9q9p3tp5ne-hastest~shattuckav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3tj3py-hastest~milviast", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.231695, 37.730989], [-122.234656, 37.734077]]}, "type": "Feature", "name": "Maitland Dr:Fitchburg Av -> Mecartney Rd:Melrose Av", "properties": {"origin_onestop_id": "s-9q9nds9wgn-maitlanddr~fitchburgav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ndmr2yj-mecartneyrd~melroseav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.287154, 37.85215], [-122.291379, 37.85218]]}, "type": "Feature", "name": "Ashby Av:San Pablo Av -> 7th St:Anthony St", "properties": {"origin_onestop_id": "s-9q9p36c0yb-ashbyav~sanpabloav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p34y0um-7thst~anthonyst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.27923, 37.853207], [-122.276672, 37.853531]]}, "type": "Feature", "name": "Ashby Av:Sacramento St -> Ashby Av:California St", "properties": {"origin_onestop_id": "s-9q9p36yyzm-ashbyav~sacramentost", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3e0bg1-ashbyav~californiast", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.152262, 37.725932], [-122.150177, 37.726481]]}, "type": "Feature", "name": "Estudillo Av:Santa Rosa St -> Estudillo Av:Santa Maria St", "properties": {"origin_onestop_id": "s-9q9ns7g3mz-estudilloav~santarosast", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns7uuwt-estudilloav~santamariast", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.229379, 37.82266], [-122.231964, 37.825041]]}, "type": "Feature", "name": "Highland Av:Sheridan Av -> Highland Way:Highland Av", "properties": {"origin_onestop_id": "s-9q9p4t7kcn-highlandav~sheridanav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4tc63j-highlandave~highlandway<1100360", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.185493, 37.703184], [-122.187095, 37.705617]]}, "type": "Feature", "name": "Aurora Dr:Marina Blvd -> Aurora Dr:Sitka St", "properties": {"origin_onestop_id": "s-9q9n7xehzw-auroradr~marinablvd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ne8454k-auroradr~sitkast", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.271748, 37.84845], [-122.273303, 37.845968]]}, "type": "Feature", "name": "Adeline St:Alcatraz Av -> Stanford Av:King St", "properties": {"origin_onestop_id": "s-9q9p3dh7jy-adelinest~alcatrazav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p39ek9x-stanfordav~kingst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.253904, 37.820052], [-122.255774, 37.818358]]}, "type": "Feature", "name": "Harrison St:W MacArthur Blvd -> Harrison St:Pearl St", "properties": {"origin_onestop_id": "s-9q9p4hcmv8-harrisonst~wmacarthurblvd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4h85cu-harrisonst~pearlst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.274718, 37.787158], [-122.275728, 37.78804]]}, "type": "Feature", "name": "Marina Village Pkwy:#1250 -> Marina Village Pkwy:Mariner Square Dr (North Jctn)", "properties": {"origin_onestop_id": "s-9q9ncwfq0s-marinavillagepkwy~1250", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncx1e31-marinavillagepkwy~marinersquaredrnorthjctn", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.234126, 37.756372], [-122.235377, 37.75524]]}, "type": "Feature", "name": "High St:Encinal Av -> High St:San Jose Av", "properties": {"origin_onestop_id": "s-9q9nf3rff3-highst~encinalav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nf3nujq-highst~sanjoseav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.226485, 37.763684], [-122.228691, 37.765222]]}, "type": "Feature", "name": "Fernside Blvd:High St -> Fernside Blvd:Harvard Dr", "properties": {"origin_onestop_id": "s-9q9nfdtmkk-fernsideblvd~highst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nfdgy35-fernsideblvd~harvarddr", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.251992, 37.867478], [-122.251411, 37.865983]]}, "type": "Feature", "name": "Piedmont Av:Channing Way -> Piedmont Av:Dwight Way", "properties": {"origin_onestop_id": "s-9q9p6jdf41-piedmontav~channingway", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p6j71rd-piedmontav~dwightway", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.266358, 37.900952], [-122.267612, 37.901841]]}, "type": "Feature", "name": "Grizzly Peak Blvd:Creston Rd (North-West Jctn) -> Euclid Av:Grizzly Peak Blvd", "properties": {"origin_onestop_id": "s-9q9p9g8m53-grizzlypeakblvd~crestonrdnorth~westjctn", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9ez6np-euclidav~grizzlypeakblvd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.162993, 37.690593], [-122.162548, 37.689046]]}, "type": "Feature", "name": "Wicks Blvd:Manor Blvd -> Wicks Blvd:Sea Cloud Av", "properties": {"origin_onestop_id": "s-9q9nkj7eeg-wicksblvd~manorblvd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkj5fw7-wicksblvd~seacloudav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.306229, 37.904112], [-122.302929, 37.902316]]}, "type": "Feature", "name": "Carlson Blvd:San Jose Av -> Central Av:San Pablo Av", "properties": {"origin_onestop_id": "s-9q9p8u5r6q-carlsonblvd~sanjoseav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p8gvszp-centralav~sanpabloav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.238676, 37.759236], [-122.236708, 37.757911]]}, "type": "Feature", "name": "Encinal Av:Versailles Av -> Encinal Av:Mound St", "properties": {"origin_onestop_id": "s-9q9nf3ue2r-encinalav~versaillesav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nf3tgy2-encinalav~moundst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.263767, 37.893963], [-122.264483, 37.895091]]}, "type": "Feature", "name": "Euclid Av:Regal Rd -> Euclid Av:Marin Av", "properties": {"origin_onestop_id": "s-9q9p9f6hrd-euclidav~regalrd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9f9dzh-euclidav~marinav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.234105, 37.828689], [-122.23505, 37.830239]]}, "type": "Feature", "name": "Highland Av:Park Way -> Highland Av:Moraga Av", "properties": {"origin_onestop_id": "s-9q9p4qxb4f-highlandav~parkway", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4qz1hg-highlandav~moragaav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.160394, 37.721889], [-122.157072, 37.722142]]}, "type": "Feature", "name": "San Leandro BART Station -> W Juana Av:Clarke St", "properties": {"origin_onestop_id": "s-9q9ns5j9bt-sanleandrobartstation", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns5pgmu-wjuanaav~clarkest", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.218641, 37.819411], [-122.217518, 37.818573]]}, "type": "Feature", "name": "Hampton Rd:La Salle Av -> Hampton Rd:Lexford Rd", "properties": {"origin_onestop_id": "s-9q9p4ug453-hamptonrd~lasalleav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4uevjk-hamptonrd~lexfordrd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.299811, 37.905724], [-122.298867, 37.90367]]}, "type": "Feature", "name": "Richmond St:Lincoln Av -> Richmond St:Central Av", "properties": {"origin_onestop_id": "s-9q9p8uxbzg-richmondst~lincolnav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9h0svu-richmondst~centralav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.255158, 37.846016], [-122.257603, 37.843066]]}, "type": "Feature", "name": "Claremont Av:Chabot Rd -> Claremont Av:Hudson St", "properties": {"origin_onestop_id": "s-9q9p618t02-claremontav~chabotrd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3cnez6-claremontav~hudsonst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.295039, 37.809877], [-122.292315, 37.813288]]}, "type": "Feature", "name": "Peralta St:12th St -> Peralta St:17th St", "properties": {"origin_onestop_id": "s-9q9p1556rp-peraltast~12thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p15tqqe-peraltast~17thst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.127112, 37.754216], [-122.140814, 37.757476]]}, "type": "Feature", "name": "Golf Links Rd:Scotia Av -> Golf Links Rd:Elysian Fields Dr", "properties": {"origin_onestop_id": "s-9q9nubvy0p-golflinksrd~scotiaav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu9ec0z-golflinksrd~elysianfieldsdr", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.306056, 37.904289], [-122.306732, 37.905277]]}, "type": "Feature", "name": "Carlson Blvd:San Jose Av -> Carlson Blvd:Columbia Av", "properties": {"origin_onestop_id": "s-9q9p8u72qr-carlsonblvd~sanjoseav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p8u6ynx-carlsonblvd~columbiaav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.29261, 37.855413], [-122.291609, 37.852285]]}, "type": "Feature", "name": "7th St:Grayson St -> 7th St:Anthony St", "properties": {"origin_onestop_id": "s-9q9p35m5z8-7thst~graysonst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p34vcwc-7thst~anthonyst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.298179, 37.902183], [-122.296639, 37.902362]]}, "type": "Feature", "name": "Richmond St:Fairmount Av -> Fairmount Av:Victoria St", "properties": {"origin_onestop_id": "s-9q9p95chjz-richmondst~fairmountav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p95fm3b-fairmountav~victoriast", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.162068, 37.688384], [-122.162875, 37.691313]]}, "type": "Feature", "name": "Wicks Blvd:Sea Cloud Av -> Wicks Blvd:Manor Blvd", "properties": {"origin_onestop_id": "s-9q9nkhuq9r-wicksblvd~seacloudav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkj7xy9-wicksblvd~manorblvd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.250981, 37.8276], [-122.25261, 37.82662]]}, "type": "Feature", "name": "Piedmont Av:Ridgeway Av -> 41st St:Piedmont Av", "properties": {"origin_onestop_id": "s-9q9p4n799x-piedmontav~ridgewayav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4n4k59-41stst~piedmontav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.270789, 37.781464], [-122.271361, 37.782751]]}, "type": "Feature", "name": "Challenger Dr:Atlantic Av -> Marina Village Pkwy:Challenger Dr", "properties": {"origin_onestop_id": "s-9q9nctvhup-challengerdr~atlanticav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncwhsqz-marinavillagepkwy~challengerdr", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.260552, 37.87493], [-122.260455, 37.876848]]}, "type": "Feature", "name": "Hearst Av:Euclid Av -> Euclid Av:Le Conte Av", "properties": {"origin_onestop_id": "s-9q9p3yut6w-hearstav~euclidav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3zk8su-euclidav~leconteav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.280669, 37.862185], [-122.278491, 37.862475]]}, "type": "Feature", "name": "Dwight Way:Sacramento St -> Dwight Way:California St", "properties": {"origin_onestop_id": "s-9q9p3ktgjy-dwightway~sacramentost", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3kxsbs-dwightway~californiast", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.154773, 37.725256], [-122.152262, 37.725932]]}, "type": "Feature", "name": "Estudillo Av:E 14th St -> Estudillo Av:Santa Rosa St", "properties": {"origin_onestop_id": "s-9q9ns79te3-estudilloav~e14thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns7g3mz-estudilloav~santarosast", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.271361, 37.782751], [-122.27148, 37.785035]]}, "type": "Feature", "name": "Marina Village Pkwy:Challenger Dr -> Marina Village Pkwy:#1080", "properties": {"origin_onestop_id": "s-9q9ncwhsqz-marinavillagepkwy~challengerdr", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncws9u1-marinavillagepkwy~1080", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.297441, 37.807155], [-122.29383, 37.80503]]}, "type": "Feature", "name": "Peralta St:8th St (School) -> 7th St:Mandela Pkwy", "properties": {"origin_onestop_id": "s-9q9p149dxh-peraltast~8thstschool", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p145svu-westoaklandbartstation<9901820", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.26262, 37.855868], [-122.264836, 37.855588]]}, "type": "Feature", "name": "Ashby Av:Deakin St -> Ashby Av:Wheeler St", "properties": {"origin_onestop_id": "s-9q9p3g7n6m-ashbyav~deakinst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3g3kyc-ashbyav~wheelerst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.290768, 37.776413], [-122.287726, 37.77633]]}, "type": "Feature", "name": "Pacific Av:Central Av -> Pacific Av:3rd St", "properties": {"origin_onestop_id": "s-9q9nchyxd9-pacificav~centralav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nckbz16-pacificav~3rdst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.273505, 37.85406], [-122.27721, 37.853585]]}, "type": "Feature", "name": "Ashby Av:Ellis St -> Ashby Av:California St", "properties": {"origin_onestop_id": "s-9q9p3e55uu-ashbyav~ellisst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3e03n7-ashbyav~californiast", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.29312, 37.838437], [-122.393841, 37.790102]]}, "type": "Feature", "name": "Shellmound St:Powell St -> Transbay Temp Terminal", "properties": {"origin_onestop_id": "s-9q9p30kbgg-shellmoundst~powellst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q8yyz7y5b-sanfranciscoterminal<1410400", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.279367, 37.83103], [-122.273785, 37.830886]]}, "type": "Feature", "name": "40th St:San Pablo Av -> Market St:40th St", "properties": {"origin_onestop_id": "s-9q9p1qzn8j-40thst~sanpabloave<0600980", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1wfuyk-marketst~40thst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.261517, 37.881227], [-122.261095, 37.879198]]}, "type": "Feature", "name": "Euclid Av:Vine Ln -> Euclid Av:Cedar St", "properties": {"origin_onestop_id": "s-9q9p9b5fhh-euclidav~vineln", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3zsnq4-euclidav~cedarst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.284116, 37.826136], [-122.285017, 37.829188]]}, "type": "Feature", "name": "Hollis St:34th St -> Hollis St:40th St", "properties": {"origin_onestop_id": "s-9q9p1q53jw-hollisst~34thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1qdfbx-hollisst~40thst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.25642, 37.757074], [-122.255749, 37.758264]]}, "type": "Feature", "name": "Willow St:Shoreline Dr -> Willow St:Franciscan Way", "properties": {"origin_onestop_id": "s-9q9nccrwfu-willowst~shorelinedr", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nf18jfd-willowst~franciscanway", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.254834, 37.759534], [-122.255875, 37.758376]]}, "type": "Feature", "name": "Whitehall Pl:Willow St -> Willow St:Franciscan Way", "properties": {"origin_onestop_id": "s-9q9nf1btpz-whitehallpl~willowst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nccxyrx-willowst~franciscanway", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.130555, 37.708283], [-122.130141, 37.701334]]}, "type": "Feature", "name": "Bancroft Av:Dennis Av (Nazarene Church) -> Hesperian Blvd:Halcyon Dr", "properties": {"origin_onestop_id": "s-9q9nsbe4xv-bancroftav~dennisavnazarenechurch", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkz7d1q-hesperianblvd~halcyondr", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.198354, 37.810284], [-122.20486, 37.808095]]}, "type": "Feature", "name": "Lincoln Av:Monterey Blvd -> Lincoln Av:Head Royce School", "properties": {"origin_onestop_id": "s-9q9p571ugg-lincolnav~montereyblvd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p54v0h7-lincolnav~headroyceschool", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.267891, 37.829572], [-122.266482, 37.829354]]}, "type": "Feature", "name": "40th St:Mlk Jr Way -> 40th St:MacArthur BART Station", "properties": {"origin_onestop_id": "s-9q9p1wxjpx-40thst~mlkjrway", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1y87bq-40thst~macarthurbartstation", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.164669, 37.762684], [-122.167623, 37.76598]]}, "type": "Feature", "name": "MacArthur Blvd:82nd Av -> MacArthur Blvd:Parker Av", "properties": {"origin_onestop_id": "s-9q9nu46rsf-macarthurblvd~82ndav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu506b0-macarthurblvd~parkerav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.250266, 37.864539], [-122.250762, 37.865846]]}, "type": "Feature", "name": "Warring St:Parker St -> Piedmont Cr:Dwight Way", "properties": {"origin_onestop_id": "s-9q9p6jh0fm-warringst~parkerst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p6j78wc-piedmontcr~dwightway", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.262655, 37.884385], [-122.262355, 37.886371]]}, "type": "Feature", "name": "Euclid Av:Bayview Pl -> Euclid Av:Eunice St", "properties": {"origin_onestop_id": "s-9q9p9beh99-euclidav~bayviewpl", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9c520e-euclidav~eunicest", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.258797, 37.815939], [-122.259572, 37.814881]]}, "type": "Feature", "name": "Harrison St:29th St -> Harrison St:Hamilton Pl", "properties": {"origin_onestop_id": "s-9q9p1ujvg9-harrisonst~29thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1gvr9k-harrisonst~hamiltonpl", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.146978, 37.699784], [-122.14371, 37.701066]]}, "type": "Feature", "name": "Floresta Blvd:Monterey Blvd -> Floresta Blvd:Fremont Av", "properties": {"origin_onestop_id": "s-9q9nkrp31j-florestablvd~montereyblvd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkx38tk-florestablvd~fremontav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.29312, 37.838437], [-122.393017, 37.789638]]}, "type": "Feature", "name": "Shellmound St:Powell St -> Transbay Temp Terminal", "properties": {"origin_onestop_id": "s-9q9p30kbgg-shellmoundst~powellst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q8yyz7y5b-sanfranciscoterminal<1410390", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.163651, 37.693341], [-122.16589, 37.692781]]}, "type": "Feature", "name": "Farallon Dr:Wicks Blvd -> Farallon Dr:#2014 (North Face Complex)", "properties": {"origin_onestop_id": "s-9q9nkjg5ss-farallondr~wicksblvd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkjc827-farallondr~2014northfacecomplex", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.176403, 37.77111], [-122.179601, 37.773905]]}, "type": "Feature", "name": "68th Av:MacArthur Blvd -> MacArthur Blvd:64th Av", "properties": {"origin_onestop_id": "s-9q9ngu1bem-68thav~macarthurblvd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngsx8by-macarthurblvd~64thav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.262457, 37.811107], [-122.263047, 37.809529]]}, "type": "Feature", "name": "Harrison St:Grand Av -> Harrison St:21st St", "properties": {"origin_onestop_id": "s-9q9p1g71wm-harrisonst~grandav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1g4b2x-harrisonst~21stst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.14371, 37.701066], [-122.139684, 37.701683]]}, "type": "Feature", "name": "Floresta Blvd:Fremont Av -> Halcyon Dr:Washington Av (Floresta Blvd)", "properties": {"origin_onestop_id": "s-9q9nkx38tk-florestablvd~fremontav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkxks5p-halcyondr~washingtonavflorestablvd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.285017, 37.829188], [-122.283446, 37.830189]]}, "type": "Feature", "name": "Hollis St:40th St -> 40th St:Harlan St", "properties": {"origin_onestop_id": "s-9q9p1qdfbx-hollisst~40thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1qgbv4-40thst~harlanst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.119043, 37.689766], [-122.119104, 37.687869]]}, "type": "Feature", "name": "Ashland Av:Crespi Pl -> Ashland Av:San Lorenzo High School", "properties": {"origin_onestop_id": "s-9q9nmj5wu1-ashlandav~crespipl", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmhgedx-ashlandav~sanlorenzohighschool", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.271104, 37.766071], [-122.267421, 37.764905]]}, "type": "Feature", "name": "Otis Dr:Westline Dr -> Otis Dr:Larchmont Isle", "properties": {"origin_onestop_id": "s-9q9ncehgkc-otisdr~westlinedr", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncdzsd8-otisdr~larchmontisle", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.234222, 37.76859], [-122.232229, 37.766939]]}, "type": "Feature", "name": "Broadway:Blanding Av -> Fernside Blvd:Versailles Av", "properties": {"origin_onestop_id": "s-9q9nf7xfr8-broadway~blandingave<0104460", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nfe30qe-fernsideblvd~versaillesav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.249962, 37.742889], [-122.247471, 37.742817]]}, "type": "Feature", "name": "Aughinbaugh Way:Robert Davey Jr Dr -> Robert Davey Jr Dr:Channing Way", "properties": {"origin_onestop_id": "s-9q9ndnuk32-aughinbaughway~robertdaveyjrdr", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ndny5g7-robertdaveyjrdr~channingway", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.28987, 37.805512], [-122.289051, 37.806982]]}, "type": "Feature", "name": "Union St:8th St -> 10th St:Union St", "properties": {"origin_onestop_id": "s-9q9p14r1p6-unionst~8thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p14xcds-10thst~unionst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.220394, 37.85484], [-122.234017, 37.852564]]}, "type": "Feature", "name": "Caldecott Ln:Parkwood Community -> Tunnel Rd:#261", "properties": {"origin_onestop_id": "s-9q9p6g3b6m-caldecottln~parkwoodcommunity", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p66zghv-tunnelrd~261", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.260245, 37.875327], [-122.264234, 37.874585]]}, "type": "Feature", "name": "Euclid Av:Hearst Av -> Hearst Av:Arch St", "properties": {"origin_onestop_id": "s-9q9p3yuzcb-euclidav~hearstav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3ycgky-hearstav~archst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.178166, 37.710074], [-122.183029, 37.708039]]}, "type": "Feature", "name": "Williams St:#2020 -> Williams St:Doolittle Dr", "properties": {"origin_onestop_id": "s-9q9nebbt47-williamsst~2020", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ne8t11p-williamsst~doolittledr", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.171216, 37.69359], [-122.165279, 37.692737]]}, "type": "Feature", "name": "Farallon Dr:Catalina St -> Farallon Dr:#2012", "properties": {"origin_onestop_id": "s-9q9n7vvth6-farallondr~catalinast", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkjcbne-farallondr~2012", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.266589, 37.897245], [-122.265961, 37.896051]]}, "type": "Feature", "name": "Euclid Av:Poplar St -> Euclid Av:Rock Ln", "properties": {"origin_onestop_id": "s-9q9p9fbpmy-euclidav~poplarst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9fb8kx-euclidav~rockln", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.273993, 37.830808], [-122.279337, 37.831256]]}, "type": "Feature", "name": "Market St:40th St -> 40th St:San Pablo Av", "properties": {"origin_onestop_id": "s-9q9p1wfu3m-marketst~40thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1qzn8j-40thst~sanpabloave<0601040", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.267612, 37.901841], [-122.26749, 37.900605]]}, "type": "Feature", "name": "Euclid Av:Grizzly Peak Blvd -> Euclid Av:Acacia Av", "properties": {"origin_onestop_id": "s-9q9p9ez6np-euclidav~grizzlypeakblvd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9exe0b-euclidav~acaciaav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.245086, 37.859029], [-122.245777, 37.860993]]}, "type": "Feature", "name": "Russell St:Claremont Blvd -> Belrose Av:Garber St", "properties": {"origin_onestop_id": "s-9q9p6hpbg4-russellst~claremontblvd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p6hrk6b-belroseav~garberst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.302131, 37.78561], [-122.29823, 37.785528]]}, "type": "Feature", "name": "Saratoga St:W Midway Av -> W Midway Av:Pan Am Way", "properties": {"origin_onestop_id": "s-9q9nbywm1u-saratogast~wmidwayav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncn9hss-wmidwayav~panamway", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.150072, 37.726677], [-122.152072, 37.726122]]}, "type": "Feature", "name": "Estudillo Av:Santa Maria St -> Estudillo Av:Santa Rosa St", "properties": {"origin_onestop_id": "s-9q9ns7vjc4-estudilloav~santamariast", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns7gdd6-estudilloav~santarosast", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.303107, 37.902343], [-122.304617, 37.902182]]}, "type": "Feature", "name": "Central Av:San Pablo Av -> Carlson Blvd:Central Av", "properties": {"origin_onestop_id": "s-9q9p8gvt5h-centralav~sanpabloav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p8gukpy-carlsonblvd~centralav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.140814, 37.757476], [-122.147413, 37.754762]]}, "type": "Feature", "name": "Golf Links Rd:Elysian Fields Dr -> Golf Links Rd:Anza Av", "properties": {"origin_onestop_id": "s-9q9nu9ec0z-golflinksrd~elysianfieldsdr", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu3ncqv-golflinksrd~anzaav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.251816, 37.868058], [-122.252647, 37.869607]]}, "type": "Feature", "name": "Piedmont Av:Channing Way -> Bancroft Way:Piedmont Av", "properties": {"origin_onestop_id": "s-9q9p6jdvqj-piedmontav~channingway", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p6jfq6y-bancroftway~piedmontav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.165425, 37.722213], [-122.163187, 37.723019]]}, "type": "Feature", "name": "Davis St:Orchard Av -> Davis St:Alvarado St", "properties": {"origin_onestop_id": "s-9q9ns51gg6-davisst~orchardav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns572x2-davisst~alvaradost", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.150177, 37.726481], [-122.14802, 37.727092]]}, "type": "Feature", "name": "Estudillo Av:Santa Maria St -> Estudillo Av:Bancroft Av", "properties": {"origin_onestop_id": "s-9q9ns7uuwt-estudilloav~santamariast", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nskn80z-estudilloav~bancroftav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.151846, 37.693122], [-122.146978, 37.699784]]}, "type": "Feature", "name": "Farnsworth St:Avon Av -> Floresta Blvd:Monterey Blvd", "properties": {"origin_onestop_id": "s-9q9nkmgdre-farnsworthst~avonav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkrp31j-florestablvd~montereyblvd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.273479, 37.80017], [-122.273062, 37.801131]]}, "type": "Feature", "name": "8th St:Broadway -> Broadway:9th St", "properties": {"origin_onestop_id": "s-9q9p1971vq-8thst~broadway", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p197rx1-broadway~9thst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.277255, 37.80396], [-122.274464, 37.802963]]}, "type": "Feature", "name": "Mlk Jr Way:11th St -> 11th St:Clay St", "properties": {"origin_onestop_id": "s-9q9p19cnk8-11thst~jeffersonst<1030880", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p19f6nr-11thst~clayst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.273743, 37.830745], [-122.279337, 37.831256]]}, "type": "Feature", "name": "40th St:Market St -> 40th St:San Pablo Av", "properties": {"origin_onestop_id": "s-9q9p1wfup6-40thst~marketst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1qzn8j-40thst~sanpabloave<0601040", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.254628, 37.868302], [-122.251992, 37.867478]]}, "type": "Feature", "name": "Durant Av:College Av -> Piedmont Av:Channing Way", "properties": {"origin_onestop_id": "s-9q9p6j8yue-durantav~collegeav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p6jdf41-piedmontav~channingway", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.175181, 37.696925], [-122.171216, 37.69359]]}, "type": "Feature", "name": "Bermuda Way:Doolittle Dr -> Farallon Dr:Catalina St", "properties": {"origin_onestop_id": "s-9q9n7yd8xb-bermudaway~doolittledr", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9n7vvth6-farallondr~catalinast", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.254864, 37.794925], [-122.252912, 37.793291]]}, "type": "Feature", "name": "5th Av:E 12th St -> E 12th St:7th Av", "properties": {"origin_onestop_id": "s-9q9p402erh-5thav~e12thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4041us-e12thst~7thav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.245055, 37.755766], [-122.248661, 37.757812]]}, "type": "Feature", "name": "Otis Dr:Broadway -> Otis Dr:Park St", "properties": {"origin_onestop_id": "s-9q9nf1pz7b-otisdr~broadway", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nf1t3th-parkst~otisdr<0102500", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.287418, 37.869836], [-122.292544, 37.869114]]}, "type": "Feature", "name": "University Av:Bonar St -> University Av:San Pablo Av", "properties": {"origin_onestop_id": "s-9q9p3mcpb9-universityav~bonarst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3jv794-universityav~sanpabloav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.285383, 37.829524], [-122.284249, 37.825983]]}, "type": "Feature", "name": "Hollis St:40th St (Home Depot) -> Hollis St:34th St", "properties": {"origin_onestop_id": "s-9q9p1qdsbn-hollisst~40thsthomedepot", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1q5266-hollisst~34thst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.194391, 37.751253], [-122.189847, 37.750936]]}, "type": "Feature", "name": "San Leandro St:77th Av -> 81st Av:Mother's Cookies Factory", "properties": {"origin_onestop_id": "s-9q9ng2kubr-sanleandrost~77thav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ng8254h-81stav~motherscookiesfactory", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.281725, 37.805492], [-122.284214, 37.806014]]}, "type": "Feature", "name": "10th St:Market St -> 10th St:Filbert St", "properties": {"origin_onestop_id": "s-9q9p16m0vq-10thst~marketst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1677gr-10thst~filbertst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.280243, 37.805228], [-122.276263, 37.803658]]}, "type": "Feature", "name": "11th St:Brush St -> 11th St:Jefferson St", "properties": {"origin_onestop_id": "s-9q9p16nprv-11thst~brushst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p19cnk8-11thst~jeffersonst<1000410", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.26073, 37.877541], [-122.26045, 37.876208]]}, "type": "Feature", "name": "Euclid Av:Virginia St -> Euclid Av:Ridge Rd", "properties": {"origin_onestop_id": "s-9q9p3zkkwt-euclidav~virginiast", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3zhsvh-euclidav~ridgerd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.261209, 37.896729], [-122.258308, 37.894061]]}, "type": "Feature", "name": "Grizzly Peak Blvd:Forest Ln -> Grizzly Peak Blvd:Latham Ln", "properties": {"origin_onestop_id": "s-9q9p9fuh7q-grizzlypeakblvd~forestln", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9fqhyu-grizzlypeakblvd~lathamln", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.170134, 37.721052], [-122.167715, 37.721651]]}, "type": "Feature", "name": "Davis St:Pierce Av (Douglas Dr) -> Davis St:Wayne Av", "properties": {"origin_onestop_id": "s-9q9nefymj9-davisst~pierceavdouglasdr", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns500tc-davisst~wayneav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.236708, 37.757911], [-122.233855, 37.756448]]}, "type": "Feature", "name": "Encinal Av:Mound St -> High St:Encinal Av", "properties": {"origin_onestop_id": "s-9q9nf3tgy2-encinalav~moundst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nf92528-highst~encinalav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.217303, 37.81873], [-122.218465, 37.819141]]}, "type": "Feature", "name": "Hampton Rd:Lexford Rd -> Hampton Rd:La Salle Av", "properties": {"origin_onestop_id": "s-9q9p4usn46-hamptonrd~lexfordrd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4ug0rq-hamptonrd~lasalleav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.290218, 37.80458], [-122.28987, 37.805512]]}, "type": "Feature", "name": "Union St:7th St -> Union St:8th St", "properties": {"origin_onestop_id": "s-9q9p14ngxk-unionst~7thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p14r1p6-unionst~8thst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.247097, 37.862529], [-122.25013, 37.862746]]}, "type": "Feature", "name": "Derby St:Claremont Blvd -> Warring St:Derby St", "properties": {"origin_onestop_id": "s-9q9p6hwmhn-derbyst~claremontblvd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p6hsnmx-warringst~derbyst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.238907, 37.752049], [-122.240782, 37.753268]]}, "type": "Feature", "name": "High St:Otis Dr -> Otis Dr:Mound St", "properties": {"origin_onestop_id": "s-9q9nf2s3eh-highst~otisdr", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nf2fbxr-otisdr~moundst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.119267, 37.693222], [-122.123543, 37.695379]]}, "type": "Feature", "name": "Delano St:Ashland Av -> Elgin St:Linnea Av", "properties": {"origin_onestop_id": "s-9q9nmjg6yv-delanost~ashlandav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmn0r7p-elginst~linneaav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.239189, 37.751927], [-122.237082, 37.744998]]}, "type": "Feature", "name": "Otis Dr:High St -> Island Dr: Park & Ride", "properties": {"origin_onestop_id": "s-9q9nf2s0um-otisdr~highst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ndrm8t9-islanddr~park~ride", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.293678, 37.860206], [-122.291637, 37.860622]]}, "type": "Feature", "name": "Dwight Way:7th St -> Dwight Way:9th St", "properties": {"origin_onestop_id": "s-9q9p3hhrwv-dwightway~7thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3hmfn7-dwightway~9thst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.259572, 37.814881], [-122.260561, 37.814059]]}, "type": "Feature", "name": "Harrison St:Hamilton Pl -> Harrison St:West Lake Middle School", "properties": {"origin_onestop_id": "s-9q9p1gvr9k-harrisonst~hamiltonpl", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1gudf7-harrisonst~westlakemiddleschool", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.306732, 37.905277], [-122.308337, 37.907733]]}, "type": "Feature", "name": "Carlson Blvd:Columbia Av -> Carlson Blvd:Huntington Dr", "properties": {"origin_onestop_id": "s-9q9p8u6ynx-carlsonblvd~columbiaav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p8ucu91-carlsonblvd~huntingtondr", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.240544, 37.760315], [-122.238676, 37.759236]]}, "type": "Feature", "name": "Encinal Av:Broadway -> Encinal Av:Versailles Av", "properties": {"origin_onestop_id": "s-9q9nf651ub-encinalav~broadway", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nf3ue2r-encinalav~versaillesav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.228516, 37.822176], [-122.229379, 37.82266]]}, "type": "Feature", "name": "Sheridan Av:Sierra Av -> Highland Av:Sheridan Av", "properties": {"origin_onestop_id": "s-9q9p4t7fjh-sheridanav~sierraav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4t7kcn-highlandav~sheridanav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.276436, 37.773272], [-122.270665, 37.77311]]}, "type": "Feature", "name": "Santa Clara Av:Webster St -> Santa Clara Av:9th St", "properties": {"origin_onestop_id": "s-9q9ncs3j28-santaclaraav~websterst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncsmhr4-santaclaraav~9thst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.278956, 37.831574], [-122.281569, 37.830802]]}, "type": "Feature", "name": "40th St:Adeline St -> 40th St:Emery St", "properties": {"origin_onestop_id": "s-9q9p1qzn8j-40thst~sanpabloave<0601030", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1qvk2u-40thst~emeryst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.261486, 37.88062], [-122.261447, 37.881733]]}, "type": "Feature", "name": "Euclid Av:Buena Vista Way -> Euclid Av:Hawthorne Ter", "properties": {"origin_onestop_id": "s-9q9p3zgysg-euclidav~buenavistaway", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9b5vjf-euclidav~hawthorneter", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.167715, 37.721651], [-122.165425, 37.722213]]}, "type": "Feature", "name": "Davis St:Wayne Av -> Davis St:Orchard Av", "properties": {"origin_onestop_id": "s-9q9ns500tc-davisst~wayneav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns51gg6-davisst~orchardav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.241388, 37.736177], [-122.245171, 37.73707]]}, "type": "Feature", "name": "Mecartney Rd:Auburn Dr -> Mecartney Rd:Ironwood Rd", "properties": {"origin_onestop_id": "s-9q9ndmdt1j-mecartneyrd~auburndr", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ndjzf35-mecartneyrd~ironwoodrd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.266549, 37.871293], [-122.263217, 37.867201]]}, "type": "Feature", "name": "Addison St:Oxford St -> Durant Av:Ellsworth St", "properties": {"origin_onestop_id": "s-9q9p3y20qb-addisonst~oxfordst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3vd8kt-durantav~ellsworthst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.141312, 37.736908], [-122.140389, 37.734666]]}, "type": "Feature", "name": "MacArthur Blvd:Fortuna Av -> MacArthur Blvd:Dutton Av", "properties": {"origin_onestop_id": "s-9q9nstg3mj-macarthurblvd~fortunaav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nstkh6e-macarthurblvd~duttonav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.268868, 37.827279], [-122.270834, 37.830283]]}, "type": "Feature", "name": "W MacArthur Blvd:Martin Luther King Jr Way -> 40th St:West St", "properties": {"origin_onestop_id": "s-9q9p1wnxbg-wmacarthurblvd~martinlutherkingjrway", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1wv175-40thst~westst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.157282, 37.722251], [-122.160482, 37.722059]]}, "type": "Feature", "name": "W Juana Av:Clarke St -> San Leandro BART Station", "properties": {"origin_onestop_id": "s-9q9ns5pu11-wjuanaav~clarkest", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns5j6ym-sanleandrobartstation", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.243208, 37.761881], [-122.240544, 37.760315]]}, "type": "Feature", "name": "Encinal Av:Park Av W -> Encinal Av:Broadway", "properties": {"origin_onestop_id": "s-9q9nf634yu-encinalav~parkavw", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nf651ub-encinalav~broadway", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.273248, 37.771233], [-122.272992, 37.768814]]}, "type": "Feature", "name": "Central Av:8th St -> 8th St:Portola Av", "properties": {"origin_onestop_id": "s-9q9ncs536u-centralav~8thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nceee2c-8thst~portolaav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.276397, 37.771353], [-122.273248, 37.771233]]}, "type": "Feature", "name": "Central Av:Webster St -> Central Av:8th St", "properties": {"origin_onestop_id": "s-9q9ncs1416-centralav~websterst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncs536u-centralav~8thst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.248462, 37.884802], [-122.248959, 37.883035]]}, "type": "Feature", "name": "Grizzly Peak Blvd:Avenida Dr -> Grizzly Peak Blvd:Senior Av", "properties": {"origin_onestop_id": "s-9q9pd0tquq-grizzlypeakblvd~avenidadr", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9pd0mh8v-grizzlypeakblvd~seniorav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.262355, 37.886371], [-122.261317, 37.887576]]}, "type": "Feature", "name": "Euclid Av:Eunice St -> Euclid Av:#1151", "properties": {"origin_onestop_id": "s-9q9p9c520e-euclidav~eunicest", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9chp0u-euclidav~1151", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.289931, 37.861088], [-122.292147, 37.860614]]}, "type": "Feature", "name": "Dwight Way:San Pablo Av -> Dwight Way:9th St", "properties": {"origin_onestop_id": "s-9q9p3hrhy4-dwightway~sanpabloav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3hmd43-dwightway~9thst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.268495, 37.85708], [-122.269009, 37.855491]]}, "type": "Feature", "name": "Adeline St:Oregon St -> Adeline St:Russell St", "properties": {"origin_onestop_id": "s-9q9p3ewv3x-adelinest~oregonst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3eqkjw-adelinest~russellst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.283939, 37.861777], [-122.280669, 37.862185]]}, "type": "Feature", "name": "Dwight Way:Valley St -> Dwight Way:Sacramento St", "properties": {"origin_onestop_id": "s-9q9p3ke8cd-dwightway~valleyst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3ktgjy-dwightway~sacramentost", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.27148, 37.785035], [-122.274718, 37.787158]]}, "type": "Feature", "name": "Marina Village Pkwy:#1080 -> Marina Village Pkwy:#1250", "properties": {"origin_onestop_id": "s-9q9ncws9u1-marinavillagepkwy~1080", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncwfq0s-marinavillagepkwy~1250", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.248535, 37.821168], [-122.247209, 37.821547]]}, "type": "Feature", "name": "Oakland Av:Monte Vista Av -> Oakland Av:Olive Av", "properties": {"origin_onestop_id": "s-9q9p4jjk68-oaklandav~montevistaav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4jnq3x-oaklandav~oliveav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.273743, 37.830745], [-122.278956, 37.831574]]}, "type": "Feature", "name": "40th St:Market St -> 40th St:Adeline St", "properties": {"origin_onestop_id": "s-9q9p1wfup6-40thst~marketst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1qzn8j-40thst~sanpabloave<0601030", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.153721, 37.725681], [-122.157942, 37.725055]]}, "type": "Feature", "name": "Estudillo Av:#300 (San Leandro Community Library) -> Hays St:Davis St", "properties": {"origin_onestop_id": "s-9q9ns7f25b-estudilloav~300sanleandrocommunitylibrary", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns5xk3e-haysst~davisst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.268587, 37.808585], [-122.271777, 37.803652]]}, "type": "Feature", "name": "Broadway:Thomas L Berkley Way (20th St) -> Broadway:13th St (12th St BART Station)", "properties": {"origin_onestop_id": "s-9q9p1dydzr-broadway~thomaslberkleyway20thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1dh9te-14thst~broadway<1006390", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.231736, 37.730795], [-122.229544, 37.729151]]}, "type": "Feature", "name": "Maitland Dr:Fitchburg Av -> Maitland Dr:Harbor Bay Pkwy", "properties": {"origin_onestop_id": "s-9q9nds9tf1-maitlanddr~fitchburgav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nds7hjp-maitlanddr~harborbaypkwy", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.281322, 37.830607], [-122.279367, 37.83103]]}, "type": "Feature", "name": "40th St:Emery St -> 40th St:San Pablo Av", "properties": {"origin_onestop_id": "s-9q9p1qv7q8-40thst~emeryst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1qzn8j-40thst~sanpabloave<0600980", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.26847, 37.855121], [-122.27092, 37.854419]]}, "type": "Feature", "name": "Ashby Av:Adeline St (Ashby BART Station) -> Ashby Av:Martin Luther King Jr Way(Ashby BART Sa.)", "properties": {"origin_onestop_id": "s-9q9p3eqf44-ashbyav~adelinestashbybartstation", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3ejjcp-ashbyav~martinlutherkingjrwayashbybartsa", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.257103, 37.827186], [-122.393017, 37.789638]]}, "type": "Feature", "name": "Broadway:40th St -> Transbay Temp Terminal", "properties": {"origin_onestop_id": "s-9q9p1ypp74-broadway~40thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q8yyz7y5b-sanfranciscoterminal<1410390", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.125709, 37.752472], [-122.127112, 37.754216]]}, "type": "Feature", "name": "Golf Links Rd:Grass Valley Sch. (Near Dunkirk Av) -> Golf Links Rd:Scotia Av", "properties": {"origin_onestop_id": "s-9q9nubwu0d-golflinksrd~grassvalleyschneardunkirkav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nubvy0p-golflinksrd~scotiaav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.252619, 37.849147], [-122.255158, 37.846016]]}, "type": "Feature", "name": "Claremont Av:College Av -> Claremont Av:Chabot Rd", "properties": {"origin_onestop_id": "s-9q9p644r78-claremontav~collegeav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p618t02-claremontav~chabotrd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.27721, 37.853585], [-122.27881, 37.853377]]}, "type": "Feature", "name": "Ashby Av:California St -> Ashby Av:Sacramento St", "properties": {"origin_onestop_id": "s-9q9p3e03n7-ashbyav~californiast", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p36zrch-ashbyav~sacramentost", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.267627, 37.870917], [-122.26598, 37.872768]]}, "type": "Feature", "name": "Shattuck Av:Center St -> Oxford St:University Av", "properties": {"origin_onestop_id": "s-9q9p3wp1qn-centerst~shattuckave<0306220", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3y88u5-oxfordst~universityav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.275281, 37.779879], [-122.276692, 37.779082]]}, "type": "Feature", "name": "Atlantic Av:Constitution Way -> Webster St:Ralph Appezzato Memorial Pkwy", "properties": {"origin_onestop_id": "s-9q9nct9ger-atlanticav~constitutionway", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nct2z4e-websterst~ralphappezzatomemorialpkwy", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.276672, 37.853531], [-122.2739, 37.853892]]}, "type": "Feature", "name": "Ashby Av:California St -> Ashby Av:King St", "properties": {"origin_onestop_id": "s-9q9p3e0bg1-ashbyav~californiast", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3e4fgs-ashbyav~kingst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.297892, 37.785622], [-122.299974, 37.784721]]}, "type": "Feature", "name": "W Midway Av:Pan Am Way -> W Ranger Av:#650", "properties": {"origin_onestop_id": "s-9q9ncn9mhw-wmidwayav~panamway", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nbyrzun-wrangerav~650", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.185481, 37.707016], [-122.186459, 37.704417]]}, "type": "Feature", "name": "Williams St:Nome St -> Aurora Dr:W Av 130", "properties": {"origin_onestop_id": "s-9q9ne875rc-williamsst~nomest", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9n7xfs1h-auroradr~wav130", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.290173, 37.805133], [-122.290796, 37.804536]]}, "type": "Feature", "name": "Union St:8th St -> 7th St:Union St", "properties": {"origin_onestop_id": "s-9q9p14pnb7-unionst~8thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p14ne3u-7thst~unionst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.149875, 37.753767], [-122.163303, 37.777501]]}, "type": "Feature", "name": "Mountain Blvd:Golf Links Rd -> Monte Vista Driveway:Leona Quarry Dr", "properties": {"origin_onestop_id": "s-9q9nu2v5ts-mountainblvd~golflinksrd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nuj5mus-montevistadriveway~leonaquarrydr", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.253523, 37.819046], [-122.252145, 37.81994]]}, "type": "Feature", "name": "Oakland Av:MacArthur Blvd -> Oakland Av:Moss Av", "properties": {"origin_onestop_id": "s-9q9p4h9xym-oaklandav~macarthurblvd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4hftne-oaklandav~mossav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.267297, 37.890902], [-122.266851, 37.888452]]}, "type": "Feature", "name": "Spruce St:San Benito Rd -> Spruce St:Los Angeles Av", "properties": {"origin_onestop_id": "s-9q9p99zdt2-sprucest~sanbenitord", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p99rupz-sprucest~losangelesav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.287041, 37.86137], [-122.28557, 37.861578]]}, "type": "Feature", "name": "Dwight Way:Mathews St -> Dwight Way:Mabel St", "properties": {"origin_onestop_id": "s-9q9p3k3q3q-dwightway~mathewsst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3k6ret-dwightway~mabelst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.271599, 37.784792], [-122.271734, 37.782344]]}, "type": "Feature", "name": "Marina Village Pkwy:#947 -> Challenger Dr:Marina Village Pkwy", "properties": {"origin_onestop_id": "s-9q9ncws835-marinavillagepkwy~947", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncwh6n5-challengerdr~marinavillagepkwy", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.257616, 37.856395], [-122.255244, 37.856702]]}, "type": "Feature", "name": "Ashby Av:Colby St -> Ashby Av:Hillegass Av", "properties": {"origin_onestop_id": "s-9q9p3gw9rp-ashbyav~colbyst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p6587q2-ashbyav~hillegassav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.264674, 37.829094], [-122.265257, 37.82674]]}, "type": "Feature", "name": "40th St:Telegraph Av -> Telegraph Av:W MacArthur Blvd", "properties": {"origin_onestop_id": "s-9q9p1y9d6w-40thst~telegraphav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1y1htp-telegraphav~wmacarthurblvd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.292298, 37.848981], [-122.292158, 37.846713]]}, "type": "Feature", "name": "Hollis St:67th St -> 65th St:Hollis St", "properties": {"origin_onestop_id": "s-9q9p34jqqc-hollisst~67thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p31v944-65thst~hollisst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.260725, 37.75815], [-122.25642, 37.757074]]}, "type": "Feature", "name": "Shoreline Dr:Kitty Hawk Rd -> Willow St:Shoreline Dr", "properties": {"origin_onestop_id": "s-9q9nccsmnt-shorelinedr~kittyhawkrd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nccrwfu-willowst~shorelinedr", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.248732, 37.75731], [-122.249537, 37.757068]]}, "type": "Feature", "name": "Park St:Otis Dr -> Alameda South Shore Center At Park St", "properties": {"origin_onestop_id": "s-9q9nf1t3th-parkst~otisdr<0102810", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nf1kwg7-alamedasouthshorecenteratparkst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.151217, 37.685735], [-122.154828, 37.680165]]}, "type": "Feature", "name": "Farnsworth St:Burkhart Av -> Lewelling Blvd:Sunnyhaven St", "properties": {"origin_onestop_id": "s-9q9nkkkpq6-farnsworthst~burkhartav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nk73wf5-lewellingblvd~sunnyhavenst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.27092, 37.854419], [-122.273505, 37.85406]]}, "type": "Feature", "name": "Ashby Av:Martin Luther King Jr Way(Ashby BART Sa.) -> Ashby Av:Ellis St", "properties": {"origin_onestop_id": "s-9q9p3ejjcp-ashbyav~martinlutherkingjrwayashbybartsa", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3e55uu-ashbyav~ellisst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.265755, 37.896308], [-122.266887, 37.897656]]}, "type": "Feature", "name": "Euclid Av:Rock Ln -> Euclid Av:Poplar St", "properties": {"origin_onestop_id": "s-9q9p9fbccr-euclidav~rockln", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9epcz5-euclidav~poplarst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.287726, 37.77633], [-122.285951, 37.776281]]}, "type": "Feature", "name": "Pacific Av:3rd St -> Pacific Av:4th St", "properties": {"origin_onestop_id": "s-9q9nckbz16-pacificav~3rdst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nckfnfc-pacificav~4thst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.294277, 37.904809], [-122.295754, 37.908237]]}, "type": "Feature", "name": "Ashbury Av:Central Av -> Ashbury Av:Eureka Av (El Cerrito High School)", "properties": {"origin_onestop_id": "s-9q9p9hk58b-ashburyav~centralav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9hfzqr-ashburyav~eurekaavelcerritohighschool", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.246638, 37.856285], [-122.244937, 37.85839]]}, "type": "Feature", "name": "Claremont Av:Hazel Rd -> Claremont Av:Ashby Av", "properties": {"origin_onestop_id": "s-9q9p65w8yg-claremontav~hazelrd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p65zvne-claremontav~ashbyav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.275728, 37.78804], [-122.270547, 37.799058]]}, "type": "Feature", "name": "Marina Village Pkwy:Mariner Square Dr (North Jctn) -> 8th St:Harrison St", "properties": {"origin_onestop_id": "s-9q9ncx1e31-marinavillagepkwy~marinersquaredrnorthjctn", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p19j73z-8thst~harrisonst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.086651, 37.694703], [-122.086951, 37.697529]]}, "type": "Feature", "name": "Lake Chabot Rd:Castro Valley Blvd -> Lake Chabot:Eden Medical Center", "properties": {"origin_onestop_id": "s-9q9nmy55wc-lakechabotrd~castrovalleyblvd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmydupb-lakechabot~edenmedicalcenter", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.174358, 37.769296], [-122.185144, 37.775374]]}, "type": "Feature", "name": "Eastmont Transit Center -> Camden St:MacArthur Blvd (Seminary Av Jctn)", "properties": {"origin_onestop_id": "s-9q9nggeq55-eastmonttransitcenter", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngsg3xb-camdenst~macarthurblvdseminaryavjctn", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.287403, 37.776547], [-122.290921, 37.776645]]}, "type": "Feature", "name": "Pacific Av:3rd St -> Pacific Av:Main St", "properties": {"origin_onestop_id": "s-9q9ncm102f-pacificav~3rdst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncjn2zj-pacificav~mainst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.272847, 37.845978], [-122.271091, 37.849115]]}, "type": "Feature", "name": "Stanford Av:King St -> Adeline St:Alcatraz Av", "properties": {"origin_onestop_id": "s-9q9p39esu1-stanfordav~kingst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3dhzj4-adelinest~alcatrazav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.162129, 37.758009], [-122.163568, 37.761292]]}, "type": "Feature", "name": "MacArthur Blvd:#8658 -> MacArthur Blvd:E.C. Reems Ct", "properties": {"origin_onestop_id": "s-9q9nu1sk25-macarthurblvd~8658", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu45pqx-macarthurblvd~ecreemsct", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.255244, 37.856702], [-122.252999, 37.855734]]}, "type": "Feature", "name": "Ashby Av:Hillegass Av -> College Av:Webster St", "properties": {"origin_onestop_id": "s-9q9p6587q2-ashbyav~hillegassav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p656jds-collegeav~websterst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.286441, 37.820914], [-122.289669, 37.817222]]}, "type": "Feature", "name": "Peralta St:28th St -> Mandella Pkwy:W Grand Av", "properties": {"origin_onestop_id": "s-9q9p1m1dz3-peraltast~28thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1hrmk1-mandellapkwy~wgrandav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.267278, 37.901813], [-122.266423, 37.900846]]}, "type": "Feature", "name": "Euclid Av:Grizzly Peak Blvd -> Grizzly Peak Blvd:Creston Rd (North-West Jctn)", "properties": {"origin_onestop_id": "s-9q9p9ezdjf-euclidav~grizzlypeakblvd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9g8k3v-grizzlypeakblvd~crestonrdnorth~westjctn", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.302203, 37.90063], [-122.296639, 37.902362]]}, "type": "Feature", "name": "Fairmount Av:San Pablo Av -> Fairmount Av:Victoria St", "properties": {"origin_onestop_id": "s-9q9p8gw70j-fairmountav~sanpabloav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p95fm3b-fairmountav~victoriast", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.212355, 37.712655], [-122.229626, 37.729327]]}, "type": "Feature", "name": "Oakland International Airport -> Maitland Dr:Harbor Bay Pkwy", "properties": {"origin_onestop_id": "s-9q9ndcrsjs-oaklandinternationalairport", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nds7j72-maitlanddr~harborbaypkwy", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.261108, 37.879592], [-122.261486, 37.88062]]}, "type": "Feature", "name": "Euclid Av:Cedar St -> Euclid Av:Buena Vista Way", "properties": {"origin_onestop_id": "s-9q9p3zu0te-euclidav~cedarst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3zgysg-euclidav~buenavistaway", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.28557, 37.861578], [-122.283939, 37.861777]]}, "type": "Feature", "name": "Dwight Way:Mabel St -> Dwight Way:Valley St", "properties": {"origin_onestop_id": "s-9q9p3k6ret-dwightway~mabelst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3ke8cd-dwightway~valleyst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.198497, 37.810097], [-122.196536, 37.81084]]}, "type": "Feature", "name": "Lincoln Av:Maiden Ln -> Joaquin Miller Rd:Mountain Blvd", "properties": {"origin_onestop_id": "s-9q9p571gb8-lincolnav~maidenln", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5770n7-joaquinmillerrd~mountainblvd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.256431, 37.892478], [-122.255019, 37.891532]]}, "type": "Feature", "name": "Grizzly Peak Blvd:Creston Rd (South-East Jctn) -> Grizzly Peak Blvd:Stevenson Av", "properties": {"origin_onestop_id": "s-9q9p9fpedt-grizzlypeakblvd~crestonrdsouth~eastjctn", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9pd1bw5t-grizzlypeakblvd~stevensonav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.266193, 37.855265], [-122.264287, 37.855516]]}, "type": "Feature", "name": "Ashby Av:Shattuck Av -> Ashby Av:Wheeler St", "properties": {"origin_onestop_id": "s-9q9p3g26zh-ashbyav~shattuckav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3g3u7e-ashbyav~wheelerst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.18185, 37.697399], [-122.179722, 37.695031]]}, "type": "Feature", "name": "Aurora Dr:Fairway Dr -> Bermuda Way:Acapulco Rd", "properties": {"origin_onestop_id": "s-9q9n7wtgk8-auroradr~fairwaydr", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9n7wpmqp-bermudaway~acapulcord", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.233661, 37.827878], [-122.234105, 37.828689]]}, "type": "Feature", "name": "Highland Av:Pala Av -> Highland Av:Park Way", "properties": {"origin_onestop_id": "s-9q9p4w25m7-highlandav~palaav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4qxb4f-highlandav~parkway", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.242085, 37.765368], [-122.243208, 37.761881]]}, "type": "Feature", "name": "Santa Clara Av:Park St -> Encinal Av:Park Av W", "properties": {"origin_onestop_id": "s-9q9nf6fp0y-santaclaraav~parkst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nf634yu-encinalav~parkavw", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.16419, 37.798069], [-122.16193, 37.7986]]}, "type": "Feature", "name": "Skyline Blvd:Balmoral Dr -> Skyline High School", "properties": {"origin_onestop_id": "s-9q9ph0fv8n-skylineblvd~balmoraldr", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ph1h2u9-skylinehighschool", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.186109, 37.775819], [-122.174148, 37.769279]]}, "type": "Feature", "name": "MacArthur Blvd:Millsbrae Av -> Foothill Blvd:Eastmont Transit Center", "properties": {"origin_onestop_id": "s-9q9ngsfu17-macarthurblvd~millsbraeav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nggetbp-foothillblvd~eastmonttransitcenter", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.232974, 37.7966], [-122.230802, 37.797386]]}, "type": "Feature", "name": "14th Av:Vallecito Pl -> 14th Av:19th Av", "properties": {"origin_onestop_id": "s-9q9p488tjk-14thav~vallecitopl", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p48f1xz-14thav~19thav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.234449, 37.733814], [-122.231736, 37.730795]]}, "type": "Feature", "name": "Mecartney Rd:Melrose Av -> Maitland Dr:Fitchburg Av", "properties": {"origin_onestop_id": "s-9q9ndmpx6u-mecartneyrd~melroseav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nds9tf1-maitlanddr~fitchburgav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.136115, 37.70191], [-122.143174, 37.701543]]}, "type": "Feature", "name": "Halcyon Dr:Oleander St -> Floresta Blvd:Fremont Av (Near Washington Av)", "properties": {"origin_onestop_id": "s-9q9nkxrjw1-halcyondr~oleanderst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkx653v-florestablvd~fremontavnearwashingtonav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.117061, 37.704424], [-122.119311, 37.701537]]}, "type": "Feature", "name": "159th Av:Liberty St -> 159th Av:Mateo St", "properties": {"origin_onestop_id": "s-9q9nmpvh4n-159thav~libertyst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmp77mg-159thav~mateost", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.187095, 37.705617], [-122.184588, 37.707232]]}, "type": "Feature", "name": "Aurora Dr:Sitka St -> Williams St:Nome St", "properties": {"origin_onestop_id": "s-9q9ne8454k-auroradr~sitkast", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ne87us9-williamsst~nomest", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.312242, 37.909449], [-122.315824, 37.91028]]}, "type": "Feature", "name": "Carlson Blvd:Santa Clara St -> Carlson Blvd:Tehama Av", "properties": {"origin_onestop_id": "s-9q9p8tnyw1-carlsonblvd~santaclarast", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p8tk76s-carlsonblvd~tehamaav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.270665, 37.77311], [-122.264772, 37.772879]]}, "type": "Feature", "name": "Santa Clara Av:9th St -> Santa Clara Av:Bay St", "properties": {"origin_onestop_id": "s-9q9ncsmhr4-santaclaraav~9thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncu3dbq-santaclaraav~bayst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.317279, 37.862813], [-122.297351, 37.867943]]}, "type": "Feature", "name": "Seawall Dr:University Av -> University Av:6th St", "properties": {"origin_onestop_id": "s-9q9p2seqbg-seawalldr~universityav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3j9uc0-universityav~6thst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.259359, 37.85616], [-122.257616, 37.856395]]}, "type": "Feature", "name": "Ashby Av:Telegraph Av -> Ashby Av:Colby St", "properties": {"origin_onestop_id": "s-9q9p3gt2n7-ashbyav~telegraphav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3gw9rp-ashbyav~colbyst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.252576, 37.890497], [-122.251475, 37.887124]]}, "type": "Feature", "name": "Grizzly Peak Blvd:Shasta Rd -> Grizzly Peak Blvd:Arcade Av", "properties": {"origin_onestop_id": "s-9q9pd1f2hs-grizzlypeakblvd~shastard", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9pd15hqp-grizzlypeakblvd~arcadeav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.23505, 37.830239], [-122.236829, 37.830788]]}, "type": "Feature", "name": "Highland Av:Moraga Av -> Moraga Av:Estrella Av", "properties": {"origin_onestop_id": "s-9q9p4qz1hg-highlandav~moragaav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4qvu76-moragaav~estrellaav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.232553, 37.825845], [-122.235536, 37.825418]]}, "type": "Feature", "name": "Highland Av:Craig Av -> Oakland Av:Hillside Av", "properties": {"origin_onestop_id": "s-9q9p4tbzx0-highlandav~craigav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4myv18-oaklandav~hillsideav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.147306, 37.699845], [-122.152033, 37.693465]]}, "type": "Feature", "name": "Floresta Blvd:Monterey Blvd -> Farnsworth St:Avon Av", "properties": {"origin_onestop_id": "s-9q9nkrp192-florestablvd~montereyblvd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkmgs77-farnsworthst~avonav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.189003, 37.699236], [-122.189195, 37.70078]]}, "type": "Feature", "name": "Monarch Bay Dr:Mulford Point Dr -> Monarch Bay Dr:Neptune Dr", "properties": {"origin_onestop_id": "s-9q9n7wbtvy-monarchbaydr~mulfordpointdr", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9n7x0wcq-monarchbaydr~neptunedr", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.276501, 37.798624], [-122.27677, 37.78286]]}, "type": "Feature", "name": "5th St:Washington St -> Webster St:Stargell Av", "properties": {"origin_onestop_id": "s-9q9p190bzn-5thst~washingtonst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncw0v0e-websterst~stargellav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.290921, 37.776645], [-122.291221, 37.779655]]}, "type": "Feature", "name": "Pacific Av:Main St -> Main St:Ralph Appezzato Memorial Pkwy", "properties": {"origin_onestop_id": "s-9q9ncjn2zj-pacificav~mainst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncjw62n-mainst~ralphappezzatomemorialpkwy", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.297942, 37.806114], [-122.297191, 37.807177]]}, "type": "Feature", "name": "7th St:Peralta St -> Peralta St:8th St", "properties": {"origin_onestop_id": "s-9q9p143ke6-7thst~peraltast", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p149fub-peraltast~8thst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.289051, 37.806982], [-122.286885, 37.806495]]}, "type": "Feature", "name": "10th St:Union St -> 10th St:Adeline St", "properties": {"origin_onestop_id": "s-9q9p14xcds-10thst~unionst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p163qv1-10thst~adelinest", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.290464, 37.851195], [-122.286247, 37.85217]]}, "type": "Feature", "name": "Ashby Av:7th St -> Ashby Av:San Pablo Av", "properties": {"origin_onestop_id": "s-9q9p34wg1w-ashbyav~7thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p36cbgg-ashbyav~sanpabloav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.189195, 37.70078], [-122.185493, 37.703184]]}, "type": "Feature", "name": "Monarch Bay Dr:Neptune Dr -> Aurora Dr:Marina Blvd", "properties": {"origin_onestop_id": "s-9q9n7x0wcq-monarchbaydr~neptunedr", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9n7xehzw-auroradr~marinablvd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.160634, 37.685852], [-122.158269, 37.682702]]}, "type": "Feature", "name": "Wicks Blvd:Liberty Way (Opp. Stenzel Park) -> Wicks Blvd:Mission Bay Complex", "properties": {"origin_onestop_id": "s-9q9nkhmrfz-wicksblvd~libertywayoppstenzelpark", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nk5zjdh-wicksblvd~missionbaycomplex", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.245837, 37.760801], [-122.248732, 37.75731]]}, "type": "Feature", "name": "Park St:San Jose Av -> Park St:Otis Dr", "properties": {"origin_onestop_id": "s-9q9nf4pk9e-parkst~sanjoseav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nf1t3th-parkst~otisdr<0102810", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.267939, 37.873868], [-122.265217, 37.874229]]}, "type": "Feature", "name": "Hearst Av:Shattuck Av -> Hearst Av:Spruce St", "properties": {"origin_onestop_id": "s-9q9p3wxp17-hearstave~shattuckave<9902350", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3yc1mu-hearstav~sprucest", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.278177, 37.785082], [-122.277502, 37.788309]]}, "type": "Feature", "name": "Mariner Sq Loop:Stargell Av -> Marina Village Pkwy:Mariner Sq Loop", "properties": {"origin_onestop_id": "s-9q9ncqxdpc-marinersqloop~stargellav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncx0hze-marinavillagepkwy~marinersqloop", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.261447, 37.881733], [-122.261606, 37.883115]]}, "type": "Feature", "name": "Euclid Av:Hawthorne Ter -> Euclid Av:Rose Walk", "properties": {"origin_onestop_id": "s-9q9p9b5vjf-euclidav~hawthorneter", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9b7v4h-euclidav~rosewalk", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.283454, 37.852739], [-122.280972, 37.853162]]}, "type": "Feature", "name": "Ashby Av:Mabel St -> Ashby Av:Acton St", "properties": {"origin_onestop_id": "s-9q9p36guhv-ashbyav~mabelst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p36vwwu-ashbyav~actonst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.279484, 37.775166], [-122.276645, 37.775491]]}, "type": "Feature", "name": "Lincoln Av:6th St -> Webster St:Lincoln Av", "properties": {"origin_onestop_id": "s-9q9nckyb39-lincolnav~6thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncsbf5t-websterst~lincolnav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.174877, 37.71143], [-122.178166, 37.710074]]}, "type": "Feature", "name": "Williams St:Westgate Pkwy -> Williams St:#2020", "properties": {"origin_onestop_id": "s-9q9nec4vp0-williamsst~westgatepkwy", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nebbt47-williamsst~2020", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.251829, 37.850162], [-122.252295, 37.848778]]}, "type": "Feature", "name": "Claremont Av:Mystic St -> College Av:Claremont Av", "properties": {"origin_onestop_id": "s-9q9p646vjv-claremontav~mysticst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p644t55-collegeav~claremontav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.28779, 37.861391], [-122.289931, 37.861088]]}, "type": "Feature", "name": "Dwight Way:Curtis St -> Dwight Way:San Pablo Av", "properties": {"origin_onestop_id": "s-9q9p3k2wxf-dwightway~curtisst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3hrhy4-dwightway~sanpabloav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.286116, 37.82105], [-122.284384, 37.823215]]}, "type": "Feature", "name": "Peralta St:28th St -> Peralta St:Louise St", "properties": {"origin_onestop_id": "s-9q9p1m1gwf-peraltast~28thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1me0pq-peraltast~louisest", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.250125, 37.741713], [-122.249962, 37.742889]]}, "type": "Feature", "name": "Aughinbaugh Way:Kofman Pkwy -> Aughinbaugh Way:Robert Davey Jr Dr", "properties": {"origin_onestop_id": "s-9q9ndnsjmt-aughinbaughway~kofmanpkwy", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ndnuk32-aughinbaughway~robertdaveyjrdr", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.291609, 37.852285], [-122.290464, 37.851195]]}, "type": "Feature", "name": "7th St:Anthony St -> Ashby Av:7th St", "properties": {"origin_onestop_id": "s-9q9p34vcwc-7thst~anthonyst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p34wg1w-ashbyav~7thst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.222649, 37.817786], [-122.225077, 37.818879]]}, "type": "Feature", "name": "Hampton Rd:Seaview Av -> Hampton Rd:Crocker Av", "properties": {"origin_onestop_id": "s-9q9p4u80tf-hamptonrd~seaviewav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4swqvq-hamptonrd~crockerav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.265725, 37.808435], [-122.268587, 37.808585]]}, "type": "Feature", "name": "T.L. Berkley Way (20th St) :Webster St (Kaiser Ct) -> Broadway:Thomas L Berkley Way (20th St)", "properties": {"origin_onestop_id": "s-9q9p1fbf45-tlberkleyway20thst~websterstkaiserct", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1dydzr-broadway~thomaslberkleyway20thst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.284214, 37.806014], [-122.287012, 37.80665]]}, "type": "Feature", "name": "10th St:Filbert St -> 10th St:Adeline St", "properties": {"origin_onestop_id": "s-9q9p1677gr-10thst~filbertst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p163rdn-10thst~adelinest", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.280934, 37.862292], [-122.284008, 37.861877]]}, "type": "Feature", "name": "Dwight Way:Sacramento St -> Dwight Way:Valley St", "properties": {"origin_onestop_id": "s-9q9p3ktezd-dwightway~sacramentost", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3ke92j-dwightway~valleyst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.289669, 37.817222], [-122.292895, 37.81283]]}, "type": "Feature", "name": "Mandella Pkwy:W Grand Av -> Peralta St:16th St", "properties": {"origin_onestop_id": "s-9q9p1hrmk1-mandellapkwy~wgrandav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p15t59n-peraltast~16thst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.29823, 37.785528], [-122.294399, 37.785]]}, "type": "Feature", "name": "W Midway Av:Pan Am Way -> W Midway Av:Orion St", "properties": {"origin_onestop_id": "s-9q9ncn9hss-wmidwayav~panamway", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncnectf-wmidwayav~orionst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.14802, 37.727092], [-122.146856, 37.72457]]}, "type": "Feature", "name": "Estudillo Av:Bancroft Av -> Bancroft Av:Dolores Av", "properties": {"origin_onestop_id": "s-9q9nskn80z-estudilloav~bancroftav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns7x3ec-bancroftav~doloresav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.393841, 37.790102], [-122.29449, 37.837433]]}, "type": "Feature", "name": "Transbay Temp Terminal -> Christie St:Lyons Restaurant", "properties": {"origin_onestop_id": "s-9q8yyz7y5b-sanfranciscoterminal<1410400", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p305g5b-christiest~lyonsrestaurant", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.257603, 37.843066], [-122.393157, 37.789527]]}, "type": "Feature", "name": "Claremont Av:Hudson St -> Transbay Temp Terminal", "properties": {"origin_onestop_id": "s-9q9p3cnez6-claremontav~hudsonst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q8yyz7y5b-sanfranciscoterminal<1410480", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.28917, 37.859454], [-122.28816, 37.856294]]}, "type": "Feature", "name": "San Pablo Av:Parker St -> San Pablo Av:Grayson St", "properties": {"origin_onestop_id": "s-9q9p3hperc-sanpabloav~parkerst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3782zk-sanpabloav~graysonst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.276819, 37.774893], [-122.27689, 37.773067]]}, "type": "Feature", "name": "Webster St:Lincoln Av -> Webster St:Santa Clara Av", "properties": {"origin_onestop_id": "s-9q9ncs8wxw-websterst~lincolnav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncs2sjf-websterst~santaclaraav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.125117, 37.696332], [-122.130627, 37.702012]]}, "type": "Feature", "name": "Bay Fair BART Station -> Halcyon Dr:Hesperian Blvd", "properties": {"origin_onestop_id": "s-9q9nkyqyex-bayfairbartstation<1500590", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkz7nnh-halcyondr~hesperianblvd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.234656, 37.734077], [-122.237102, 37.735178]]}, "type": "Feature", "name": "Mecartney Rd:Melrose Av -> Mecartney Rd:Camellia Dr", "properties": {"origin_onestop_id": "s-9q9ndmr2yj-mecartneyrd~melroseav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ndmmxm5-mecartneyrd~camelliadr", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.257124, 37.817515], [-122.258797, 37.815939]]}, "type": "Feature", "name": "Harrison St:Frisbie St -> Harrison St:29th St", "properties": {"origin_onestop_id": "s-9q9p1urnfx-harrisonst~frisbiest", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1ujvg9-harrisonst~29thst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.295773, 37.879897], [-122.294329, 37.875418]]}, "type": "Feature", "name": "San Pablo Av:Gilman St -> San Pablo Av:Cedar St", "properties": {"origin_onestop_id": "s-9q9p3pffmu-sanpabloav~gilmanst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3p5br9-sanpabloav~cedarst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.292158, 37.846713], [-122.295368, 37.846228]]}, "type": "Feature", "name": "65th St:Hollis St -> 65th St:Shellmound St (Bay St)", "properties": {"origin_onestop_id": "s-9q9p31v944-65thst~hollisst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p31enr2-65thst~shellmoundstbayst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.272396, 37.863371], [-122.274268, 37.863141]]}, "type": "Feature", "name": "Dwight Way:Martin Luther King Jr Way -> Dwight Way:Grant St", "properties": {"origin_onestop_id": "s-9q9p3sgfne-dwightway~martinlutherkingjrway", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3sf8g1-dwightway~grantst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.120437, 37.70026], [-122.119021, 37.701611]]}, "type": "Feature", "name": "159th Av:E 14th St -> 159th Av:Mateo St", "properties": {"origin_onestop_id": "s-9q9nmp4egt-159thav~e14thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmp7eu9-159thav~mateost", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.262297, 37.763009], [-122.262987, 37.761634]]}, "type": "Feature", "name": "Otis Dr:Grand St -> Grand St:#433 (Opp. Wood Middle School)", "properties": {"origin_onestop_id": "s-9q9ncfe33z-otisdr~grandst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncf6c3y-grandst~433oppwoodmiddleschool", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.261356, 37.887704], [-122.262504, 37.886293]]}, "type": "Feature", "name": "Euclid Av:#1152 -> Euclid Av:Eunice St", "properties": {"origin_onestop_id": "s-9q9p9c5zzg-euclidav~1152", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9bgpth-euclidav~eunicest", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.269908, 37.799051], [-122.268771, 37.80173]]}, "type": "Feature", "name": "Harrison St:8th St -> 12th St:Harrison St", "properties": {"origin_onestop_id": "s-9q9p19jg2t-harrisonst~8thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p19we51-12thst~harrisonst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.266423, 37.900846], [-122.265099, 37.899189]]}, "type": "Feature", "name": "Grizzly Peak Blvd:Creston Rd (North-West Jctn) -> Grizzly Peak Blvd:Keeler Av", "properties": {"origin_onestop_id": "s-9q9p9g8k3v-grizzlypeakblvd~crestonrdnorth~westjctn", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9g36b8-grizzlypeakblvd~keelerav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.261317, 37.887576], [-122.262462, 37.889915]]}, "type": "Feature", "name": "Euclid Av:#1151 -> Euclid Av:Bret Harte Path", "properties": {"origin_onestop_id": "s-9q9p9chp0u-euclidav~1151", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9cehy0-euclidav~brethartepath", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.299974, 37.784721], [-122.302131, 37.78561]]}, "type": "Feature", "name": "W Ranger Av:#650 -> Saratoga St:W Midway Av", "properties": {"origin_onestop_id": "s-9q9nbyrzun-wrangerav~650", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nbywm1u-saratogast~wmidwayav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.229544, 37.729151], [-122.212355, 37.712655]]}, "type": "Feature", "name": "Maitland Dr:Harbor Bay Pkwy -> Oakland International Airport", "properties": {"origin_onestop_id": "s-9q9nds7hjp-maitlanddr~harborbaypkwy", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ndcrsjs-oaklandinternationalairport", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.271734, 37.782344], [-122.275281, 37.779879]]}, "type": "Feature", "name": "Challenger Dr:Marina Village Pkwy -> Atlantic Av:Constitution Way", "properties": {"origin_onestop_id": "s-9q9ncwh6n5-challengerdr~marinavillagepkwy", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nct9ger-atlanticav~constitutionway", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.291637, 37.860622], [-122.289158, 37.861103]]}, "type": "Feature", "name": "Dwight Way:9th St -> Dwight Way:San Pablo Av", "properties": {"origin_onestop_id": "s-9q9p3hmfn7-dwightway~9thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3hrubj-dwightway~sanpabloav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.267328, 37.85894], [-122.266917, 37.860275]]}, "type": "Feature", "name": "Adeline St:Ward St -> Shattuck Av:Derby St", "properties": {"origin_onestop_id": "s-9q9p3sp8kc-adelinest~wardst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3srbn6-shattuckav~derbyst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.25101, 37.850868], [-122.249954, 37.852177]]}, "type": "Feature", "name": "Claremont Av:Mystic St -> Claremont Av:Eton Ct", "properties": {"origin_onestop_id": "s-9q9p64e92c-claremontav~mysticst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p64u2ct-claremontav~etonct", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.214726, 37.832633], [-122.219031, 37.832992]]}, "type": "Feature", "name": "Thornhill Dr:Mountain Blvd -> Moraga Av:Estates Dr", "properties": {"origin_onestop_id": "s-9q9p4zjzn3-thornhilldr~mountainblvd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4z6c4h-moragaav~estatesdr", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.219433, 37.819448], [-122.218641, 37.819411]]}, "type": "Feature", "name": "Hampton Rd:Glen Alpine Rd -> Hampton Rd:La Salle Av", "properties": {"origin_onestop_id": "s-9q9p4ufd2b-hamptonrd~glenalpinerd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4ug453-hamptonrd~lasalleav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.268676, 37.854812], [-122.266193, 37.855265]]}, "type": "Feature", "name": "Ashby Av:Adeline St (Ashby BART Station) -> Ashby Av:Shattuck Av", "properties": {"origin_onestop_id": "s-9q9p3eq8m2-ashbyav~adelinestashbybartstation", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3g26zh-ashbyav~shattuckav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.225276, 37.819478], [-122.22303, 37.817632]]}, "type": "Feature", "name": "Crocker Av:Hampton Rd -> Hampton Rd:Seaview Av", "properties": {"origin_onestop_id": "s-9q9p4sy62t-crockerav~hamptonrd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4srzsv-hamptonrd~seaviewav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.214917, 37.818219], [-122.212851, 37.817729]]}, "type": "Feature", "name": "Hampton Rd:Sandringham Rd -> Estates Dr:Hampton Rd", "properties": {"origin_onestop_id": "s-9q9p4utg44-hamptonrd~sandringhamrd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4ux24p-estatesdr~hamptonrd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.242717, 37.744242], [-122.239174, 37.743631]]}, "type": "Feature", "name": "Robert Davey Jr Dr:Puddingstone Rd -> Robert Davey Jr Dr:Packet Landing Rd", "properties": {"origin_onestop_id": "s-9q9ndr1s4h-robertdaveyjrdr~puddingstonerd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ndrh0sf-robertdaveyjrdr~packetlandingrd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.308337, 37.907733], [-122.309363, 37.908913]]}, "type": "Feature", "name": "Carlson Blvd:Huntington Dr -> Carlson Blvd:Sutter Av", "properties": {"origin_onestop_id": "s-9q9p8ucu91-carlsonblvd~huntingtondr", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p8v153m-carlsonblvd~sutterav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.289158, 37.861103], [-122.287041, 37.86137]]}, "type": "Feature", "name": "Dwight Way:San Pablo Av -> Dwight Way:Mathews St", "properties": {"origin_onestop_id": "s-9q9p3hrubj-dwightway~sanpabloav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3k3q3q-dwightway~mathewsst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.289566, 37.806874], [-122.290173, 37.805133]]}, "type": "Feature", "name": "Union St:10th St -> Union St:8th St", "properties": {"origin_onestop_id": "s-9q9p14x3n8-unionst~10thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p14pnb7-unionst~8thst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.293855, 37.785058], [-122.297892, 37.785622]]}, "type": "Feature", "name": "W Midway Av:Orion St -> W Midway Av:Pan Am Way", "properties": {"origin_onestop_id": "s-9q9ncns3ft-wmidwayav~orionst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncn9mhw-wmidwayav~panamway", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.303177, 37.91147], [-122.301928, 37.909637]]}, "type": "Feature", "name": "Richmond St:Waldo Av -> Richmond St:Stockton Av", "properties": {"origin_onestop_id": "s-9q9p8vtd36-richmondst~waldoav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p8vnrws-richmondst~stocktonav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.265045, 37.892464], [-122.264053, 37.890737]]}, "type": "Feature", "name": "Euclid Av:Easter Way -> Euclid Av:Cragmont Av", "properties": {"origin_onestop_id": "s-9q9p9f179g-euclidav~easterway", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p9cf191-euclidav~cragmontav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.22929, 37.798794], [-122.227145, 37.800145]]}, "type": "Feature", "name": "14th Av:E 31st St -> 14th Av:E 33rd St", "properties": {"origin_onestop_id": "s-9q9p4953gj-14thav~e31stst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p49kcv1-14thav~e33rdst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.22303, 37.817632], [-122.221163, 37.818286]]}, "type": "Feature", "name": "Hampton Rd:Seaview Av -> Hampton Rd:Saint James Dr", "properties": {"origin_onestop_id": "s-9q9p4srzsv-hamptonrd~seaviewav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4u972r-hamptonrd~saintjamesdr", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.2739, 37.853892], [-122.270609, 37.854256]]}, "type": "Feature", "name": "Ashby Av:King St -> Ashby Av:Martin Luther King Jr Way(Ashby BART Sa.)", "properties": {"origin_onestop_id": "s-9q9p3e4fgs-ashbyav~kingst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3ejm02-ashbyav~martinlutherkingjrwayashbybartsa", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.270287, 37.864586], [-122.272396, 37.863371]]}, "type": "Feature", "name": "Haste St:Milvia St -> Dwight Way:Martin Luther King Jr Way", "properties": {"origin_onestop_id": "s-9q9p3tj3py-hastest~milviast", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3sgfne-dwightway~martinlutherkingjrway", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.293147, 37.871763], [-122.292544, 37.869114]]}, "type": "Feature", "name": "San Pablo Av:Delaware St -> University Av:San Pablo Av", "properties": {"origin_onestop_id": "s-9q9p3nkg50-sanpabloav~delawarest", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3jv794-universityav~sanpabloav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.293981, 37.859594], [-122.293665, 37.858548]]}, "type": "Feature", "name": "7th St:Cutter Way -> 7th St:Parker St", "properties": {"origin_onestop_id": "s-9q9p3hhhpe-7thst~cutterway", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p35uqp0-7thst~parkerst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.249034, 37.737566], [-122.25196, 37.738463]]}, "type": "Feature", "name": "Mecartney Rd:Baywalk Rd -> Aughinbaugh Way:Mecartney Rd", "properties": {"origin_onestop_id": "s-9q9ndjuvr0-mecartneyrd~baywalkrd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ndn4f6z-aughinbaughway~mecartneyrd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.267168, 37.860671], [-122.267791, 37.859036]]}, "type": "Feature", "name": "Shattuck Av:Derby St -> Adeline St:Ward St", "properties": {"origin_onestop_id": "s-9q9p3srf2k-shattuckav~derbyst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3sp2cg-adelinest~wardst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.228691, 37.765222], [-122.232216, 37.767139]]}, "type": "Feature", "name": "Fernside Blvd:Harvard Dr -> Fernside Blvd:Versailles Av", "properties": {"origin_onestop_id": "s-9q9nfdgy35-fernsideblvd~harvarddr", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nfe31wb-fernsideblvd~versaillesav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.278566, 37.862586], [-122.280934, 37.862292]]}, "type": "Feature", "name": "Dwight Way:California St -> Dwight Way:Sacramento St", "properties": {"origin_onestop_id": "s-9q9p3kxmwc-dwightway~californiast", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3ktezd-dwightway~sacramentost", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.119021, 37.701611], [-122.116869, 37.704617]]}, "type": "Feature", "name": "159th Av:Mateo St -> 159th Av:Liberty St", "properties": {"origin_onestop_id": "s-9q9nmp7eu9-159thav~mateost", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmpvjqd-159thav~libertyst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.249537, 37.757068], [-122.252767, 37.758682]]}, "type": "Feature", "name": "Alameda South Shore Center At Park St -> Alameda South Shore Center:Kohl's", "properties": {"origin_onestop_id": "s-9q9nf1kwg7-alamedasouthshorecenteratparkst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nf1f220-alamedasouthshorecenter~kohls", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.265257, 37.82674], [-122.268868, 37.827279]]}, "type": "Feature", "name": "Telegraph Av:W MacArthur Blvd -> W MacArthur Blvd:Martin Luther King Jr Way", "properties": {"origin_onestop_id": "s-9q9p1y1htp-telegraphav~wmacarthurblvd", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1wnxbg-wmacarthurblvd~martinlutherkingjrway", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.117394, 37.686732], [-122.118979, 37.68722]]}, "type": "Feature", "name": "E Lewelling Blvd:Meekland Av -> Ashland Av:E Lewelling Blvd", "properties": {"origin_onestop_id": "s-9q9nmhsv4k-elewellingblvd~meeklandav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmhexvx-ashlandav~elewellingblvd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.29506, 37.810145], [-122.296334, 37.808536]]}, "type": "Feature", "name": "Peralta St:12th St -> Peralta St:10th St", "properties": {"origin_onestop_id": "s-9q9p155kn9-peraltast~12thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p14fd8v-peraltast~10thst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.143174, 37.701543], [-122.147306, 37.699845]]}, "type": "Feature", "name": "Floresta Blvd:Fremont Av (Near Washington Av) -> Floresta Blvd:Monterey Blvd", "properties": {"origin_onestop_id": "s-9q9nkx653v-florestablvd~fremontavnearwashingtonav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkrp192-florestablvd~montereyblvd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.29383, 37.80503], [-122.290218, 37.80458]]}, "type": "Feature", "name": "7th St:Mandela Pkwy -> Union St:7th St", "properties": {"origin_onestop_id": "s-9q9p145svu-westoaklandbartstation<9901820", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p14ngxk-unionst~7thst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.2311, 37.758946], [-122.228526, 37.76127]]}, "type": "Feature", "name": "High St:Santa Clara Av -> High St:Fairview Av", "properties": {"origin_onestop_id": "s-9q9nf9f1bc-highst~santaclaraav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nfd5zkf-highst~fairviewav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.284249, 37.825983], [-122.284342, 37.823562]]}, "type": "Feature", "name": "Hollis St:34th St -> Peralta St:Louise St", "properties": {"origin_onestop_id": "s-9q9p1q5266-hollisst~34thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1me60q-peraltast~louisest", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.260455, 37.876848], [-122.260832, 37.878556]]}, "type": "Feature", "name": "Euclid Av:Le Conte Av -> Euclid Av:Hilgard Av", "properties": {"origin_onestop_id": "s-9q9p3zk8su-euclidav~leconteav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3zs6s4-euclidav~hilgardav", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.234017, 37.852564], [-122.235995, 37.853842]]}, "type": "Feature", "name": "Tunnel Rd:#261 -> Tunnel Rd:Vicente Rd", "properties": {"origin_onestop_id": "s-9q9p66zghv-tunnelrd~261", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p67n6wg-tunnelrd~vicenterd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.289583, 37.860794], [-122.28917, 37.859454]]}, "type": "Feature", "name": "San Pablo Av:Dwight Way -> San Pablo Av:Parker St", "properties": {"origin_onestop_id": "s-9q9p3hr7n5-sanpabloav~dwightway", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3hperc-sanpabloav~parkerst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.157394, 37.725433], [-122.154773, 37.725256]]}, "type": "Feature", "name": "Davis St:E 14th St -> Estudillo Av:E 14th St", "properties": {"origin_onestop_id": "s-9q9ns5xww6-davisst~e14thst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns79te3-estudilloav~e14thst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.284008, 37.861877], [-122.286078, 37.861609]]}, "type": "Feature", "name": "Dwight Way:Valley St -> Dwight Way:Bonar St", "properties": {"origin_onestop_id": "s-9q9p3ke92j-dwightway~valleyst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3k3zzg-dwightway~bonarst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.27677, 37.777035], [-122.277159, 37.775303]]}, "type": "Feature", "name": "Webster St:Buena Vista Av -> Lincoln Av:Webster St", "properties": {"origin_onestop_id": "s-9q9nct0g0t-websterst~buenavistaav", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ncsb3pd-lincolnav~websterst", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.170361, 37.721259], [-122.172958, 37.720525]]}, "type": "Feature", "name": "Davis St:Douglas Dr -> Davis St:Frederick Rd", "properties": {"origin_onestop_id": "s-9q9nefyq22-davisst~douglasdr", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nefu3gx-davisst~frederickrd", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.263047, 37.809529], [-122.265725, 37.808435]]}, "type": "Feature", "name": "Harrison St:21st St -> T.L. Berkley Way (20th St) :Webster St (Kaiser Ct)", "properties": {"origin_onestop_id": "s-9q9p1g4b2x-harrisonst~21stst", "stroke": "#fef0d9", "frequency": 2.0, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1fbf45-tlberkleyway20thst~websterstkaiserct", "stroke-width": 1, "trips": 4}}, {"geometry": {"type": "LineString", "coordinates": [[-122.132399, 37.718573], [-122.134098, 37.721346]]}, "type": "Feature", "name": "Benedict Dr:Vista Grand Dr -> Benedict Dr:Montrose Dr", "properties": {"origin_onestop_id": "s-9q9nsf3ysg-benedictdr~vistagranddr", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nsfbwv0-benedictdr~montrosedr", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.27416, 37.881231], [-122.273934, 37.879447]]}, "type": "Feature", "name": "Martin Luther King Jr Way:Rose St -> Martin Luther King Jr Way:Vine St", "properties": {"origin_onestop_id": "s-9q9p984djt-martinlutherkingjrway~rosest", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3xdzfb-martinlutherkingjrway~vinest", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.272777, 37.86844], [-122.272586, 37.866741]]}, "type": "Feature", "name": "Martin Luther King Jr Way:Allston Way -> Martin Luther King Jr Way:Bancroft Way", "properties": {"origin_onestop_id": "s-9q9p3textu-martinlutherkingjrway~allstonway", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3t7vf0-martinlutherkingjrway~bancroftway", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.26601, 37.798578], [-122.26649, 37.79786]]}, "type": "Feature", "name": "Madison St:10th St -> Madison St:9th St", "properties": {"origin_onestop_id": "s-9q9p1c08em-madisonst~10thst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1bbk2r-madisonst~9thst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.185136, 37.75318], [-122.182991, 37.754526]]}, "type": "Feature", "name": "81st Av:Rudsdale St -> 81st Av:B St", "properties": {"origin_onestop_id": "s-9q9ng8g2py-81stav~rudsdalest", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ng9j01c-81stav~bst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.253904, 37.820052], [-122.393593, 37.789589]]}, "type": "Feature", "name": "Harrison St:W MacArthur Blvd -> Transbay Temp Terminal", "properties": {"origin_onestop_id": "s-9q9p4hcmv8-harrisonst~wmacarthurblvd", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q8yyz7y5b-sanfranciscoterminal<1410420", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.090067, 37.692858], [-122.090935, 37.692741]]}, "type": "Feature", "name": "Castro Valley Blvd:Stanton Av -> John Dr:Castro Valley Blvd", "properties": {"origin_onestop_id": "s-9q9nmvb8z4-castrovalleyblvd~stantonav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmvb05h-johndr~castrovalleyblvd", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.265574, 37.799455], [-122.26601, 37.798578]]}, "type": "Feature", "name": "11th St:Madison St -> Madison St:10th St", "properties": {"origin_onestop_id": "s-9q9p1c0vv9-11thst~madisonst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1c08em-madisonst~10thst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.158545, 37.743632], [-122.157251, 37.74182]]}, "type": "Feature", "name": "Bancroft Av:103rd Av -> Bancroft Av:Link St (Near 106th Av)", "properties": {"origin_onestop_id": "s-9q9nspnbed-bancroftav~103rdav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nsnxy19-bancroftav~linkstnear106thav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.157251, 37.74182], [-122.155747, 37.739814]]}, "type": "Feature", "name": "Bancroft Av:Link St (Near 106th Av) -> Bancroft Av:109th Av", "properties": {"origin_onestop_id": "s-9q9nsnxy19-bancroftav~linkstnear106thav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nsq2fkg-bancroftav~109thav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.182991, 37.754526], [-122.18073, 37.755998]]}, "type": "Feature", "name": "81st Av:B St -> 81st Av:International Blvd", "properties": {"origin_onestop_id": "s-9q9ng9j01c-81stav~bst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ng9q8ws-81stav~internationalblvd", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.15731, 37.698573], [-122.158965, 37.699872]]}, "type": "Feature", "name": "Wiley St:Bethany St -> Spruce St:Acacia St", "properties": {"origin_onestop_id": "s-9q9nknzf07-wileyst~bethanyst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkpn99v-sprucest~acaciast", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.137526, 37.724051], [-122.138889, 37.725594]]}, "type": "Feature", "name": "Grand Av:Sybil Av -> Grand Av:Maud Av", "properties": {"origin_onestop_id": "s-9q9nseqnt2-grandav~sybilav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nsetpt8-grandav~maudav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.249438, 37.837239], [-122.251078, 37.836836]]}, "type": "Feature", "name": "Broadway Ter:Thomas Av (Arts Jr High Sch./Far W H) -> Broadway:College Av", "properties": {"origin_onestop_id": "s-9q9p60h9vs-broadwayter~thomasavartsjrhighsch~farwh", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4pgrx3-broadway~collegeav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.273076, 37.871199], [-122.27073, 37.869907]]}, "type": "Feature", "name": "Martin Luther King Jr Way:University Av -> Center St:Milvia St", "properties": {"origin_onestop_id": "s-9q9p3w5rwz-martinlutherkingjrway~universityav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3wj0jq-centerst~milviast", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.274345, 37.882975], [-122.27416, 37.881231]]}, "type": "Feature", "name": "Martin Luther King Jr Way:Berryman St -> Martin Luther King Jr Way:Rose St", "properties": {"origin_onestop_id": "s-9q9p986s36-martinlutherkingjrway~berrymanst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p984djt-martinlutherkingjrway~rosest", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.271562, 37.85774], [-122.27142, 37.856222]]}, "type": "Feature", "name": "Martin Luther King Jr Way:Stuart St -> Martin Luther King Jr Way:Russell St", "properties": {"origin_onestop_id": "s-9q9p3eu964-martinlutherkingjrway~stuartst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3es8mr-martinlutherkingjrway~russellst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.230758, 37.824533], [-122.229589, 37.823268]]}, "type": "Feature", "name": "Highland Av:Mountain Av -> Highland Av:Guilford Rd (North Jctn)", "properties": {"origin_onestop_id": "s-9q9p4tdrbu-highlandav~mountainav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4te0s0-highlandav~guilfordrdnorthjctn", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.180842, 37.808185], [-122.179479, 37.805074]]}, "type": "Feature", "name": "Joaquin Miller Rd:Crockett Pl -> Joaquin Miller Rd:Skyline Blvd", "properties": {"origin_onestop_id": "s-9q9p5dy8sh-joaquinmillerrd~crockettpl", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5dpweb-joaquinmillerrd~skylineblvd", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.204357, 37.808199], [-122.202162, 37.80946]]}, "type": "Feature", "name": "Lincoln Av:Head Royce School -> Lincoln Av:#4500", "properties": {"origin_onestop_id": "s-9q9p54v88p-lincolnav~headroyceschool", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p55p054-lincolnav~4500", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.100994, 37.692775], [-122.102028, 37.693927]]}, "type": "Feature", "name": "Foothill Blvd:173rd Av -> Foothill Blvd:170th Av", "properties": {"origin_onestop_id": "s-9q9nmtbb2d-foothillblvd~173rdav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmtbp09-foothillblvd~170thav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.253103, 37.833055], [-122.251989, 37.834686]]}, "type": "Feature", "name": "Broadway:Whitmore St -> Broadway:Pleasant Valley Av", "properties": {"origin_onestop_id": "s-9q9p4p6180-broadway~whitmorest", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4pdg40-broadway~pleasantvalleyav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.261525, 37.812469], [-122.259503, 37.814713]]}, "type": "Feature", "name": "Harrison St:Bay Pl -> Harrison St:Hamilton Pl (West Lake Middle School)", "properties": {"origin_onestop_id": "s-9q9p1geceg-harrisonst~baypl", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1gvqej-harrisonst~hamiltonplwestlakemiddleschool", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.235761, 37.825205], [-122.233071, 37.826145]]}, "type": "Feature", "name": "Oakland Av:Hillside Av -> Oakland Av:Highland Av", "properties": {"origin_onestop_id": "s-9q9p4myeu3-oaklandav~hillsideav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4w0970-oaklandav~highlandav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.147287, 37.77147], [-122.144541, 37.772993]]}, "type": "Feature", "name": "Keller Av:Canyon Oaks -> Keller Av:Campus Dr", "properties": {"origin_onestop_id": "s-9q9nukp4cb-kellerav~canyonoaks", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nus359u-kellerav~campusdr", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.196536, 37.81084], [-122.194825, 37.810671]]}, "type": "Feature", "name": "Joaquin Miller Rd:Mountain Blvd -> Joaquin Miller Rd:Hedge Ln", "properties": {"origin_onestop_id": "s-9q9p5770n7-joaquinmillerrd~mountainblvd", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p57hrn5-joaquinmillerrd~hedgeln", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.273829, 37.879809], [-122.274086, 37.881711]]}, "type": "Feature", "name": "Martin Luther King Jr Way:Vine St -> Martin Luther King Jr Way:Rose St", "properties": {"origin_onestop_id": "s-9q9p3xfcvk-martinlutherkingjrway~vinest", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p984szq-martinlutherkingjrway~rosest", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.175798, 37.757397], [-122.173782, 37.758373]]}, "type": "Feature", "name": "82nd Av:Plymouth St -> 82nd Av:Birch St", "properties": {"origin_onestop_id": "s-9q9ngcd2c8-82ndav~plymouthst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngcey2w-82ndav~birchst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.172374, 37.759053], [-122.170148, 37.760126]]}, "type": "Feature", "name": "82nd Av:Olive St -> 82nd Av:Bancroft Av", "properties": {"origin_onestop_id": "s-9q9ngcuf3m-82ndav~olivest", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngfn2tj-82ndav~bancroftav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.156687, 37.761555], [-122.152232, 37.760888]]}, "type": "Feature", "name": "Fontaine St:#9120 -> Fontaine St:Crest Av (Charles Howard School)", "properties": {"origin_onestop_id": "s-9q9nu621nb-fontainest~9120", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu65mne-fontainest~crestavcharleshowardschool", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.268758, 37.807998], [-122.267431, 37.808653]]}, "type": "Feature", "name": "Broadway:19th St (19th St BART Station) -> Thomas L Berkley Way (20th St):Franklin St", "properties": {"origin_onestop_id": "s-9q9p1dwxe3-broadway~19thst19thstbartstation", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1dze67-thomaslberkleyway20thst~franklinst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.169749, 37.774546], [-122.173903, 37.768992]]}, "type": "Feature", "name": "Hillmont Dr:Sunkist Dr -> Eastmont Transit Center", "properties": {"origin_onestop_id": "s-9q9nguwswt-hillmontdr~sunkistdr", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nggesmd-eastmonttransitcenter", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.221209, 37.832853], [-122.223999, 37.833718]]}, "type": "Feature", "name": "Harbord Dr:Moraga Av -> Harbord Dr:Maxwelton Rd", "properties": {"origin_onestop_id": "s-9q9p4z30r6-harborddr~moragaav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4xrjqk-harborddr~maxweltonrd", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.216647, 37.798659], [-122.216622, 37.800546]]}, "type": "Feature", "name": "Montana St:Fruitvale Av -> MacArthur Blvd:Fruitvale Av", "properties": {"origin_onestop_id": "s-9q9p4ch91s-montanast~fruitvaleav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4ckf4b-fruitvaleave~macarthurblvd<1014960", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.253614, 37.760666], [-122.255084, 37.759838]]}, "type": "Feature", "name": "Otis Dr:Willow St -> Willow St:Whitehall Pl", "properties": {"origin_onestop_id": "s-9q9nf41eu6-otisdr~willowst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nf1bwfp-willowst~whitehallpl", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.191814, 37.809726], [-122.189592, 37.809583]]}, "type": "Feature", "name": "Joaquin Miller Rd:Butters Dr -> Joaquin Miller Rd:Crane Way (West Jctn)", "properties": {"origin_onestop_id": "s-9q9p57n9s7-joaquinmillerrd~buttersdr", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5e02b1-joaquinmillerrd~cranewaywestjctn", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.195417, 37.787141], [-122.393061, 37.789878]]}, "type": "Feature", "name": "High St:MacArthur Blvd -> Transbay Temp Terminal", "properties": {"origin_onestop_id": "s-9q9ngqun03-highst~macarthurblvd", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q8yyz7y5b-sanfranciscoterminal<1410370", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.195885, 37.747417], [-122.196867, 37.753539]]}, "type": "Feature", "name": "Hegenberger Rd:Baldwin St -> San Leandro St:Coliseum BART Station", "properties": {"origin_onestop_id": "s-9q9nerewts-hegenbergerrd~baldwinst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ng2ff5m-coliseumbartstation<1018220", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.272387, 37.864936], [-122.272183, 37.863105]]}, "type": "Feature", "name": "Martin Luther King Jr Way:Channing Way -> Martin Luther King Jr Way:Dwight Way", "properties": {"origin_onestop_id": "s-9q9p3t5gnz-martinlutherkingjrway~channingway", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3su0ed-martinlutherkingjrway~dwightway", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.229589, 37.823268], [-122.229578, 37.822344]]}, "type": "Feature", "name": "Highland Av:Guilford Rd (North Jctn) -> Highland Av:Guilford Rd (South Jctn)", "properties": {"origin_onestop_id": "s-9q9p4te0s0-highlandav~guilfordrdnorthjctn", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4t75h7-highlandav~guilfordrdsouthjctn", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.274464, 37.802963], [-122.271338, 37.803848]]}, "type": "Feature", "name": "11th St:Clay St -> Broadway:13th St (12th St BART Station)", "properties": {"origin_onestop_id": "s-9q9p19f6nr-11thst~clayst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1dh9te-14thst~broadway<1006350", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.276739, 37.846387], [-122.277738, 37.848458]]}, "type": "Feature", "name": "Market St:62nd St -> Sacramento St:Alcatraz Av", "properties": {"origin_onestop_id": "s-9q9p398z1m-marketst~62ndst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3d054p-sacramentost~alcatrazav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.087063, 37.694188], [-122.090067, 37.692858]]}, "type": "Feature", "name": "Castro Valley Blvd:Park Way -> Castro Valley Blvd:Stanton Av", "properties": {"origin_onestop_id": "s-9q9nmy4bt1-castrovalleyblvd~parkway", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmvb8z4-castrovalleyblvd~stantonav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.165097, 37.762516], [-122.162203, 37.762041]]}, "type": "Feature", "name": "82nd Av:MacArthur Blvd -> Golf Links Rd:#8335", "properties": {"origin_onestop_id": "s-9q9nu46ndg-82ndav~macarthurblvd", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu4k5y6-golflinksrd~8335", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.237493, 37.824614], [-122.235761, 37.825205]]}, "type": "Feature", "name": "Oakland Av:El Cerrito Av -> Oakland Av:Hillside Av", "properties": {"origin_onestop_id": "s-9q9p4mv27g-oaklandav~elcerritoav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4myeu3-oaklandav~hillsideav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.273559, 37.875807], [-122.273302, 37.873426]]}, "type": "Feature", "name": "Martin Luther King Jr Way:Virginia St -> Martin Luther King Jr Way:Hearst Av", "properties": {"origin_onestop_id": "s-9q9p3x54ed-martinlutherkingjrway~virginiast", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3wek9w-martinlutherkingjrway~hearstav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.09356, 37.691336], [-122.100994, 37.692775]]}, "type": "Feature", "name": "Foothill Blvd:John Dr -> Foothill Blvd:173rd Av", "properties": {"origin_onestop_id": "s-9q9nmtqpvy-foothillblvd~johndr", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmtbb2d-foothillblvd~173rdav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.152446, 37.695384], [-122.154293, 37.695325]]}, "type": "Feature", "name": "Purdue St:Farnsworth St -> Purdue St:Esser Av", "properties": {"origin_onestop_id": "s-9q9nkq5r98-purduest~farnsworthst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkq1znt-purduest~esserav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.392997, 37.790087], [-122.31535, 37.823222]]}, "type": "Feature", "name": "Transbay Temp Terminal -> I-80 Fwy:Toll Plaza (East Bound)", "properties": {"origin_onestop_id": "s-9q8yyz7y5b-sanfranciscoterminal<1410320", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p0ts8jz-i~80fwy~tollplazaeastbound", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.134098, 37.721346], [-122.137526, 37.724051]]}, "type": "Feature", "name": "Benedict Dr:Montrose Dr -> Grand Av:Sybil Av", "properties": {"origin_onestop_id": "s-9q9nsfbwv0-benedictdr~montrosedr", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nseqnt2-grandav~sybilav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.27073, 37.869907], [-122.267662, 37.87076]]}, "type": "Feature", "name": "Center St:Milvia St -> Shattuck Sq:Center St", "properties": {"origin_onestop_id": "s-9q9p3wj0jq-centerst~milviast", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3wp1qn-centerst~shattuckave<0306210", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.138889, 37.725594], [-122.138883, 37.7284]]}, "type": "Feature", "name": "Grand Av:Maud Av -> Grand Av:Joaquin Av", "properties": {"origin_onestop_id": "s-9q9nsetpt8-grandav~maudav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nssjpve-grandav~joaquinav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.238985, 37.855281], [-122.236689, 37.854225]]}, "type": "Feature", "name": "Tunnel Rd:The Uplands -> Tunnel Rd:Roble Rd", "properties": {"origin_onestop_id": "s-9q9p67k6cp-tunnelrd~theuplands", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p67juyd-tunnelrd~roblerd", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.144055, 37.684621], [-122.146214, 37.683521]]}, "type": "Feature", "name": "Lewelling Blvd:Sullivan Av -> Lewelling Blvd:Andover St", "properties": {"origin_onestop_id": "s-9q9nks32v4-lewellingblvd~sullivanav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkkpf6v-lewellingblvd~andoverst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.295368, 37.846228], [-122.296453, 37.845658]]}, "type": "Feature", "name": "65th St:Shellmound St (Bay St) -> Christie St:65th St", "properties": {"origin_onestop_id": "s-9q9p31enr2-65thst~shellmoundstbayst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p31d6yj-christiest~65thst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.150431, 37.770262], [-122.147287, 37.77147]]}, "type": "Feature", "name": "Keller Av:Rilea Way (Sequoyah Community Church) -> Keller Av:Canyon Oaks", "properties": {"origin_onestop_id": "s-9q9nu7ug8x-kellerav~rileawaysequoyahcommunitychurch", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nukp4cb-kellerav~canyonoaks", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.160482, 37.722059], [-122.164147, 37.722925]]}, "type": "Feature", "name": "San Leandro BART Station -> Davis St:Alvarado St", "properties": {"origin_onestop_id": "s-9q9ns5j6ym-sanleandrobartstation", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns54zcn-davisst~alvaradost", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.295826, 37.843706], [-122.295508, 37.842652]]}, "type": "Feature", "name": "Christie St:64th St -> Christie Av:Pacific Park Plaza", "properties": {"origin_onestop_id": "s-9q9p314zsd-christiest~64thst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3151kj-christieav~pacificparkplaza", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.265079, 37.811111], [-122.262962, 37.810744]]}, "type": "Feature", "name": "Grand Av:Webster St -> Grand Av:Harrison St", "properties": {"origin_onestop_id": "s-9q9p1g339j-grandav~websterst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1g4zd3-grandav~harrisonst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.149875, 37.753767], [-122.14768, 37.757302]]}, "type": "Feature", "name": "Mountain Blvd:Golf Links Rd -> Mountain Blvd:Calafia Av", "properties": {"origin_onestop_id": "s-9q9nu2v5ts-mountainblvd~golflinksrd", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu3wb0z-mountainblvd~calafiaav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.228425, 37.838055], [-122.228307, 37.839213]]}, "type": "Feature", "name": "Modoc Av:Sonia St -> Florence Av:Modoc Av", "properties": {"origin_onestop_id": "s-9q9p685yxk-modocav~soniast", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p68kj6h-florenceav~modocav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.289797, 37.816845], [-122.283753, 37.815377]]}, "type": "Feature", "name": "W Grand Av:Mandela Pkwy -> W Grand Av:Adeline St", "properties": {"origin_onestop_id": "s-9q9p1hr714-wgrandav~mandelapkwy", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1k5dw1-wgrandav~adelinest", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.163617, 37.697901], [-122.164878, 37.699725]]}, "type": "Feature", "name": "Spruce St:Merced St -> Merced St:Cedar Av", "properties": {"origin_onestop_id": "s-9q9nknenjq-sprucest~mercedst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkp42b4-mercedst~cedarav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.255084, 37.759838], [-122.255875, 37.758376]]}, "type": "Feature", "name": "Willow St:Whitehall Pl -> Willow St:Franciscan Way", "properties": {"origin_onestop_id": "s-9q9nf1bwfp-willowst~whitehallpl", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nccxyrx-willowst~franciscanway", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.138902, 37.730073], [-122.139456, 37.734507]]}, "type": "Feature", "name": "MacArthur Blvd:Estudillo Av -> Marlow Dr:Foothill Blvd", "properties": {"origin_onestop_id": "s-9q9nsst1t7-macarthurblvd~estudilloav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nstkg2m-marlowdr~foothillblvd", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.226905, 37.821681], [-122.225801, 37.820982]]}, "type": "Feature", "name": "Sheridan Av:Lakeview Av -> Crocker Av:Lincoln Av", "properties": {"origin_onestop_id": "s-9q9p4tjp68-sheridanav~lakeviewav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4tjghq-crockerav~lincolnav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.278788, 37.831134], [-122.273665, 37.830488]]}, "type": "Feature", "name": "40th St:Adeline St -> 40th St:Market St", "properties": {"origin_onestop_id": "s-9q9p1qzn8j-40thst~sanpabloave<0601000", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1wg494-40thst~marketst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.14768, 37.757302], [-122.147688, 37.760316]]}, "type": "Feature", "name": "Mountain Blvd:Calafia Av -> Mountain Blvd:Sequoyah Rd", "properties": {"origin_onestop_id": "s-9q9nu3wb0z-mountainblvd~calafiaav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu6ncb9-mountainblvd~sequoyahrd", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.239996, 37.793997], [-122.241848, 37.792683]]}, "type": "Feature", "name": "14th Av:E 21st St -> 14th Av:E 19th St", "properties": {"origin_onestop_id": "s-9q9p425tcx-14thav~e21stst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nfrfnq6-14thav~e19thst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.173782, 37.758373], [-122.172374, 37.759053]]}, "type": "Feature", "name": "82nd Av:Birch St -> 82nd Av:Olive St", "properties": {"origin_onestop_id": "s-9q9ngcey2w-82ndav~birchst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngcuf3m-82ndav~olivest", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.262962, 37.810744], [-122.259691, 37.809856]]}, "type": "Feature", "name": "Grand Av:Harrison St -> Grand Av:Park View Ter", "properties": {"origin_onestop_id": "s-9q9p1g4zd3-grandav~harrisonst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1gj4qs-grandav~parkviewter", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.295508, 37.842652], [-122.393638, 37.789982]]}, "type": "Feature", "name": "Christie Av:Pacific Park Plaza -> Transbay Temp Terminal", "properties": {"origin_onestop_id": "s-9q9p3151kj-christieav~pacificparkplaza", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q8yyz7y5b-sanfranciscoterminal<1410470", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.273934, 37.879447], [-122.273817, 37.877599]]}, "type": "Feature", "name": "Martin Luther King Jr Way:Vine St -> Martin Luther King Jr Way:Cedar St", "properties": {"origin_onestop_id": "s-9q9p3xdzfb-martinlutherkingjrway~vinest", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3x6vj8-martinlutherkingjrway~cedarst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.272183, 37.863105], [-122.271978, 37.861294]]}, "type": "Feature", "name": "Martin Luther King Jr Way:Dwight Way -> Martin Luther King Jr Way:Parker St", "properties": {"origin_onestop_id": "s-9q9p3su0ed-martinlutherkingjrway~dwightway", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3skq02-martinlutherkingjrway~parkerst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.225792, 37.835006], [-122.225992, 37.837173]]}, "type": "Feature", "name": "Harbord Dr:Hilltop Cr -> Harbord Dr:Florence Av", "properties": {"origin_onestop_id": "s-9q9p4xtuus-harborddr~hilltopcr", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p68j9xb-harborddr~florenceav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.265767, 37.808212], [-122.262097, 37.8112]]}, "type": "Feature", "name": "Thomas L Berkley Way (20th St):Webster St -> Harrison St:Grand Av", "properties": {"origin_onestop_id": "s-9q9p1fbbc1-thomaslberkleyway20thst~websterst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1g76nw-harrisonst~grandav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.287154, 37.85215], [-122.292298, 37.848981]]}, "type": "Feature", "name": "Ashby Av:San Pablo Av -> Hollis St:67th St", "properties": {"origin_onestop_id": "s-9q9p36c0yb-ashbyav~sanpabloav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p34jqqc-hollisst~67thst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.179328, 37.739655], [-122.181577, 37.737899]]}, "type": "Feature", "name": "98th Av:San Leandro St -> 98th Av:Railroad Av", "properties": {"origin_onestop_id": "s-9q9newr9rm-98thav~sanleandrost", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9netyp4y-98thav~railroadav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.176542, 37.741609], [-122.179328, 37.739655]]}, "type": "Feature", "name": "98th Av:E St -> 98th Av:San Leandro St", "properties": {"origin_onestop_id": "s-9q9ney9ub1-98thav~est", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9newr9rm-98thav~sanleandrost", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.193042, 37.810518], [-122.197808, 37.811319]]}, "type": "Feature", "name": "Joaquin Miller Rd:Sanborn Dr (West Jctn) -> Mountain Blvd:Woodminster Ln(Near Joaquin Miller)", "properties": {"origin_onestop_id": "s-9q9p57jwpz-joaquinmillerrd~sanborndrwestjctn", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5766bs-mountainblvd~woodminsterlnnearjoaquinmiller", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.225801, 37.820982], [-122.225276, 37.819478]]}, "type": "Feature", "name": "Crocker Av:Lincoln Av -> Crocker Av:Hampton Rd", "properties": {"origin_onestop_id": "s-9q9p4tjghq-crockerav~lincolnav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4sy62t-crockerav~hamptonrd", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.090935, 37.692741], [-122.09356, 37.691336]]}, "type": "Feature", "name": "John Dr:Castro Valley Blvd -> Foothill Blvd:John Dr", "properties": {"origin_onestop_id": "s-9q9nmvb05h-johndr~castrovalleyblvd", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmtqpvy-foothillblvd~johndr", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.269537, 37.840063], [-122.269852, 37.841592]]}, "type": "Feature", "name": "Mlk Jr Way:55th St -> Martin Luther King Jr Way:Aileen St", "properties": {"origin_onestop_id": "s-9q9p38w437-mlkjrway~55thst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p38vg3b-martinlutherkingjrway~aileenst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.152232, 37.760888], [-122.152664, 37.7655]]}, "type": "Feature", "name": "Fontaine St:Crest Av (Charles Howard School) -> Fontaine St:Overpass (Near King Estates Mid. Sch.)", "properties": {"origin_onestop_id": "s-9q9nu65mne-fontainest~crestavcharleshowardschool", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu6gpux-fontainest~overpassnearkingestatesmidsch", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.271785, 37.859865], [-122.271562, 37.85774]]}, "type": "Feature", "name": "Martin Luther King Jr Way:Derby St -> Martin Luther King Jr Way:Stuart St", "properties": {"origin_onestop_id": "s-9q9p3shmsy-martinlutherkingjrway~derbyst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3eu964-martinlutherkingjrway~stuartst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.189847, 37.750936], [-122.188273, 37.751704]]}, "type": "Feature", "name": "81st Av:Mother's Cookies Factory -> 81st Av:#860", "properties": {"origin_onestop_id": "s-9q9ng8254h-81stav~motherscookiesfactory", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ng83pwg-81stav~860", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.228307, 37.839213], [-122.229837, 37.840617]]}, "type": "Feature", "name": "Florence Av:Modoc Av -> Florence Av:Hermosa Av", "properties": {"origin_onestop_id": "s-9q9p68kj6h-florenceav~modocav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p68dvw6-florenceav~hermosaav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.105949, 37.698311], [-122.108666, 37.701184]]}, "type": "Feature", "name": "Foothill Blvd:Montessori School -> Foothill Blvd:Miramar Av", "properties": {"origin_onestop_id": "s-9q9nmqv0t4-foothillblvd~montessorischool", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmr71mf-foothillblvd~miramarav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.234681, 37.796191], [-122.236671, 37.795471]]}, "type": "Feature", "name": "14th Av:E 26th St -> 14th Av:E 24th St", "properties": {"origin_onestop_id": "s-9q9p42x6v2-14thav~e26thst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p42myx4-14thav~e24thst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.278325, 37.814234], [-122.2684, 37.80908]]}, "type": "Feature", "name": "W Grand Av:Market St -> Thomas L Berkley Way (20th St):Broadway", "properties": {"origin_onestop_id": "s-9q9p17zeus-wgrandav~marketst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1dyvgg-thomaslberkleyway20thst~broadway", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.225992, 37.837173], [-122.228425, 37.838055]]}, "type": "Feature", "name": "Harbord Dr:Florence Av -> Modoc Av:Sonia St", "properties": {"origin_onestop_id": "s-9q9p68j9xb-harborddr~florenceav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p685yxk-modocav~soniast", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.12475, 37.698392], [-122.125776, 37.696873]]}, "type": "Feature", "name": "Coelho Dr:Mooney Av -> Bay Fair BART Station", "properties": {"origin_onestop_id": "s-9q9nkyz3p1-coelhodr~mooneyav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkyqyex-bayfairbartstation<1504230", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.274908, 37.84409], [-122.276739, 37.846387]]}, "type": "Feature", "name": "Market St:59th St -> Market St:62nd St", "properties": {"origin_onestop_id": "s-9q9p3961u1-marketst~59thst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p398z1m-marketst~62ndst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.117547, 37.706218], [-122.119987, 37.707527]]}, "type": "Feature", "name": "Foothill Blvd:Fairmont Hospital South Entrance -> Foothill Blvd:Fairmont Hospital North Entrance", "properties": {"origin_onestop_id": "s-9q9nt0hwwu-foothillblvd~fairmonthospitalsouthentrance", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nt06yq0-foothillblvd~fairmonthospitalnorthentrance", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.284384, 37.823215], [-122.284116, 37.826136]]}, "type": "Feature", "name": "Peralta St:Louise St -> Hollis St:34th St", "properties": {"origin_onestop_id": "s-9q9p1me0pq-peraltast~louisest", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1q53jw-hollisst~34thst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.167577, 37.761366], [-122.165097, 37.762516]]}, "type": "Feature", "name": "82nd Av:Hillside St -> 82nd Av:MacArthur Blvd", "properties": {"origin_onestop_id": "s-9q9nu40rch-82ndav~hillsidest", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu46ndg-82ndav~macarthurblvd", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.213158, 37.8291], [-122.210718, 37.826291]]}, "type": "Feature", "name": "Moraga Av:Montclair Recreation Center -> Moraga Av:La Salle Av", "properties": {"origin_onestop_id": "s-9q9p4yx47p-moragaav~montclairrecreationcenter", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5n0tsh-moragaave~medaupl<1016690", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.252999, 37.855734], [-122.252821, 37.853701]]}, "type": "Feature", "name": "College Av:Webster St -> College Av:Woolsey St", "properties": {"origin_onestop_id": "s-9q9p656jds-collegeav~websterst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p6541yc-collegeav~woolseyst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.121795, 37.709392], [-122.123222, 37.710106]]}, "type": "Feature", "name": "Foothill Blvd:Fairmont Dr -> Foothill Blvd:150th Av", "properties": {"origin_onestop_id": "s-9q9nt0c95u-foothillblvd~fairmontdr", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nt0bt69-foothillblvd~150thav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.179479, 37.805074], [-122.177355, 37.803024]]}, "type": "Feature", "name": "Joaquin Miller Rd:Skyline Blvd -> Skyline Blvd:Crestmont Dr", "properties": {"origin_onestop_id": "s-9q9p5dpweb-joaquinmillerrd~skylineblvd", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5cc4t6-skylineblvd~crestmontdr", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.229157, 37.842281], [-122.231359, 37.842761]]}, "type": "Feature", "name": "Florence Av:Broadway Ter -> Broadway Ter:Hermosa Av", "properties": {"origin_onestop_id": "s-9q9p68grq0-florenceav~broadwayter", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p691f4c-broadwayter~hermosaav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.231017, 37.797511], [-122.233408, 37.79665]]}, "type": "Feature", "name": "14th Av:E 29th St -> 14th Av:Vallecito Pl", "properties": {"origin_onestop_id": "s-9q9p48f46y-14thav~e29thst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p488m7n-14thav~vallecitopl", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.189592, 37.809583], [-122.183543, 37.809511]]}, "type": "Feature", "name": "Joaquin Miller Rd:Crane Way (West Jctn) -> Joaquin Miller Rd:Robinson Dr", "properties": {"origin_onestop_id": "s-9q9p5e02b1-joaquinmillerrd~cranewaywestjctn", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5eh8m5-joaquinmillerrd~robinsondr", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.229837, 37.840617], [-122.229157, 37.842281]]}, "type": "Feature", "name": "Florence Av:Hermosa Av -> Florence Av:Broadway Ter", "properties": {"origin_onestop_id": "s-9q9p68dvw6-florenceav~hermosaav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p68grq0-florenceav~broadwayter", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.233071, 37.826145], [-122.232291, 37.824902]]}, "type": "Feature", "name": "Oakland Av:Highland Av -> Highland Av:Vista Av", "properties": {"origin_onestop_id": "s-9q9p4w0970-oaklandav~highlandav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4tc63j-highlandave~highlandway<1100350", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.202162, 37.80946], [-122.200501, 37.810321]]}, "type": "Feature", "name": "Lincoln Av:#4500 -> Lincoln Av:Greek Church", "properties": {"origin_onestop_id": "s-9q9p55p054-lincolnav~4500", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p570m1f-lincolnav~greekchurch", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.150041, 37.681591], [-122.151029, 37.685737]]}, "type": "Feature", "name": "Lewelling Blvd:Farnsworth St -> Farnsworth St:Burkhart Av", "properties": {"origin_onestop_id": "s-9q9nk7tp1t-lewellingblvd~farnsworthst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkkkr6d-farnsworthst~burkhartav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.123222, 37.710106], [-122.132399, 37.718573]]}, "type": "Feature", "name": "Foothill Blvd:150th Av -> Benedict Dr:Vista Grand Dr", "properties": {"origin_onestop_id": "s-9q9nt0bt69-foothillblvd~150thav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nsf3ysg-benedictdr~vistagranddr", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.236671, 37.795471], [-122.239996, 37.793997]]}, "type": "Feature", "name": "14th Av:E 24th St -> 14th Av:E 21st St", "properties": {"origin_onestop_id": "s-9q9p42myx4-14thav~e24thst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p425tcx-14thav~e21stst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.178953, 37.755876], [-122.177243, 37.756703]]}, "type": "Feature", "name": "82nd Av:International Blvd -> 82nd Av:Holly St", "properties": {"origin_onestop_id": "s-9q9ngc0pbj-82ndav~internationalblvd", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngc3hxz-82ndav~hollyst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.151846, 37.693122], [-122.152446, 37.695384]]}, "type": "Feature", "name": "Farnsworth St:Avon Av -> Purdue St:Farnsworth St", "properties": {"origin_onestop_id": "s-9q9nkmgdre-farnsworthst~avonav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkq5r98-purduest~farnsworthst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.273302, 37.873426], [-122.273076, 37.871199]]}, "type": "Feature", "name": "Martin Luther King Jr Way:Hearst Av -> Martin Luther King Jr Way:University Av", "properties": {"origin_onestop_id": "s-9q9p3wek9w-martinlutherkingjrway~hearstav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3w5rwz-martinlutherkingjrway~universityav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.262232, 37.840322], [-122.264939, 37.840499]]}, "type": "Feature", "name": "55th St:Telegraph Av -> 55th St:Shattuck Av", "properties": {"origin_onestop_id": "s-9q9p3be7ge-55thst~telegraphav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3b9kuk-55thst~shattuckav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.272872, 37.8717], [-122.273173, 37.873625]]}, "type": "Feature", "name": "University Av:Martin Luther King Jr Way -> Martin Luther King Jr Way:Hearst Av", "properties": {"origin_onestop_id": "s-9q9p3w7des-universityav~martinlutherkingjrway", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3wemue-martinlutherkingjrway~hearstav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.262097, 37.8112], [-122.261525, 37.812469]]}, "type": "Feature", "name": "Harrison St:Grand Av -> Harrison St:Bay Pl", "properties": {"origin_onestop_id": "s-9q9p1g76nw-harrisonst~grandav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1geceg-harrisonst~baypl", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.174194, 37.742721], [-122.176542, 37.741609]]}, "type": "Feature", "name": "98th Av:B St -> 98th Av:E St", "properties": {"origin_onestop_id": "s-9q9neyg7qc-98thav~bst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ney9ub1-98thav~est", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.271978, 37.861294], [-122.271785, 37.859865]]}, "type": "Feature", "name": "Martin Luther King Jr Way:Parker St -> Martin Luther King Jr Way:Derby St", "properties": {"origin_onestop_id": "s-9q9p3skq02-martinlutherkingjrway~parkerst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3shmsy-martinlutherkingjrway~derbyst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.272586, 37.866741], [-122.272387, 37.864936]]}, "type": "Feature", "name": "Martin Luther King Jr Way:Bancroft Way -> Martin Luther King Jr Way:Channing Way", "properties": {"origin_onestop_id": "s-9q9p3t7vf0-martinlutherkingjrway~bancroftway", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3t5gnz-martinlutherkingjrway~channingway", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.153353, 37.736594], [-122.151629, 37.734258]]}, "type": "Feature", "name": "Bancroft Av:Victoria Cir -> Bancroft Av:Dutton Av", "properties": {"origin_onestop_id": "s-9q9nsmdxsd-bancroftav~victoriacir", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nsm7cux-bancroftav~duttonav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.269852, 37.841592], [-122.270086, 37.842644]]}, "type": "Feature", "name": "Martin Luther King Jr Way:Aileen St -> Martin Luther King Jr Way:Arlington Av", "properties": {"origin_onestop_id": "s-9q9p38vg3b-martinlutherkingjrway~aileenst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p39j9kk-martinlutherkingjrway~arlingtonav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.249661, 37.790655], [-122.251568, 37.792346]]}, "type": "Feature", "name": "E 12th St:11th Av -> E 12th St:9th Av", "properties": {"origin_onestop_id": "s-9q9nfpsd82-e12thst~11thav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nfpgh7g-e12thst~9thav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.148461, 37.728259], [-122.147882, 37.726927]]}, "type": "Feature", "name": "Bancroft Av:Callan Av -> Bancroft Av:Estudillo Av", "properties": {"origin_onestop_id": "s-9q9nsknpn9-bancroftav~callanav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns7yxk0-bancroftav~estudilloav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.159172, 37.76156], [-122.156687, 37.761555]]}, "type": "Feature", "name": "Golf Links Rd:Fontaine St -> Fontaine St:#9120", "properties": {"origin_onestop_id": "s-9q9nu4q3hb-golflinksrd~fontainest", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu621nb-fontainest~9120", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.273817, 37.877599], [-122.273559, 37.875807]]}, "type": "Feature", "name": "Martin Luther King Jr Way:Cedar St -> Martin Luther King Jr Way:Virginia St", "properties": {"origin_onestop_id": "s-9q9p3x6vj8-martinlutherkingjrway~cedarst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3x54ed-martinlutherkingjrway~virginiast", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.170148, 37.760126], [-122.167577, 37.761366]]}, "type": "Feature", "name": "82nd Av:Bancroft Av -> 82nd Av:Hillside St", "properties": {"origin_onestop_id": "s-9q9ngfn2tj-82ndav~bancroftav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu40rch-82ndav~hillsidest", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.262032, 37.838461], [-122.262232, 37.840322]]}, "type": "Feature", "name": "Telegraph Av:Claremont Av -> 55th St:Telegraph Av", "properties": {"origin_onestop_id": "s-9q9p3b7900-telegraphav~claremontav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3be7ge-55thst~telegraphav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.175037, 37.801156], [-122.17215, 37.799551]]}, "type": "Feature", "name": "Skyline Blvd:Kimberlin Heights Dr -> Skyline Blvd:Rishell Rd", "properties": {"origin_onestop_id": "s-9q9p5c6zeq-skylineblvd~kimberlinheightsdr", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5chyqe-skylineblvd~rishellrd", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.116129, 37.705454], [-122.117547, 37.706218]]}, "type": "Feature", "name": "Foothill Blvd:Manchester Rd -> Foothill Blvd:Fairmont Hospital South Entrance", "properties": {"origin_onestop_id": "s-9q9nt0jdpy-foothillblvd~manchesterrd", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nt0hwwu-foothillblvd~fairmonthospitalsouthentrance", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.171273, 37.776993], [-122.172575, 37.778349]]}, "type": "Feature", "name": "Hillmont Dr:Gardenia Pl -> Hillmont Dr:Archmont Pl", "properties": {"origin_onestop_id": "s-9q9ngvjdgj-hillmontdr~gardeniapl", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngvkdud-hillmontdr~archmontpl", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.231964, 37.825041], [-122.235536, 37.825418]]}, "type": "Feature", "name": "Highland Way:Highland Av -> Oakland Av:Hillside Av", "properties": {"origin_onestop_id": "s-9q9p4tc63j-highlandave~highlandway<1100360", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4myv18-oaklandav~hillsideav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.228267, 37.842645], [-122.213158, 37.8291]]}, "type": "Feature", "name": "Broadway Ter:Sheridan Rd (Near Florence Av) -> Moraga Av:Montclair Recreation Center", "properties": {"origin_onestop_id": "s-9q9p69h16u-broadwayter~sheridanrdnearflorenceav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4yx47p-moragaav~montclairrecreationcenter", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.18073, 37.755998], [-122.178953, 37.755876]]}, "type": "Feature", "name": "81st Av:International Blvd -> 82nd Av:International Blvd", "properties": {"origin_onestop_id": "s-9q9ng9q8ws-81stav~internationalblvd", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngc0pbj-82ndav~internationalblvd", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.283753, 37.815377], [-122.278325, 37.814234]]}, "type": "Feature", "name": "W Grand Av:Adeline St -> W Grand Av:Market St", "properties": {"origin_onestop_id": "s-9q9p1k5dw1-wgrandav~adelinest", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p17zeus-wgrandav~marketst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.161325, 37.698888], [-122.163617, 37.697901]]}, "type": "Feature", "name": "Spruce St:Juniper St -> Spruce St:Merced St", "properties": {"origin_onestop_id": "s-9q9nknugfy-sprucest~juniperst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nknenjq-sprucest~mercedst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.152664, 37.7655], [-122.153201, 37.768611]]}, "type": "Feature", "name": "Fontaine St:Overpass (Near King Estates Mid. Sch.) -> Mountain Blvd:Fontaine Ct", "properties": {"origin_onestop_id": "s-9q9nu6gpux-fontainest~overpassnearkingestatesmidsch", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu7df05-mountainblvd~fontainect", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.248661, 37.757812], [-122.251237, 37.759356]]}, "type": "Feature", "name": "Otis Dr:Park St -> Otis Dr:#2217", "properties": {"origin_onestop_id": "s-9q9nf1t3th-parkst~otisdr<0102500", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nf1gk5w-otisdr~2217", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.154201, 37.772279], [-122.150431, 37.770262]]}, "type": "Feature", "name": "Keller Av:Greenridge Dr -> Keller Av:Rilea Way (Sequoyah Community Church)", "properties": {"origin_onestop_id": "s-9q9nuk4p2z-kellerav~greenridgedr", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu7ug8x-kellerav~rileawaysequoyahcommunitychurch", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.169885, 37.775054], [-122.170525, 37.775681]]}, "type": "Feature", "name": "Hillmont Dr:Altamont Av -> Hillmont Dr:Edgemoor Pl", "properties": {"origin_onestop_id": "s-9q9nguwxek-hillmontdr~altamontav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nguy5k3-hillmontdr~edgemoorpl", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.233408, 37.79665], [-122.234681, 37.796191]]}, "type": "Feature", "name": "14th Av:Vallecito Pl -> 14th Av:E 26th St", "properties": {"origin_onestop_id": "s-9q9p488m7n-14thav~vallecitopl", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p42x6v2-14thav~e26thst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.259691, 37.809856], [-122.256386, 37.808873]]}, "type": "Feature", "name": "Grand Av:Park View Ter -> Grand Av:Perkins St", "properties": {"origin_onestop_id": "s-9q9p1gj4qs-grandav~parkviewter", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1fzses-grandav~perkinsst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.156876, 37.695504], [-122.15731, 37.698573]]}, "type": "Feature", "name": "Wiley St:Purdue St -> Wiley St:Bethany St", "properties": {"origin_onestop_id": "s-9q9nkq204r-wileyst~purduest", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nknzf07-wileyst~bethanyst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.155747, 37.739814], [-122.153353, 37.736594]]}, "type": "Feature", "name": "Bancroft Av:109th Av -> Bancroft Av:Victoria Cir", "properties": {"origin_onestop_id": "s-9q9nsq2fkg-bancroftav~109thav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nsmdxsd-bancroftav~victoriacir", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.229578, 37.822344], [-122.228177, 37.822011]]}, "type": "Feature", "name": "Highland Av:Guilford Rd (South Jctn) -> Sheridan Av:Sierra Av", "properties": {"origin_onestop_id": "s-9q9p4t75h7-highlandav~guilfordrdsouthjctn", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4tk1jj-sheridanav~sierraav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.188273, 37.751704], [-122.185136, 37.75318]]}, "type": "Feature", "name": "81st Av:#860 -> 81st Av:Rudsdale St", "properties": {"origin_onestop_id": "s-9q9ng83pwg-81stav~860", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ng8g2py-81stav~rudsdalest", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.119987, 37.707527], [-122.121795, 37.709392]]}, "type": "Feature", "name": "Foothill Blvd:Fairmont Hospital North Entrance -> Foothill Blvd:Fairmont Dr", "properties": {"origin_onestop_id": "s-9q9nt06yq0-foothillblvd~fairmonthospitalnorthentrance", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nt0c95u-foothillblvd~fairmontdr", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.223999, 37.833718], [-122.225792, 37.835006]]}, "type": "Feature", "name": "Harbord Dr:Maxwelton Rd -> Harbord Dr:Hilltop Cr", "properties": {"origin_onestop_id": "s-9q9p4xrjqk-harborddr~maxweltonrd", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4xtuus-harborddr~hilltopcr", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.251078, 37.836836], [-122.252765, 37.834089]]}, "type": "Feature", "name": "Broadway:College Av -> Broadway:51st St", "properties": {"origin_onestop_id": "s-9q9p4pgrx3-broadway~collegeav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4p6r81-broadway~51stst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.147882, 37.726927], [-122.146856, 37.72457]]}, "type": "Feature", "name": "Bancroft Av:Estudillo Av -> Bancroft Av:Dolores Av", "properties": {"origin_onestop_id": "s-9q9ns7yxk0-bancroftav~estudilloav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ns7x3ec-bancroftav~doloresav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.158965, 37.699872], [-122.161325, 37.698888]]}, "type": "Feature", "name": "Spruce St:Acacia St -> Spruce St:Juniper St", "properties": {"origin_onestop_id": "s-9q9nkpn99v-sprucest~acaciast", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nknugfy-sprucest~juniperst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.27362, 37.878041], [-122.273829, 37.879809]]}, "type": "Feature", "name": "Martin Luther King Jr Way:Cedar St -> Martin Luther King Jr Way:Vine St", "properties": {"origin_onestop_id": "s-9q9p3x7pd4-martinlutherkingjrway~cedarst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3xfcvk-martinlutherkingjrway~vinest", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.27102, 37.852599], [-122.270848, 37.850792]]}, "type": "Feature", "name": "Martin Luther King Jr Way:Prince St -> Adeline St:Fairview St", "properties": {"origin_onestop_id": "s-9q9p3dugqe-martinlutherkingjrway~princest", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3dt0fe-adelinest~fairviewst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.151629, 37.734258], [-122.149581, 37.730854]]}, "type": "Feature", "name": "Bancroft Av:Dutton Av -> Bancroft Av:Haas Av", "properties": {"origin_onestop_id": "s-9q9nsm7cux-bancroftav~duttonav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nsktqhk-bancroftav~haasav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.170525, 37.775681], [-122.171273, 37.776993]]}, "type": "Feature", "name": "Hillmont Dr:Edgemoor Pl -> Hillmont Dr:Gardenia Pl", "properties": {"origin_onestop_id": "s-9q9nguy5k3-hillmontdr~edgemoorpl", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngvjdgj-hillmontdr~gardeniapl", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.267019, 37.810813], [-122.265079, 37.811111]]}, "type": "Feature", "name": "Broadway:22nd St -> Grand Av:Webster St", "properties": {"origin_onestop_id": "s-9q9p1epzgy-broadway~22ndst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1g339j-grandav~websterst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.251568, 37.792346], [-122.253359, 37.793926]]}, "type": "Feature", "name": "E 12th St:9th Av -> E 12th St:7th Av", "properties": {"origin_onestop_id": "s-9q9nfpgh7g-e12thst~9thav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p401vd6-e12thst~7thav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.108666, 37.701184], [-122.110206, 37.702267]]}, "type": "Feature", "name": "Foothill Blvd:Miramar Av -> Foothill Blvd:Carolyn St", "properties": {"origin_onestop_id": "s-9q9nmr71mf-foothillblvd~miramarav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmr6p9g-foothillblvd~carolynst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.149581, 37.730854], [-122.148461, 37.728259]]}, "type": "Feature", "name": "Bancroft Av:Haas Av -> Bancroft Av:Callan Av", "properties": {"origin_onestop_id": "s-9q9nsktqhk-bancroftav~haasav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nsknpn9-bancroftav~callanav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.139889, 37.686438], [-122.144055, 37.684621]]}, "type": "Feature", "name": "Lewelling Blvd:Washington Av -> Lewelling Blvd:Sullivan Av", "properties": {"origin_onestop_id": "s-9q9nkss7qm-lewellingblvd~washingtonav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nks32v4-lewellingblvd~sullivanav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.241848, 37.792683], [-122.243698, 37.791364]]}, "type": "Feature", "name": "14th Av:E 19th St -> 14th Av:E 17th St", "properties": {"origin_onestop_id": "s-9q9nfrfnq6-14thav~e19thst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nfr8yek-14thav~e17thst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.243462, 37.857911], [-122.238985, 37.855281]]}, "type": "Feature", "name": "Tunnel Rd:Domingo Av (Ashby Av) -> Tunnel Rd:The Uplands", "properties": {"origin_onestop_id": "s-9q9p67c42f-tunnelrd~domingoavashbyav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p67k6cp-tunnelrd~theuplands", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.27142, 37.856222], [-122.271213, 37.854394]]}, "type": "Feature", "name": "Martin Luther King Jr Way:Russell St -> Martin Luther King Jr Way:Ashby Av(Ashby BART Sa.)", "properties": {"origin_onestop_id": "s-9q9p3es8mr-martinlutherkingjrway~russellst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3ehvf4-martinlutherkingjrway~ashbyavashbybartsa", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.253359, 37.793926], [-122.25662, 37.793889]]}, "type": "Feature", "name": "E 12th St:7th Av -> 5th Av:E 10th St", "properties": {"origin_onestop_id": "s-9q9p401vd6-e12thst~7thav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1bpmq7-5thav~e10thst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.296453, 37.845658], [-122.295826, 37.843706]]}, "type": "Feature", "name": "Christie St:65th St -> Christie St:64th St", "properties": {"origin_onestop_id": "s-9q9p31d6yj-christiest~65thst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p314zsd-christiest~64thst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.138883, 37.7284], [-122.138902, 37.730073]]}, "type": "Feature", "name": "Grand Av:Joaquin Av -> MacArthur Blvd:Estudillo Av", "properties": {"origin_onestop_id": "s-9q9nssjpve-grandav~joaquinav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nsst1t7-macarthurblvd~estudilloav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.243698, 37.791364], [-122.246413, 37.789226]]}, "type": "Feature", "name": "14th Av:E 17th St -> 14th Av:International Blvd", "properties": {"origin_onestop_id": "s-9q9nfr8yek-14thav~e17thst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nfpqfhn-14thav~internationalblvd", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.256386, 37.808873], [-122.254073, 37.808686]]}, "type": "Feature", "name": "Grand Av:Perkins St -> Grand Av:Staten Av", "properties": {"origin_onestop_id": "s-9q9p1fzses-grandav~perkinsst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p44c799-grandav~statenav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.269596, 37.797604], [-122.393231, 37.790262]]}, "type": "Feature", "name": "7th St:Alice St -> Transbay Temp Terminal", "properties": {"origin_onestop_id": "s-9q9p18vgpb-7thst~alicest", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q8yyz7y5b-sanfranciscoterminal<1410330", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.251237, 37.759356], [-122.253614, 37.760666]]}, "type": "Feature", "name": "Otis Dr:#2217 -> Otis Dr:Willow St", "properties": {"origin_onestop_id": "s-9q9nf1gk5w-otisdr~2217", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nf41eu6-otisdr~willowst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.240392, 37.823614], [-122.237493, 37.824614]]}, "type": "Feature", "name": "Oakland Av:Fairview Av -> Oakland Av:El Cerrito Av", "properties": {"origin_onestop_id": "s-9q9p4me682-oaklandav~fairviewav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4mv27g-oaklandav~elcerritoav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.162203, 37.762041], [-122.159172, 37.76156]]}, "type": "Feature", "name": "Golf Links Rd:#8335 -> Golf Links Rd:Fontaine St", "properties": {"origin_onestop_id": "s-9q9nu4k5y6-golflinksrd~8335", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nu4q3hb-golflinksrd~fontainest", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.194825, 37.810671], [-122.191814, 37.809726]]}, "type": "Feature", "name": "Joaquin Miller Rd:Hedge Ln -> Joaquin Miller Rd:Butters Dr", "properties": {"origin_onestop_id": "s-9q9p57hrn5-joaquinmillerrd~hedgeln", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p57n9s7-joaquinmillerrd~buttersdr", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.200501, 37.810321], [-122.198497, 37.810097]]}, "type": "Feature", "name": "Lincoln Av:Greek Church -> Lincoln Av:Maiden Ln", "properties": {"origin_onestop_id": "s-9q9p570m1f-lincolnav~greekchurch", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p571gb8-lincolnav~maidenln", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.219031, 37.832992], [-122.221209, 37.832853]]}, "type": "Feature", "name": "Moraga Av:Estates Dr -> Harbord Dr:Moraga Av", "properties": {"origin_onestop_id": "s-9q9p4z6c4h-moragaav~estatesdr", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4z30r6-harborddr~moragaav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.164878, 37.699725], [-122.166281, 37.701845]]}, "type": "Feature", "name": "Merced St:Cedar Av -> Merced St:W Avenue 140th", "properties": {"origin_onestop_id": "s-9q9nkp42b4-mercedst~cedarav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkp3jpm-mercedst~wavenue140th", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.188018, 37.783232], [-122.195417, 37.787141]]}, "type": "Feature", "name": "MacArthur Blvd:Richard's Gate (Mills College) -> High St:MacArthur Blvd", "properties": {"origin_onestop_id": "s-9q9ngw1rkb-macarthurblvd~richardsgatemillscollege", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngqun03-highst~macarthurblvd", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.177355, 37.803024], [-122.175037, 37.801156]]}, "type": "Feature", "name": "Skyline Blvd:Crestmont Dr -> Skyline Blvd:Kimberlin Heights Dr", "properties": {"origin_onestop_id": "s-9q9p5cc4t6-skylineblvd~crestmontdr", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5c6zeq-skylineblvd~kimberlinheightsdr", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.251989, 37.834686], [-122.250959, 37.836392]]}, "type": "Feature", "name": "Broadway:Pleasant Valley Av -> Broadway:College Av", "properties": {"origin_onestop_id": "s-9q9p4pdg40-broadway~pleasantvalleyav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4pgsfn-broadway~collegeav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.271213, 37.854394], [-122.27102, 37.852599]]}, "type": "Feature", "name": "Martin Luther King Jr Way:Ashby Av(Ashby BART Sa.) -> Martin Luther King Jr Way:Prince St", "properties": {"origin_onestop_id": "s-9q9p3ehvf4-martinlutherkingjrway~ashbyavashbybartsa", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p3dugqe-martinlutherkingjrway~princest", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.134902, 37.676754], [-122.137032, 37.680211]]}, "type": "Feature", "name": "Paseo Grande:Via Alamitos -> Washington Av:Grant Av", "properties": {"origin_onestop_id": "s-9q9nkfb548-paseogrande~viaalamitos", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkeqx0u-washingtonav~grantav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.166281, 37.701845], [-122.167423, 37.703606]]}, "type": "Feature", "name": "Merced St:W Avenue 140th -> Merced St:Fairway Dr", "properties": {"origin_onestop_id": "s-9q9nkp3jpm-mercedst~wavenue140th", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkp8rkt-mercedst~fairwaydr", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.123524, 37.674703], [-122.128437, 37.678803]]}, "type": "Feature", "name": "Hesperian Blvd:Hacienda Av -> Paseo Grande:Paseo Largavista", "properties": {"origin_onestop_id": "s-9q9nm42r59-hesperianblvd~haciendaav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkghycj-paseogrande~paseolargavista", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.228177, 37.822011], [-122.226905, 37.821681]]}, "type": "Feature", "name": "Sheridan Av:Sierra Av -> Sheridan Av:Lakeview Av", "properties": {"origin_onestop_id": "s-9q9p4tk1jj-sheridanav~sierraav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4tjp68-sheridanav~lakeviewav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.229557, 37.799023], [-122.231017, 37.797511]]}, "type": "Feature", "name": "Beaumont Av:E 31st St -> 14th Av:E 29th St", "properties": {"origin_onestop_id": "s-9q9p4955kb-beaumontav~e31stst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p48f46y-14thav~e29thst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.274086, 37.881711], [-122.274261, 37.883525]]}, "type": "Feature", "name": "Martin Luther King Jr Way:Rose St -> Martin Luther King Jr Way:Berryman St", "properties": {"origin_onestop_id": "s-9q9p984szq-martinlutherkingjrway~rosest", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p986xe0-martinlutherkingjrway~berrymanst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.087183, 37.697454], [-122.087063, 37.694188]]}, "type": "Feature", "name": "Lake Chabot:Eden Medical Center -> Castro Valley Blvd:Park Way", "properties": {"origin_onestop_id": "s-9q9nmydgd6-lakechabot~edenmedicalcenter", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmy4bt1-castrovalleyblvd~parkway", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.248248, 37.789399], [-122.249661, 37.790655]]}, "type": "Feature", "name": "E 12th St:13th Av -> E 12th St:11th Av", "properties": {"origin_onestop_id": "s-9q9nfpme1q-e12thst~13thav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nfpsd82-e12thst~11thav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.267135, 37.840217], [-122.269537, 37.840063]]}, "type": "Feature", "name": "55th St:Dover St -> Mlk Jr Way:55th St", "properties": {"origin_onestop_id": "s-9q9p38xg1r-55thst~doverst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p38w437-mlkjrway~55thst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.276121, 37.779599], [-122.270789, 37.781464]]}, "type": "Feature", "name": "Atlantic Av:Webster St -> Challenger Dr:Atlantic Av", "properties": {"origin_onestop_id": "s-9q9nct94pg-atlanticav~websterst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nctvhup-challengerdr~atlanticav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.144541, 37.772993], [-122.136388, 37.770239]]}, "type": "Feature", "name": "Keller Av:Campus Dr -> Hansom Dr:Coach Dr", "properties": {"origin_onestop_id": "s-9q9nus359u-kellerav~campusdr", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nueygxf-hansomdr~coachdr", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.103668, 37.69578], [-122.105949, 37.698311]]}, "type": "Feature", "name": "Foothill Blvd:167th Av -> Foothill Blvd:Montessori School", "properties": {"origin_onestop_id": "s-9q9nmqqcf6-foothillblvd~167thav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmqv0t4-foothillblvd~montessorischool", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.177243, 37.756703], [-122.175798, 37.757397]]}, "type": "Feature", "name": "82nd Av:Holly St -> 82nd Av:Plymouth St", "properties": {"origin_onestop_id": "s-9q9ngc3hxz-82ndav~hollyst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9ngcd2c8-82ndav~plymouthst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.259503, 37.814713], [-122.258146, 37.815799]]}, "type": "Feature", "name": "Harrison St:Hamilton Pl (West Lake Middle School) -> Oakland Av:29th St", "properties": {"origin_onestop_id": "s-9q9p1gvqej-harrisonst~hamiltonplwestlakemiddleschool", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1unkfx-oaklandav~29thst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.246413, 37.789226], [-122.248248, 37.789399]]}, "type": "Feature", "name": "14th Av:International Blvd -> E 12th St:13th Av", "properties": {"origin_onestop_id": "s-9q9nfpqfhn-14thav~internationalblvd", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nfpme1q-e12thst~13thav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.244941, 37.818599], [-122.245641, 37.816416]]}, "type": "Feature", "name": "Grand Av:Jean St -> Grand Av:Weldon Av", "properties": {"origin_onestop_id": "s-9q9p4hxvq3-grandav~jeanst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p4hr2w4-grandav~weldonav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.299013, 37.902888], [-122.303107, 37.902343]]}, "type": "Feature", "name": "El Cerrito Plaza BART Station -> Central Av:San Pablo Av", "properties": {"origin_onestop_id": "s-9q9p95btzg-elcerritobartstation<0500880", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p8gvt5h-centralav~sanpabloav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.154293, 37.695325], [-122.156876, 37.695504]]}, "type": "Feature", "name": "Purdue St:Esser Av -> Wiley St:Purdue St", "properties": {"origin_onestop_id": "s-9q9nkq1znt-purduest~esserav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkq204r-wileyst~purduest", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.267431, 37.808653], [-122.265767, 37.808212]]}, "type": "Feature", "name": "Thomas L Berkley Way (20th St):Franklin St -> Thomas L Berkley Way (20th St):Webster St", "properties": {"origin_onestop_id": "s-9q9p1dze67-thomaslberkleyway20thst~franklinst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p1fbbc1-thomaslberkleyway20thst~websterst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.302584, 37.887683], [-122.30514, 37.887582]]}, "type": "Feature", "name": "Buchanan St:Polk St -> Buchanan St:Pierce St", "properties": {"origin_onestop_id": "s-9q9p8cjzz0-buchananst~polkst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p8chp5t-buchananst~piercest", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.279204, 37.853457], [-122.281718, 37.853218]]}, "type": "Feature", "name": "Sacramento St:Ashby Av -> Ashby Av:Acton St", "properties": {"origin_onestop_id": "s-9q9p37p025-sacramentost~ashbyav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p36vnvr-ashbyav~actonst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.292895, 37.81283], [-122.29506, 37.810145]]}, "type": "Feature", "name": "Peralta St:16th St -> Peralta St:12th St", "properties": {"origin_onestop_id": "s-9q9p15t59n-peraltast~16thst", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p155kn9-peraltast~12thst", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.102028, 37.693927], [-122.103668, 37.69578]]}, "type": "Feature", "name": "Foothill Blvd:170th Av -> Foothill Blvd:167th Av", "properties": {"origin_onestop_id": "s-9q9nmtbp09-foothillblvd~170thav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nmqqcf6-foothillblvd~167thav", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.183543, 37.809511], [-122.180842, 37.808185]]}, "type": "Feature", "name": "Joaquin Miller Rd:Robinson Dr -> Joaquin Miller Rd:Crockett Pl", "properties": {"origin_onestop_id": "s-9q9p5eh8m5-joaquinmillerrd~robinsondr", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5dy8sh-joaquinmillerrd~crockettpl", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.16419, 37.798069], [-122.171883, 37.799721]]}, "type": "Feature", "name": "Skyline Blvd:Balmoral Dr -> Skyline Blvd:Redwood Rd", "properties": {"origin_onestop_id": "s-9q9ph0fv8n-skylineblvd~balmoraldr", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9p5cjpkf-skylineblvd~redwoodrd", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.137032, 37.680211], [-122.137965, 37.683031]]}, "type": "Feature", "name": "Washington Av:Grant Av -> Washington Av:Via Enrico", "properties": {"origin_onestop_id": "s-9q9nkeqx0u-washingtonav~grantav", "stroke": "#fef0d9", "frequency": 2.5, "stroke-opacity": 1.0, "frequency_class": 0, "destination_onestop_id": "s-9q9nkevze4-washingtonav~viaenrico", "stroke-width": 1, "trips": 5}}, {"geometry": {"type": "LineString", "coordinates": [[-122.280132, 37.80985], [-122.279099, 37.813008]]}, "type": "Feature", "name": "Market St:16th St -> Market St:21st St", "properties": {"origin_onestop_id": "s-9q9p17n666-marketst~16thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p17xhdr-marketst~21stst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.161936, 37.741525], [-122.1594, 37.742086]]}, "type": "Feature", "name": "104th Av:Birch St -> 104th Av:Sunnyside St", "properties": {"origin_onestop_id": "s-9q9nsnskkd-104thav~birchst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nsnwpxd-104thav~sunnysidest", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.281569, 37.821905], [-122.280945, 37.823639]]}, "type": "Feature", "name": "Adeline St:30th St -> Adeline St:32nd St", "properties": {"origin_onestop_id": "s-9q9p1mm28f-adelinest~30thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1mtdxm-adelinest~32ndst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.278788, 37.831134], [-122.280066, 37.827034]]}, "type": "Feature", "name": "40th St:Adeline St -> Adeline St:35th St", "properties": {"origin_onestop_id": "s-9q9p1qzn8j-40thst~sanpabloave<0601000", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1qnq7y-adelinest~35thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.159045, 37.750003], [-122.161648, 37.748732]]}, "type": "Feature", "name": "MacArthur Blvd:98th Av -> 98th Av:Bancroft Av", "properties": {"origin_onestop_id": "s-9q9nu0nmxy-macarthurblvd~98thav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nspuw73-98thav~bancroftav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.163909, 37.747544], [-122.166081, 37.746526]]}, "type": "Feature", "name": "98th Av:Olive St -> 98th Av:Cherry St", "properties": {"origin_onestop_id": "s-9q9nspdzqs-98thav~olivest", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nsp937y-98thav~cherryst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.178861, 37.752594], [-122.182373, 37.750959]]}, "type": "Feature", "name": "85th Av:A St -> 85th Av:D St", "properties": {"origin_onestop_id": "s-9q9ngb8hf1-85thav~ast", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ng8me22-85thav~dst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.27707, 37.819186], [-122.277621, 37.817659]]}, "type": "Feature", "name": "Market St:28th St -> Market St:26th St (Mc Clymonds High School)", "properties": {"origin_onestop_id": "s-9q9p1sb89z-marketst~28thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1s2puf-marketst~26thstmcclymondshighschool", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.179943, 37.734797], [-122.182896, 37.736398]]}, "type": "Feature", "name": "Edes Av:Hale Av -> Edes Av:98th Av", "properties": {"origin_onestop_id": "s-9q9netrm0g-edesav~haleav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nettnkn-edesav~98thav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.204395, 37.743575], [-122.206714, 37.746234]]}, "type": "Feature", "name": "Edgewater Dr:Pardee Ln -> Edgewater Dr:Hassler Way", "properties": {"origin_onestop_id": "s-9q9nepj2r0-edgewaterdr~pardeeln", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nep7zc0-edgewaterdr~hasslerway", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.254073, 37.808686], [-122.251428, 37.808482]]}, "type": "Feature", "name": "Grand Av:Staten Av -> Grand Av:Euclid Av", "properties": {"origin_onestop_id": "s-9q9p44c799-grandav~statenav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p44g4r7-grandav~euclidav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.200473, 37.756418], [-122.197631, 37.753866]]}, "type": "Feature", "name": "San Leandro St:66th Av -> San Leandro St:Coliseum BART Walkway", "properties": {"origin_onestop_id": "s-9q9ng3274d-sanleandrost~66thav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ng2ff5m-coliseumbartstation<1031000", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.173946, 37.769263], [-122.174413, 37.769185]]}, "type": "Feature", "name": "Foothill Blvd:Eastmont Transit Center -> Eastmont Transit Center", "properties": {"origin_onestop_id": "s-9q9nggetus-foothillblvd~eastmonttransitcenter", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nggem3y-eastmonttransitcenter", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.096062, 37.668255], [-122.093557, 37.669247]]}, "type": "Feature", "name": "A St:Filbert St -> A St:Myrtle St", "properties": {"origin_onestop_id": "s-9q9nm9k37x-ast~filbertst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nm9qpmb-ast~myrtlest", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.176943, 37.769707], [-122.173946, 37.769263]]}, "type": "Feature", "name": "Foothill Blvd:Church St -> Foothill Blvd:Eastmont Transit Center", "properties": {"origin_onestop_id": "s-9q9nggc2qz-foothillblvd~churchst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nggetus-foothillblvd~eastmonttransitcenter", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.194634, 37.73266], [-122.194941, 37.734184]]}, "type": "Feature", "name": "Empire Rd:Tunis Rd -> Empire Rd:Cairo Rd", "properties": {"origin_onestop_id": "s-9q9nemh8dt-empirerd~tunisrd", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nemk3e9-empirerd~cairord", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.262124, 37.840181], [-122.261979, 37.837084]]}, "type": "Feature", "name": "55th St:Telegraph Av -> 51st St:Telegraph Av", "properties": {"origin_onestop_id": "s-9q9p3be7n1-55thst~telegraphav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3b58cr-51stst~telegraphav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.256307, 37.836075], [-122.252691, 37.834521]]}, "type": "Feature", "name": "51st St:Lawton Av -> 51st St:Broadway", "properties": {"origin_onestop_id": "s-9q9p1zzeje-51stst~lawtonav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p4pd61c-51stst~broadway", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.193129, 37.73903], [-122.190486, 37.738317]]}, "type": "Feature", "name": "Edes Av:85th Av -> Edes Av:Phelps St", "properties": {"origin_onestop_id": "s-9q9neqjtv9-edesav~85thav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9neqp9ek-edesav~phelpsst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.231359, 37.842761], [-122.232987, 37.842682]]}, "type": "Feature", "name": "Broadway Ter:Hermosa Av -> Broadway Ter:#6141", "properties": {"origin_onestop_id": "s-9q9p691f4c-broadwayter~hermosaav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p6909sg-broadwayter~6141", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.156496, 37.741589], [-122.154661, 37.742106]]}, "type": "Feature", "name": "106th Av:Bancroft Av -> 106th Av:Voltaire Av", "properties": {"origin_onestop_id": "s-9q9nsq8keq-106thav~bancroftav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nsq9xwn-106thav~voltaireav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.184046, 37.734724], [-122.182723, 37.736684]]}, "type": "Feature", "name": "98th Av:Maddux Dr -> 98th Av:Edes Av", "properties": {"origin_onestop_id": "s-9q9netkk9q-98thav~madduxdr", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9netv205-98thav~edesav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.196361, 37.73685], [-122.195092, 37.734345]]}, "type": "Feature", "name": "Hegenberger Lp:Hegenberger Rd -> Cairo Rd:Empire Rd", "properties": {"origin_onestop_id": "s-9q9nemg346-hegenbergerlp~hegenbergerrd", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nemk4rz-cairord~empirerd", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.256969, 37.798959], [-122.263183, 37.801271]]}, "type": "Feature", "name": "1st Av:International Blvd -> 14th St:Oak St", "properties": {"origin_onestop_id": "s-9q9p1cp4yh-1stav~internationalblvd", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1cd8m7-14thst~oakst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.214203, 37.832405], [-122.211973, 37.83048]]}, "type": "Feature", "name": "Mountain Blvd:Thornhill Dr -> Mountain Blvd:Cabot Dr", "properties": {"origin_onestop_id": "s-9q9p4znmdx-mountainblvd~thornhilldr", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p4yzfw8-mountainblvd~cabotdr", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.2798, 37.826863], [-122.279337, 37.831256]]}, "type": "Feature", "name": "Adeline St:35th St -> 40th St:San Pablo Av", "properties": {"origin_onestop_id": "s-9q9p1qnt6n-adelinest~35thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1qzn8j-40thst~sanpabloave<0601040", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.318467, 37.911415], [-122.316122, 37.910192]]}, "type": "Feature", "name": "Carlson Blvd:Imperial Av -> Carlson Blvd:San Luis St", "properties": {"origin_onestop_id": "s-9q9p8td3vp-carlsonblvd~imperialav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p8tk4gg-carlsonblvd~sanluisst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.247049, 37.824167], [-122.247876, 37.82518]]}, "type": "Feature", "name": "Linda Av:Lake Av -> Linda Av:Rose Av", "properties": {"origin_onestop_id": "s-9q9p4jwmtr-lindaav~lakeav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p4jvgdh-lindaav~roseav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.277621, 37.817659], [-122.278169, 37.816132]]}, "type": "Feature", "name": "Market St:26th St (Mc Clymonds High School) -> Market St:24th St", "properties": {"origin_onestop_id": "s-9q9p1s2puf-marketst~26thstmcclymondshighschool", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1kpybj-marketst~24thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.278663, 37.887176], [-122.281249, 37.884791]]}, "type": "Feature", "name": "Monterey Av:Colusa Av -> Monterey Av:Posen Av", "properties": {"origin_onestop_id": "s-9q9p93pku9-montereyav~colusaav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p92twbk-montereyav~posenav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.283767, 37.81565], [-122.290244, 37.817415]]}, "type": "Feature", "name": "W Grand Av:Adeline St -> W Grand Av:Mandela Pkwy", "properties": {"origin_onestop_id": "s-9q9p1k5sjs-wgrandav~adelinest", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1hqyqv-wgrandav~mandelapkwy", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.246277, 37.813949], [-122.245399, 37.816242]]}, "type": "Feature", "name": "Grand Av:Mandana Blvd -> Grand Av:Weldon Av", "properties": {"origin_onestop_id": "s-9q9p45yfpr-grandav~mandanablvd", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p4hpxed-grandav~weldonav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.092856, 37.669886], [-122.095696, 37.668723]]}, "type": "Feature", "name": "A St:Flagg St -> A St:Filbert St", "properties": {"origin_onestop_id": "s-9q9nm9wdyr-ast~flaggst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nm9kshn-ast~filbertst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.248923, 37.810288], [-122.251428, 37.808713]]}, "type": "Feature", "name": "Grand Av:MacArthur Blvd -> Grand Av:Euclid Av", "properties": {"origin_onestop_id": "s-9q9p45jhcs-grandav~macarthurblvd", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p44g5xq-grandav~euclidav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.278112, 37.850045], [-122.278448, 37.851399]]}, "type": "Feature", "name": "Sacramento St:Fairview St -> Sacramento St:Prince St", "properties": {"origin_onestop_id": "s-9q9p36ru3r-sacramentost~fairviewst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p36xs3s-sacramentost~princest", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.279099, 37.813008], [-122.278468, 37.814762]]}, "type": "Feature", "name": "Market St:21st St -> Market St:W Grand Av", "properties": {"origin_onestop_id": "s-9q9p17xhdr-marketst~21stst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p17zwcn-marketst~wgrandav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.178389, 37.732904], [-122.174597, 37.735461]]}, "type": "Feature", "name": "Acalanes Dr:105th Av -> 105th Av:San Leandro St", "properties": {"origin_onestop_id": "s-9q9nev06j5-acalanesdr~105thav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9neve0vx-105thav~sanleandrost", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.196318, 37.747264], [-122.193129, 37.73903]]}, "type": "Feature", "name": "Hegenberger Rd:Baldwin St -> Edes Av:85th Av", "properties": {"origin_onestop_id": "s-9q9neremg2-hegenbergerrd~baldwinst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9neqjtv9-edesav~85thav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.276649, 37.820532], [-122.27707, 37.819186]]}, "type": "Feature", "name": "San Pablo Av:Market St -> Market St:28th St", "properties": {"origin_onestop_id": "s-9q9p1t0bed-sanpabloav~marketst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1sb89z-marketst~28thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.179019, 37.7524], [-122.177327, 37.753194]]}, "type": "Feature", "name": "85th Av:A St -> 85th Av:International Blvd", "properties": {"origin_onestop_id": "s-9q9ng8xgwt-85thav~ast", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ngbc0mc-85thav~internationalblvd", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.245574, 37.810143], [-122.242719, 37.811107]]}, "type": "Feature", "name": "Lakeshore Av:Lake Park Av -> Lakeshore Av:Longridge Rd", "properties": {"origin_onestop_id": "s-9q9p45pkp9-lakeshoreav~lakeparkav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p473gzg-mandanablvd~lakeshoreave<1013730", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.157144, 37.747084], [-122.155551, 37.745407]]}, "type": "Feature", "name": "MacArthur Blvd:99th Av -> MacArthur Blvd:Byron Av", "properties": {"origin_onestop_id": "s-9q9nspxusn-macarthurblvd~99thav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nsr34cm-macarthurblvd~byronav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.270086, 37.842644], [-122.270404, 37.844186]]}, "type": "Feature", "name": "Martin Luther King Jr Way:Arlington Av -> Martin Luther King Jr Way:59th St", "properties": {"origin_onestop_id": "s-9q9p39j9kk-martinlutherkingjrway~arlingtonav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p39m6m5-martinlutherkingjrway~59thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.286166, 37.809832], [-122.287388, 37.806435]]}, "type": "Feature", "name": "Adeline St:14th St -> Adeline St:10th St", "properties": {"origin_onestop_id": "s-9q9p171fjz-adelinest~14thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p163n3q-adelinest~10thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.281717, 37.822128], [-122.28246, 37.820072]]}, "type": "Feature", "name": "Adeline St:30th St -> Adeline St:28th St", "properties": {"origin_onestop_id": "s-9q9p1mm1v7-adelinest~30thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1kutuh-adelinest~28thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.161648, 37.748732], [-122.163909, 37.747544]]}, "type": "Feature", "name": "98th Av:Bancroft Av -> 98th Av:Olive St", "properties": {"origin_onestop_id": "s-9q9nspuw73-98thav~bancroftav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nspdzqs-98thav~olivest", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.278968, 37.807464], [-122.281353, 37.8086]]}, "type": "Feature", "name": "14th St:Brush St -> 14th St:Market St", "properties": {"origin_onestop_id": "s-9q9p16xhmw-14thst~brushst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p16v7jc-14thst~marketst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.313165, 37.909198], [-122.309766, 37.908915]]}, "type": "Feature", "name": "Carlson Blvd:Placer St -> Carlson Blvd:Sutter Av", "properties": {"origin_onestop_id": "s-9q9p8tnm0d-carlsonblvd~placerst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p8v0erv-carlsonblvd~sutterav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.168891, 37.738125], [-122.167299, 37.738876]]}, "type": "Feature", "name": "105th Av:Graffian St -> 105th Av:Pontiac St", "properties": {"origin_onestop_id": "s-9q9neyp2d8-105thav~graffianst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nsn0kzs-105thav~pontiacst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.280945, 37.823639], [-122.2798, 37.826863]]}, "type": "Feature", "name": "Adeline St:32nd St -> Adeline St:35th St", "properties": {"origin_onestop_id": "s-9q9p1mtdxm-adelinest~32ndst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1qnt6n-adelinest~35thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.166168, 37.746342], [-122.164075, 37.747313]]}, "type": "Feature", "name": "98th Av:Cherry St -> 98th Av:Olive St", "properties": {"origin_onestop_id": "s-9q9nsp923u-98thav~cherryst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nspdy49-98thav~olivest", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.29894, 37.812027], [-122.302168, 37.80791]]}, "type": "Feature", "name": "Wood St:12th St -> Wood St:8th St", "properties": {"origin_onestop_id": "s-9q9p152xh0-woodst~12thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p0fwr0c-woodst~8thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.15665, 37.741411], [-122.158225, 37.743861]]}, "type": "Feature", "name": "Bancroft Av:106th Av -> Bancroft Av:103rd Av", "properties": {"origin_onestop_id": "s-9q9nsq85xs-bancroftav~106thav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nspp1gj-bancroftav~103rdav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.242719, 37.811107], [-122.241866, 37.811737]]}, "type": "Feature", "name": "Lakeshore Av:Longridge Rd -> Lakeshore Av:Mandana Blvd", "properties": {"origin_onestop_id": "s-9q9p473gzg-mandanablvd~lakeshoreave<1013730", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p473gzg-mandanablvd~lakeshoreave<1013750", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.253613, 37.808876], [-122.255964, 37.809069]]}, "type": "Feature", "name": "Grand Av:Staten Av -> Grand Av:Perkins St", "properties": {"origin_onestop_id": "s-9q9p44cssm-grandav~statenav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1fzvv9-grandav~perkinsst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.18371, 37.750165], [-122.181833, 37.751084]]}, "type": "Feature", "name": "85th Av:E St -> 85th Av:D St", "properties": {"origin_onestop_id": "s-9q9ng8hw9h-85thav~est", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ng8muhb-85thav~dst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.308753, 37.907862], [-122.30707, 37.905354]]}, "type": "Feature", "name": "Carlson Blvd:Huntington Dr -> Carlson Blvd:Columbia Av", "properties": {"origin_onestop_id": "s-9q9p8ucmr3-carlsonblvd~huntingtondr", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p8u6www-carlsonblvd~columbiaav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.171073, 37.744244], [-122.174194, 37.742721]]}, "type": "Feature", "name": "98th Av:International Blvd -> 98th Av:B St", "properties": {"origin_onestop_id": "s-9q9nezjspt-98thav~internationalblvd", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9neyg7qc-98thav~bst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.176671, 37.765436], [-122.17439, 37.76363]]}, "type": "Feature", "name": "Bancroft Av:73rd Av -> Bancroft Av:77th Av", "properties": {"origin_onestop_id": "s-9q9ngfcxt5-bancroftav~73rdav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ngfem46-bancroftav~77thav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.291379, 37.85218], [-122.291766, 37.853334]]}, "type": "Feature", "name": "7th St:Anthony St -> 7th St:Heinz Av", "properties": {"origin_onestop_id": "s-9q9p34y0um-7thst~anthonyst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p34vzek-7thst~heinzav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.175639, 37.767082], [-122.176671, 37.765436]]}, "type": "Feature", "name": "73rd Av:Garfield Av -> Bancroft Av:73rd Av", "properties": {"origin_onestop_id": "s-9q9ngg63jq-73rdav~garfieldav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ngfcxt5-bancroftav~73rdav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.172575, 37.778349], [-122.17457, 37.7792]]}, "type": "Feature", "name": "Hillmont Dr:Archmont Pl -> Hillmont Dr:Overdale Av", "properties": {"origin_onestop_id": "s-9q9ngvkdud-hillmontdr~archmontpl", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ngv7py1-hillmontdr~overdaleav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.263084, 37.801061], [-122.256512, 37.799061]]}, "type": "Feature", "name": "14th St:Oak St -> 1st Av:International Blvd", "properties": {"origin_onestop_id": "s-9q9p1c6xps-14thst~oakst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1cpe2z-1stav~internationalblvd", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.166081, 37.746526], [-122.168265, 37.745508]]}, "type": "Feature", "name": "98th Av:Cherry St -> 98th Av:Walnut St", "properties": {"origin_onestop_id": "s-9q9nsp937y-98thav~cherryst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nezrg90-98thav~walnutst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.246858, 37.809406], [-122.245574, 37.810143]]}, "type": "Feature", "name": "Lakeshore Av:MacArthur Blvd -> Lakeshore Av:Lake Park Av", "properties": {"origin_onestop_id": "s-9q9p44yxc8-lakeshoreav~macarthurblvd", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p45pkp9-lakeshoreav~lakeparkav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.237113, 37.81571], [-122.235085, 37.816006]]}, "type": "Feature", "name": "Lakeshore Av:Harvard Rd -> Lakeshore Av:#4072 (Portsmouth Wk)", "properties": {"origin_onestop_id": "s-9q9p4kjskz-lakeshoreav~harvardrd", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p4kpnhn-lakeshoreav~4072portsmouthwk", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.152033, 37.693465], [-122.151944, 37.69101]]}, "type": "Feature", "name": "Farnsworth St:Avon Av -> Farnsworth St:Manor Blvd", "properties": {"origin_onestop_id": "s-9q9nkmgs77-farnsworthst~avonav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nkm7wj3-farnsworthst~manorblvd", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.276177, 37.821344], [-122.275542, 37.823835]]}, "type": "Feature", "name": "Market St:31st St -> Market St:33rd St", "properties": {"origin_onestop_id": "s-9q9p1t1jq9-marketst~31stst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1t9ev3-marketst~33rdst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.27475, 37.889376], [-122.278663, 37.887176]]}, "type": "Feature", "name": "Marin Av:Lassen St -> Monterey Av:Colusa Av", "properties": {"origin_onestop_id": "s-9q9p99d1xg-marinav~lassenst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p93pku9-montereyav~colusaav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.12475, 37.698392], [-122.125395, 37.69636]]}, "type": "Feature", "name": "Coelho Dr:Mooney Av -> Bay Fair BART Station", "properties": {"origin_onestop_id": "s-9q9nkyz3p1-coelhodr~mooneyav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nkyqyex-bayfairbartstation<1500580", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.307298, 37.893869], [-122.305791, 37.888728]]}, "type": "Feature", "name": "Pierce St:Gateview Apts -> Pierce St:Solano Av", "properties": {"origin_onestop_id": "s-9q9p8f6ec3-piercest~gateviewapts", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p8c7tud-piercest~solanoav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.267335, 37.818049], [-122.266711, 37.820313]]}, "type": "Feature", "name": "Telegraph Av:29th St -> Telegraph Av:31st St", "properties": {"origin_onestop_id": "s-9q9p1sxdhe-telegraphav~29thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1ubp71-telegraphav~31stst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.291766, 37.853334], [-122.29257, 37.855569]]}, "type": "Feature", "name": "7th St:Heinz Av -> 7th St:Grayson St", "properties": {"origin_onestop_id": "s-9q9p34vzek-7thst~heinzav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p35mk8t-7thst~graysonst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.30707, 37.905354], [-122.306229, 37.904112]]}, "type": "Feature", "name": "Carlson Blvd:Columbia Av -> Carlson Blvd:San Jose Av", "properties": {"origin_onestop_id": "s-9q9p8u6www-carlsonblvd~columbiaav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p8u5r6q-carlsonblvd~sanjoseav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.271627, 37.859984], [-122.271826, 37.861778]]}, "type": "Feature", "name": "Martin Luther King Jr Way:Derby St -> Martin Luther King Jr Way:Parker St", "properties": {"origin_onestop_id": "s-9q9p3shw2s-martinlutherkingjrway~derbyst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3ss2gf-martinlutherkingjrway~parkerst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.249124, 37.831572], [-122.247708, 37.830072]]}, "type": "Feature", "name": "Pleasant Valley Av:Montgomery St -> Piedmont Av:Pleasant Valley Av", "properties": {"origin_onestop_id": "s-9q9p4phbuu-pleasantvalleyav~montgomeryst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p4nvbju-piedmontav~pleasantvalleyav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.280243, 37.805228], [-122.274464, 37.802963]]}, "type": "Feature", "name": "11th St:Brush St -> 11th St:Clay St", "properties": {"origin_onestop_id": "s-9q9p16nprv-11thst~brushst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p19f6nr-11thst~clayst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.271091, 37.849115], [-122.270766, 37.852706]]}, "type": "Feature", "name": "Adeline St:Alcatraz Av -> Martin Luther King Jr Way:Prince St (Ashby BART)", "properties": {"origin_onestop_id": "s-9q9p3dhzj4-adelinest~alcatrazav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3dv5ux-martinlutherkingjrway~princestashbybart", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.27117, 37.845763], [-122.270769, 37.843982]]}, "type": "Feature", "name": "Martin Luther King Jr Way:61st St -> Martin Luther King Jr Way:59th St", "properties": {"origin_onestop_id": "s-9q9p39sge1-martinlutherkingjrway~61stst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p39m1ht-martinlutherkingjrway~59thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.193192, 37.731694], [-122.194634, 37.73266]]}, "type": "Feature", "name": "Empire Rd:Wistar Rd -> Empire Rd:Tunis Rd", "properties": {"origin_onestop_id": "s-9q9nekveh3-empirerd~wistarrd", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nemh8dt-empirerd~tunisrd", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.273353, 37.80509], [-122.271746, 37.804447]]}, "type": "Feature", "name": "14th St:Clay St -> 14th St:Broadway (12th St BART Station)", "properties": {"origin_onestop_id": "s-9q9p1d5q87-14thst~clayst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1dh9te-14thst~broadway<1000870", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.172894, 37.762145], [-122.170477, 37.75971]]}, "type": "Feature", "name": "Bancroft Av:Ritchie St -> Bancroft Av:82nd Av", "properties": {"origin_onestop_id": "s-9q9ngfkkmn-bancroftav~ritchiest", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ngcynm8-bancroftav~82ndav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.267375, 37.802933], [-122.269741, 37.803871]]}, "type": "Feature", "name": "14th St:Harrison St -> 14th St:Franklin St", "properties": {"origin_onestop_id": "s-9q9p19zd59-14thst~harrisonst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p19vzs8-14thst~franklinst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.303548, 37.902337], [-122.305004, 37.901934]]}, "type": "Feature", "name": "San Pablo Av:Central Av -> Central Av:Carlson Blvd", "properties": {"origin_onestop_id": "s-9q9p8gvm0g-sanpabloav~centralav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p8gu4yb-centralav~carlsonblvd", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.232105, 37.814525], [-122.232898, 37.814594]]}, "type": "Feature", "name": "Lakeshore Av:Wala Vista Av -> Wala Vista Av:Arimo Av (East Jctn)", "properties": {"origin_onestop_id": "s-9q9p4ecm9d-lakeshoreav~walavistaav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p4ebtzp-walavistaav~arimoaveastjctn", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.274919, 37.826212], [-122.274547, 37.827784]]}, "type": "Feature", "name": "Market St:36th St -> Market St:W MacArthur Blvd", "properties": {"origin_onestop_id": "s-9q9p1w41eu-marketst~36thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1w66ud-marketst~wmacarthurblvd", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.237792, 37.815], [-122.23988, 37.813733]]}, "type": "Feature", "name": "Wala Vista Av:Lake Shore Av -> Lakeshore Av:Rosal Av", "properties": {"origin_onestop_id": "s-9q9p4kj0m4-walavistaav~lakeshoreav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p47g8uq-lakeshoreav~rosalav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.271826, 37.861778], [-122.272027, 37.863594]]}, "type": "Feature", "name": "Martin Luther King Jr Way:Parker St -> Martin Luther King Jr Way:Dwight Way", "properties": {"origin_onestop_id": "s-9q9p3ss2gf-martinlutherkingjrway~parkerst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3su5rm-martinlutherkingjrway~dwightway", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.263183, 37.801271], [-122.265487, 37.802201]]}, "type": "Feature", "name": "14th St:Oak St -> 14th:Jackson St", "properties": {"origin_onestop_id": "s-9q9p1cd8m7-14thst~oakst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1c8vz9-14th~jacksonst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.254802, 37.800018], [-122.253712, 37.802714]]}, "type": "Feature", "name": "Lakeshore Av:Foothill Blvd -> Lakeshore Av:Hanover Av", "properties": {"origin_onestop_id": "s-9q9p412c0d-lakeshoreav~foothillblvd", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p41c8f0-lakeshoreav~hanoverav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.2964, 37.812679], [-122.29894, 37.812027]]}, "type": "Feature", "name": "14th St:Willow St -> Wood St:12th St", "properties": {"origin_onestop_id": "s-9q9p15d6z6-14thst~willowst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p152xh0-woodst~12thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.201543, 37.739796], [-122.198413, 37.737272]]}, "type": "Feature", "name": "Edgewater Dr:#8001 -> Edgewater Dr:Pendleton Way", "properties": {"origin_onestop_id": "s-9q9nenrd1x-edgewaterdr~8001", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nemcgd9-edgewaterdr~pendletonway", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.265725, 37.808435], [-122.26861, 37.80931]]}, "type": "Feature", "name": "T.L. Berkley Way (20th St) :Webster St (Kaiser Ct) -> Thomas L Berkley Way (20th St):Broadway", "properties": {"origin_onestop_id": "s-9q9p1fbf45-tlberkleyway20thst~websterstkaiserct", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1dyxny-thomaslberkleyway20thst~broadway", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.278696, 37.851253], [-122.278338, 37.849747]]}, "type": "Feature", "name": "Sacramento St:Prince St -> Sacramento St:Fairview St", "properties": {"origin_onestop_id": "s-9q9p36x7eb-sacramentost~princest", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p36rdu0-sacramentost~fairviewst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.24907, 37.831829], [-122.250726, 37.833842]]}, "type": "Feature", "name": "Pleasant Valley Av:Montgomery St -> Pleasant Valley Av:Gilbert St", "properties": {"origin_onestop_id": "s-9q9p4phfqh-pleasantvalleyav~montgomeryst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p4p7wpe-pleasantvalleyav~gilbertst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.248082, 37.825183], [-122.247097, 37.824004]]}, "type": "Feature", "name": "Linda Av:Rose Av -> Linda Av:Lake Av", "properties": {"origin_onestop_id": "s-9q9p4jvetj-lindaav~roseav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p4jwku1-lindaav~lakeav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.19032, 37.771666], [-122.190862, 37.771305]]}, "type": "Feature", "name": "Seminary Av:Walunt S[ -> Seminary Av:Foothill Blvd", "properties": {"origin_onestop_id": "s-9q9ngkpezh-seminaryav~walunts", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ngkp3f9-seminaryav~foothillblvd", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.250999, 37.827231], [-122.250023, 37.82813]]}, "type": "Feature", "name": "Linda Av:Piedmont Av -> Piedmont Av:Glenwood Av", "properties": {"origin_onestop_id": "s-9q9p4n5x96-lindaav~piedmontav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p4nkhzf-piedmontav~glenwoodav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.196727, 37.753416], [-122.201282, 37.756702]]}, "type": "Feature", "name": "San Leandro St:Coliseum BART Station -> 66th Av:San Leandro St", "properties": {"origin_onestop_id": "s-9q9ng2ff5m-coliseumbartstation<1018230", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ng1rsxx-66thav~sanleandrost", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.283949, 37.81534], [-122.283322, 37.817072]]}, "type": "Feature", "name": "Adeline St:W Grand Av -> Adeline St:24th St", "properties": {"origin_onestop_id": "s-9q9p1k5d36-adelinest~wgrandav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1kkh2j-adelinest~24thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.175727, 37.751641], [-122.177547, 37.753207]]}, "type": "Feature", "name": "International Blvd:87th Av -> 85th Av:International Blvd", "properties": {"origin_onestop_id": "s-9q9ngb6r5p-internationalblvd~87thav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ngbc02g-85thav~internationalblvd", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.149288, 37.730668], [-122.150793, 37.733494]]}, "type": "Feature", "name": "Bancroft Av:Haas Av -> Bancroft Av:Dutton Av", "properties": {"origin_onestop_id": "s-9q9nsktt56-bancroftav~haasav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nsmht81-bancroftav~duttonav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.188338, 37.73774], [-122.186087, 37.737128]]}, "type": "Feature", "name": "Edes Av:Jones Av -> Edes Av:Maddux Dr", "properties": {"origin_onestop_id": "s-9q9netcnm2-edesav~jonesav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9netff9y-edesav~madduxdr", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.281774, 37.870129], [-122.279455, 37.870618]]}, "type": "Feature", "name": "Sacramento St:University Av -> University Av:California St", "properties": {"origin_onestop_id": "s-9q9p3qj1kp-sacramentost~universityav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3qnu64-universityav~californiast", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.187925, 37.737759], [-122.191238, 37.73867]]}, "type": "Feature", "name": "Edes Av:Clara St -> Edes Av:Phelps St", "properties": {"origin_onestop_id": "s-9q9netcqqu-edesav~clarast", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9neqp59v-edesav~phelpsst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.250981, 37.8276], [-122.252869, 37.826189]]}, "type": "Feature", "name": "Piedmont Av:Ridgeway Av -> Piedmont Av:41st St", "properties": {"origin_onestop_id": "s-9q9p4n799x-piedmontav~ridgewayav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p4n41t8-piedmontav~41stst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.195756, 37.736874], [-122.197563, 37.737346]]}, "type": "Feature", "name": "Hegenberger Lp:Hegenberger Rd -> Edgewater Dr:Hegenberger Rd", "properties": {"origin_onestop_id": "s-9q9nemgc0x-hegenbergerlp~hegenbergerrd", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nemf7yr-edgewaterdr~hegenbergerrd", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.272012, 37.804747], [-122.273908, 37.80552]]}, "type": "Feature", "name": "14th St:Broadway (12th St BART Station) -> 14th St:Clay St", "properties": {"origin_onestop_id": "s-9q9p1dh9te-14thst~broadway<1000860", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1d6c57-14thst~clayst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.250763, 37.804968], [-122.254253, 37.802371]]}, "type": "Feature", "name": "Lakeshore Av:Brooklyn Av -> Lakeshore Av:Hanover Av", "properties": {"origin_onestop_id": "s-9q9p445tyu-lakeshoreav~brooklynav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p419nv2-lakeshoreav~hanoverav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.165683, 37.753273], [-122.164192, 37.751234]]}, "type": "Feature", "name": "Bancroft Av:90th Av -> Bancroft Av:94th Av", "properties": {"origin_onestop_id": "s-9q9nu0c8v2-bancroftav~90thav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nu06ubh-bancroftav~94thav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.2745, 37.802276], [-122.274464, 37.802963]]}, "type": "Feature", "name": "10th St:Washington St -> 11th St:Clay St", "properties": {"origin_onestop_id": "s-9q9p19dqjw-10thst~washingtonst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p19f6nr-11thst~clayst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.203206, 37.817937], [-122.201637, 37.818533]]}, "type": "Feature", "name": "Mountain Blvd:Ascot Dr -> Ascot Dr:Camino Lenada (Opp. Joaquin Miller Sch.)", "properties": {"origin_onestop_id": "s-9q9p5hw36y-mountainblvd~ascotdr", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p5hxkzm-ascotdr~caminolenadaoppjoaquinmillersch", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.170477, 37.75971], [-122.169018, 37.757697]]}, "type": "Feature", "name": "Bancroft Av:82nd Av -> Bancroft Av:85th Av", "properties": {"origin_onestop_id": "s-9q9ngcynm8-bancroftav~82ndav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ngcx4x8-bancroftav~85thav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.298993, 37.811723], [-122.296294, 37.812442]]}, "type": "Feature", "name": "Wood St:12th St -> 14th St:Willow St", "properties": {"origin_onestop_id": "s-9q9p152t6b-woodst~12thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p15d93y-14thst~willowst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.275542, 37.823835], [-122.274919, 37.826212]]}, "type": "Feature", "name": "Market St:33rd St -> Market St:36th St", "properties": {"origin_onestop_id": "s-9q9p1t9ev3-marketst~33rdst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1w41eu-marketst~36thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.254504, 37.800731], [-122.256969, 37.798959]]}, "type": "Feature", "name": "Lakeshore Av:E 18th St -> 1st Av:International Blvd", "properties": {"origin_onestop_id": "s-9q9p412vpw-lakeshoreav~e18thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1cp4yh-1stav~internationalblvd", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.182373, 37.750959], [-122.183914, 37.750216]]}, "type": "Feature", "name": "85th Av:D St -> 85th Av:E St", "properties": {"origin_onestop_id": "s-9q9ng8me22-85thav~dst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ng8hquq-85thav~est", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.190486, 37.738317], [-122.188338, 37.73774]]}, "type": "Feature", "name": "Edes Av:Phelps St -> Edes Av:Jones Av", "properties": {"origin_onestop_id": "s-9q9neqp9ek-edesav~phelpsst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9netcnm2-edesav~jonesav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.186087, 37.737128], [-122.182907, 37.736261]]}, "type": "Feature", "name": "Edes Av:Maddux Dr -> Edes Av:98th Av", "properties": {"origin_onestop_id": "s-9q9netff9y-edesav~madduxdr", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nettjeu-edesav~98thav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.271206, 37.85637], [-122.271417, 37.858161]]}, "type": "Feature", "name": "Martin Luther King Jr Way:Russell St -> Martin Luther King Jr Way:Stuart St", "properties": {"origin_onestop_id": "s-9q9p3esc66-martinlutherkingjrway~russellst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3euev2-martinlutherkingjrway~stuartst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.26881, 37.870306], [-122.275174, 37.871412]]}, "type": "Feature", "name": "Center St:Shattuck Av (Berkeley BART Station) -> University Av:Grant St", "properties": {"origin_onestop_id": "s-9q9p3wp1qn-centerst~shattuckave<9902090", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3w3bvy-universityav~grantst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.251428, 37.808482], [-122.249387, 37.809471]]}, "type": "Feature", "name": "Grand Av:Euclid Av -> Grand Av:El Embarcadero", "properties": {"origin_onestop_id": "s-9q9p44g4r7-grandav~euclidav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p45h8nu-grandav~elembarcadero", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.268578, 37.869353], [-122.272777, 37.86844]]}, "type": "Feature", "name": "Allston Way:Shattuck Av -> Martin Luther King Jr Way:Allston Way", "properties": {"origin_onestop_id": "s-9q9p3wp1qn-centerst~shattuckave<0306700", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3textu-martinlutherkingjrway~allstonway", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.204685, 37.743369], [-122.203092, 37.741562]]}, "type": "Feature", "name": "Edgewater Dr:Pardee Ln -> Edgewater Dr:Roland Way", "properties": {"origin_onestop_id": "s-9q9nenvr03-edgewaterdr~pardeeln", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nenwkt9-edgewaterdr~rolandway", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.155551, 37.745407], [-122.152078, 37.743116]]}, "type": "Feature", "name": "MacArthur Blvd:Byron Av -> 106th Av:MacArthur Blvd", "properties": {"origin_onestop_id": "s-9q9nsr34cm-macarthurblvd~byronav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nsqgtd6-106thav~macarthurblvd", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.201282, 37.756702], [-122.205222, 37.755203]]}, "type": "Feature", "name": "66th Av:San Leandro St -> 66th Av:Coliseum Way", "properties": {"origin_onestop_id": "s-9q9ng1rsxx-66thav~sanleandrost", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ng1hggz-66thav~coliseumway", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.199429, 37.76527], [-122.202736, 37.762954]]}, "type": "Feature", "name": "Seminary Av:International Blvd -> Seminary Av:Tevis St", "properties": {"origin_onestop_id": "s-9q9ng6cndu-seminaryav~internationalblvd", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ng4w9ju-seminaryav~tevisst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.241866, 37.811737], [-122.241866, 37.811737]]}, "type": "Feature", "name": "Lakeshore Av:Mandana Blvd -> Lakeshore Av:Mandana Blvd", "properties": {"origin_onestop_id": "s-9q9p473gzg-mandanablvd~lakeshoreave<1013750", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p473gzg-mandanablvd~lakeshoreave<1013750", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.184999, 37.749565], [-122.18371, 37.750165]]}, "type": "Feature", "name": "85th Av:G St -> 85th Av:E St", "properties": {"origin_onestop_id": "s-9q9ng85e5h-85thav~gst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ng8hw9h-85thav~est", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.197563, 37.737346], [-122.201385, 37.740147]]}, "type": "Feature", "name": "Edgewater Dr:Hegenberger Rd -> Edgewater Dr:#8000", "properties": {"origin_onestop_id": "s-9q9nemf7yr-edgewaterdr~hegenbergerrd", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nenrsm3-edgewaterdr~8000", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.259273, 37.836721], [-122.256307, 37.836075]]}, "type": "Feature", "name": "51st St:Webster St -> 51st St:Lawton Av", "properties": {"origin_onestop_id": "s-9q9p1zvwbk-51stst~websterst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1zzeje-51stst~lawtonav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.2422, 37.81171], [-122.245955, 37.810209]]}, "type": "Feature", "name": "Lakeshore Av:Mandana Blvd -> Lakeshore Av:Lake Park Av", "properties": {"origin_onestop_id": "s-9q9p473gzg-mandanablvd~lakeshoreave<1013760", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p45phqv-lakeshoreav~lakeparkav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.281186, 37.823571], [-122.281717, 37.822128]]}, "type": "Feature", "name": "Adeline St:32nd St -> Adeline St:30th St", "properties": {"origin_onestop_id": "s-9q9p1mtd3b-adelinest~32ndst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1mm1v7-adelinest~30thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.393616, 37.790234], [-122.31535, 37.823222]]}, "type": "Feature", "name": "Transbay Temp Terminal -> I-80 Fwy:Toll Plaza (East Bound)", "properties": {"origin_onestop_id": "s-9q8yyz7y5b-sanfranciscoterminal<1410340", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p0ts8jz-i~80fwy~tollplazaeastbound", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.277941, 37.84806], [-122.276961, 37.846292]]}, "type": "Feature", "name": "Sacramento St:Alcatraz Av -> Market St:62nd St", "properties": {"origin_onestop_id": "s-9q9p36pbvm-sacramentost~alcatrazav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p398wsk-marketst~62ndst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.276943, 37.818949], [-122.276623, 37.819829]]}, "type": "Feature", "name": "Market St:28th St -> Market St:San Pablo Av", "properties": {"origin_onestop_id": "s-9q9p1s8xke-marketst~28thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1sbukp-marketst~sanpabloav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.247097, 37.824004], [-122.244005, 37.821549]]}, "type": "Feature", "name": "Linda Av:Lake Av -> Linda Av:Grand Av", "properties": {"origin_onestop_id": "s-9q9p4jwku1-lindaav~lakeav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p4m0wkp-lindaav~grandav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.244168, 37.821701], [-122.247049, 37.824167]]}, "type": "Feature", "name": "Linda Av:Grand Av -> Linda Av:Lake Av", "properties": {"origin_onestop_id": "s-9q9p4m0x2k-lindaav~grandav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p4jwmtr-lindaav~lakeav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.282787, 37.808968], [-122.28596, 37.809626]]}, "type": "Feature", "name": "14th St:Filbert St -> 14th St:Adeline St", "properties": {"origin_onestop_id": "s-9q9p16umhw-14thst~filbertst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p174149-14thst~adelinest", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.196867, 37.753539], [-122.200507, 37.756782]]}, "type": "Feature", "name": "San Leandro St:Coliseum BART Station -> San Leandro St:66th Av", "properties": {"origin_onestop_id": "s-9q9ng2ff5m-coliseumbartstation<1018220", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ng32m1y-sanleandrost~66thav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.267868, 37.81592], [-122.267335, 37.818049]]}, "type": "Feature", "name": "Telegraph Av:27th St -> Telegraph Av:29th St", "properties": {"origin_onestop_id": "s-9q9p1spm8n-telegraphav~27thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1sxdhe-telegraphav~29thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.287964, 37.804235], [-122.28715, 37.806508]]}, "type": "Feature", "name": "Adeline St:7th St -> Adeline St:10th St", "properties": {"origin_onestop_id": "s-9q9p1609eu-adelinest~7thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p163nyg-adelinest~10thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.280276, 37.870745], [-122.28208, 37.870072]]}, "type": "Feature", "name": "University Av:California St -> Sacramento St:University Av", "properties": {"origin_onestop_id": "s-9q9p3qnjp4-universityav~californiast", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3qhcjj-sacramentost~universityav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.302168, 37.80791], [-122.299906, 37.806309]]}, "type": "Feature", "name": "Wood St:8th St -> 7th St:Campbell St (United States Post Office)", "properties": {"origin_onestop_id": "s-9q9p0fwr0c-woodst~8thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p0frvtw-7thst~campbellstunitedstatespostoffice", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.182896, 37.736398], [-122.185479, 37.737093]]}, "type": "Feature", "name": "Edes Av:98th Av -> Edes Av:Tyler St", "properties": {"origin_onestop_id": "s-9q9nettnkn-edesav~98thav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9netg4xb-edesav~tylerst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.247876, 37.82518], [-122.249754, 37.826358]]}, "type": "Feature", "name": "Linda Av:Rose Av -> Linda Av:Glen Av", "properties": {"origin_onestop_id": "s-9q9p4jvgdh-lindaav~roseav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p4nh6w2-lindaav~glenav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.30115, 37.806826], [-122.301794, 37.808224]]}, "type": "Feature", "name": "7th St:Willow St (Opp. U.S. Post Office) -> Wood St:8th St", "properties": {"origin_onestop_id": "s-9q9p0fx08x-7thst~willowstoppuspostoffice", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p0fy8ce-woodst~8thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.247879, 37.829762], [-122.24907, 37.831829]]}, "type": "Feature", "name": "Piedmont Av:Brandon St -> Pleasant Valley Av:Montgomery St", "properties": {"origin_onestop_id": "s-9q9p4nty3f-piedmontav~brandonst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p4phfqh-pleasantvalleyav~montgomeryst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.188828, 37.747343], [-122.192408, 37.750006]]}, "type": "Feature", "name": "85th Av:San Leandro St -> San Leandro St:81st Av", "properties": {"origin_onestop_id": "s-9q9nex8y1y-85thav~sanleandrost", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ng2njwx-sanleandrost~81stav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.174597, 37.735461], [-122.172765, 37.736314]]}, "type": "Feature", "name": "105th Av:San Leandro St -> 105th Av:E St", "properties": {"origin_onestop_id": "s-9q9neve0vx-105thav~sanleandrost", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nevstbn-105thav~est", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.273908, 37.80552], [-122.275803, 37.806222]]}, "type": "Feature", "name": "14th St:Clay St -> 14th St:Martin Luther King Jr Way", "properties": {"origin_onestop_id": "s-9q9p1d6c57-14thst~clayst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1d3mpq-14thst~martinlutherkingjrway", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.280552, 37.809559], [-122.281161, 37.807915]]}, "type": "Feature", "name": "Market St:16th St -> Market St:14th St", "properties": {"origin_onestop_id": "s-9q9p17n08s-marketst~16thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p16tx46-marketst~14thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.170984, 37.751282], [-122.174227, 37.749768]]}, "type": "Feature", "name": "90th Av:Plymouth St -> 90th Av:International Blvd", "properties": {"origin_onestop_id": "s-9q9ngbmv1t-90thav~plymouthst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ngb5kq4-90thav~internationalblvd", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.246849, 37.813557], [-122.248011, 37.811644]]}, "type": "Feature", "name": "Grand Av:Elwood Av -> Grand Av:Santa Clara Av", "properties": {"origin_onestop_id": "s-9q9p45wxcv-grandav~elwoodav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p45msyc-grandav~santaclaraav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.265439, 37.801985], [-122.263084, 37.801061]]}, "type": "Feature", "name": "14th St:Jackson St -> 14th St:Oak St", "properties": {"origin_onestop_id": "s-9q9p1c9h8b-14thst~jacksonst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1c6xps-14thst~oakst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.253296, 37.835148], [-122.255608, 37.836064]]}, "type": "Feature", "name": "51st St:Desmond St -> 51st St:Manila Av", "properties": {"origin_onestop_id": "s-9q9p4p9vew-51stst~desmondst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p4pb5jc-51stst~manilaav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.172765, 37.736314], [-122.168891, 37.738125]]}, "type": "Feature", "name": "105th Av:E St -> 105th Av:Graffian St", "properties": {"origin_onestop_id": "s-9q9nevstbn-105thav~est", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9neyp2d8-105thav~graffianst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.195321, 37.768156], [-122.196376, 37.76742]]}, "type": "Feature", "name": "Seminary Av:Harmon Av -> Seminary Av:Bromley Av", "properties": {"origin_onestop_id": "s-9q9ng7kp6w-seminaryav~harmonav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ng7774j-seminaryav~bromleyav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.183914, 37.750216], [-122.185615, 37.749415]]}, "type": "Feature", "name": "85th Av:E St -> 85th Av:G St", "properties": {"origin_onestop_id": "s-9q9ng8hquq-85thav~est", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ng854kb-85thav~gst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.256512, 37.799061], [-122.254802, 37.800018]]}, "type": "Feature", "name": "1st Av:International Blvd -> Lakeshore Av:Foothill Blvd", "properties": {"origin_onestop_id": "s-9q9p1cpe2z-1stav~internationalblvd", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p412c0d-lakeshoreav~foothillblvd", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.252691, 37.834521], [-122.250755, 37.83362]]}, "type": "Feature", "name": "51st St:Broadway -> Pleasant Valley Av:Gilbert St", "properties": {"origin_onestop_id": "s-9q9p4pd61c-51stst~broadway", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p4p7syc-pleasantvalleyav~gilbertst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.176, 37.751547], [-122.173905, 37.749718]]}, "type": "Feature", "name": "International Blvd:87th Av -> 90th Av:International Blvd", "properties": {"origin_onestop_id": "s-9q9ngb6nsy-internationalblvd~87thav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ngb5sj9-90thav~internationalblvd", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.162038, 37.741635], [-122.164479, 37.741064]]}, "type": "Feature", "name": "104th Av:Birch St -> 104th Av:Plymouth St", "properties": {"origin_onestop_id": "s-9q9nsnskfn-104thav~birchst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nsnd99k-104thav~plymouthst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.290244, 37.817415], [-122.393616, 37.790234]]}, "type": "Feature", "name": "W Grand Av:Mandela Pkwy -> Transbay Temp Terminal", "properties": {"origin_onestop_id": "s-9q9p1hqyqv-wgrandav~mandelapkwy", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q8yyz7y5b-sanfranciscoterminal<1410340", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.297942, 37.806114], [-122.30115, 37.806826]]}, "type": "Feature", "name": "7th St:Peralta St -> 7th St:Willow St (Opp. U.S. Post Office)", "properties": {"origin_onestop_id": "s-9q9p143ke6-7thst~peraltast", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p0fx08x-7thst~willowstoppuspostoffice", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.271748, 37.84845], [-122.27117, 37.845763]]}, "type": "Feature", "name": "Adeline St:Alcatraz Av -> Martin Luther King Jr Way:61st St", "properties": {"origin_onestop_id": "s-9q9p3dh7jy-adelinest~alcatrazav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p39sge1-martinlutherkingjrway~61stst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.129525, 37.70609], [-122.129992, 37.707166]]}, "type": "Feature", "name": "E 14th St:150th Av -> Bancroft Av:Peters St", "properties": {"origin_onestop_id": "s-9q9nsb5vzu-e14thst~150thav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nsb7shv-bancroftav~petersst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.205021, 37.761349], [-122.200473, 37.756418]]}, "type": "Feature", "name": "Seminary Av:Div 4 Gate (Near San Leandro St) -> San Leandro St:66th Av", "properties": {"origin_onestop_id": "s-9q9ng4jpb9-seminaryav~div4gatenearsanleandrost", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ng3274d-sanleandrost~66thav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.176623, 37.77987], [-122.18085, 37.779543]]}, "type": "Feature", "name": "Hillmont Dr:Seminary Av -> Seminary Av:Outlook Av", "properties": {"origin_onestop_id": "s-9q9ngv9ewq-hillmontdr~seminaryav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ngtw9gc-seminaryav~outlookav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.272265, 37.86533], [-122.272462, 37.867176]]}, "type": "Feature", "name": "Martin Luther King Jr Way:Channing Way -> Martin Luther King Jr Way:Bancroft Way", "properties": {"origin_onestop_id": "s-9q9p3thj99-martinlutherkingjrway~channingway", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3tebm1-martinlutherkingjrway~bancroftway", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.194941, 37.734184], [-122.195756, 37.736874]]}, "type": "Feature", "name": "Empire Rd:Cairo Rd -> Hegenberger Lp:Hegenberger Rd", "properties": {"origin_onestop_id": "s-9q9nemk3e9-empirerd~cairord", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nemgc0x-hegenbergerlp~hegenbergerrd", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.185614, 37.733781], [-122.192144, 37.730984]]}, "type": "Feature", "name": "98th Av:Denslowe St -> Empire Rd:Coral Rd (Near 98th Av)", "properties": {"origin_onestop_id": "s-9q9net5phy-98thav~denslowest", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nekwqut-empirerd~coralrdnear98thav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.295504, 37.843159], [-122.293121, 37.841274]]}, "type": "Feature", "name": "Christie Av:64th St -> Shellmound St:Amtrak", "properties": {"origin_onestop_id": "s-9q9p315hkh-christieav~64thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p30uc7s-shellmoundst~amtrak", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.278468, 37.814762], [-122.278101, 37.815775]]}, "type": "Feature", "name": "Market St:W Grand Av -> Market St:Mead St", "properties": {"origin_onestop_id": "s-9q9p17zwcn-marketst~wgrandav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1kpuce-marketst~meadst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.261979, 37.837084], [-122.259273, 37.836721]]}, "type": "Feature", "name": "51st St:Telegraph Av -> 51st St:Webster St", "properties": {"origin_onestop_id": "s-9q9p3b58cr-51stst~telegraphav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1zvwbk-51stst~websterst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.232291, 37.824902], [-122.230758, 37.824533]]}, "type": "Feature", "name": "Highland Av:Vista Av -> Highland Av:Mountain Av", "properties": {"origin_onestop_id": "s-9q9p4tc63j-highlandave~highlandway<1100350", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p4tdrbu-highlandav~mountainav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.272629, 37.868446], [-122.27073, 37.869907]]}, "type": "Feature", "name": "Mlk Way:Allston Way -> Center St:Milvia St", "properties": {"origin_onestop_id": "s-9q9p3tez9j-mlkway~allstonway", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3wj0jq-centerst~milviast", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.270268, 37.841457], [-122.269212, 37.839754]]}, "type": "Feature", "name": "Martin Luther King Jr Way:Aileen St -> 55th St:Mlk Jr Way", "properties": {"origin_onestop_id": "s-9q9p38vd2q-martinlutherkingjrway~aileenst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p38w28c-55thst~mlkjrway", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.182723, 37.736684], [-122.1799, 37.738873]]}, "type": "Feature", "name": "98th Av:Edes Av -> 98th Av:San Leandro St", "properties": {"origin_onestop_id": "s-9q9netv205-98thav~edesav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9newpkcg-98thav~sanleandrost", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.25861, 37.866293], [-122.259128, 37.868642]]}, "type": "Feature", "name": "Telegraph Av:Haste St -> Telegraph Av:Bancroft Way", "properties": {"origin_onestop_id": "s-9q9p3vmgpu-telegraphav~hastest", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3vvc8d-bancroftway~telegraphave<9902390", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.26619, 37.822288], [-122.265627, 37.824372]]}, "type": "Feature", "name": "Telegraph Av:34th St -> Telegraph Av:36th St", "properties": {"origin_onestop_id": "s-9q9p1v26z3-telegraphav~34thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1v8yum-telegraphav~36thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.1799, 37.738873], [-122.179174, 37.739543]]}, "type": "Feature", "name": "98th Av:San Leandro St -> 98th Av:Past Railroad Crossing (Nr San Leandro St)", "properties": {"origin_onestop_id": "s-9q9newpkcg-98thav~sanleandrost", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9newrbfb-98thav~pastrailroadcrossingnrsanleandrost", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.290182, 37.80416], [-122.287964, 37.804235]]}, "type": "Feature", "name": "7th St:Union St -> Adeline St:7th St", "properties": {"origin_onestop_id": "s-9q9p14p10n-7thst~unionst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1609eu-adelinest~7thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.188486, 37.747291], [-122.184999, 37.749565]]}, "type": "Feature", "name": "85th Av:San Leandro St (Past Railroad Crossing) -> 85th Av:G St", "properties": {"origin_onestop_id": "s-9q9nex9jcv-85thav~sanleandrostpastrailroadcrossing", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ng85e5h-85thav~gst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.183673, 37.735971], [-122.184054, 37.735155]]}, "type": "Feature", "name": "98th Av:Edes Av -> 98th Av:Maddux Dr", "properties": {"origin_onestop_id": "s-9q9netsefn-98thav~edesav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9netkr1n-98thav~madduxdr", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.276961, 37.846292], [-122.275026, 37.843523]]}, "type": "Feature", "name": "Market St:62nd St -> Market St:59th St", "properties": {"origin_onestop_id": "s-9q9p398wsk-marketst~62ndst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p394n3r-marketst~59thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.245641, 37.816416], [-122.246849, 37.813557]]}, "type": "Feature", "name": "Grand Av:Weldon Av -> Grand Av:Elwood Av", "properties": {"origin_onestop_id": "s-9q9p4hr2w4-grandav~weldonav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p45wxcv-grandav~elwoodav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.272462, 37.867176], [-122.272629, 37.868446]]}, "type": "Feature", "name": "Martin Luther King Jr Way:Bancroft Way -> Mlk Way:Allston Way", "properties": {"origin_onestop_id": "s-9q9p3tebm1-martinlutherkingjrway~bancroftway", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3tez9j-mlkway~allstonway", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.202736, 37.762954], [-122.205021, 37.761349]]}, "type": "Feature", "name": "Seminary Av:Tevis St -> Seminary Av:Div 4 Gate (Near San Leandro St)", "properties": {"origin_onestop_id": "s-9q9ng4w9ju-seminaryav~tevisst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ng4jpb9-seminaryav~div4gatenearsanleandrost", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.185689, 37.733443], [-122.184046, 37.734724]]}, "type": "Feature", "name": "98th Av:Denslowe St -> 98th Av:Maddux Dr", "properties": {"origin_onestop_id": "s-9q9net5j5p-98thav~denslowest", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9netkk9q-98thav~madduxdr", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.281725, 37.805492], [-122.280819, 37.807927]]}, "type": "Feature", "name": "10th St:Market St -> Market St:14th St", "properties": {"origin_onestop_id": "s-9q9p16m0vq-10thst~marketst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p16tz4k-marketst~14thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.177547, 37.753207], [-122.178861, 37.752594]]}, "type": "Feature", "name": "85th Av:International Blvd -> 85th Av:A St", "properties": {"origin_onestop_id": "s-9q9ngbc02g-85thav~internationalblvd", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ngb8hf1-85thav~ast", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.181833, 37.751084], [-122.179019, 37.7524]]}, "type": "Feature", "name": "85th Av:D St -> 85th Av:A St", "properties": {"origin_onestop_id": "s-9q9ng8muhb-85thav~dst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ng8xgwt-85thav~ast", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.197382, 37.766708], [-122.199429, 37.76527]]}, "type": "Feature", "name": "Seminary Av:E 17th St -> Seminary Av:International Blvd", "properties": {"origin_onestop_id": "s-9q9ng74x48-seminaryav~e17thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ng6cndu-seminaryav~internationalblvd", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.170045, 37.744526], [-122.16844, 37.745292]]}, "type": "Feature", "name": "98th Av:International Blvd -> 98th Av:Walnut St", "properties": {"origin_onestop_id": "s-9q9neznmz9-98thav~internationalblvd", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nezrdm0-98thav~walnutst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.252869, 37.826189], [-122.251797, 37.825309]]}, "type": "Feature", "name": "Piedmont Av:41st St -> Glen Av:Panama Ct", "properties": {"origin_onestop_id": "s-9q9p4n41t8-piedmontav~41stst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p4jfuqs-glenav~panamact", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.18803, 37.782626], [-122.186109, 37.775819]]}, "type": "Feature", "name": "MacArthur Blvd:Pierson St.(Mills College) -> MacArthur Blvd:Millsbrae Av", "properties": {"origin_onestop_id": "s-9q9ngw17sx-macarthurblvd~piersonstmillscollege", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ngsfu17-macarthurblvd~millsbraeav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.270771, 37.845975], [-122.271091, 37.849115]]}, "type": "Feature", "name": "Martin Luther King Jr Way:61st St -> Adeline St:Alcatraz Av", "properties": {"origin_onestop_id": "s-9q9p39thu9-martinlutherkingjrway~61stst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3dhzj4-adelinest~alcatrazav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.15131, 37.688661], [-122.151217, 37.685735]]}, "type": "Feature", "name": "Farnsworth St:Fargo Av -> Farnsworth St:Burkhart Av", "properties": {"origin_onestop_id": "s-9q9nkmh0k5-farnsworthst~fargoav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nkkkpq6-farnsworthst~burkhartav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.249387, 37.809471], [-122.247907, 37.811217]]}, "type": "Feature", "name": "Grand Av:El Embarcadero -> Grand Av:Lake Park Av", "properties": {"origin_onestop_id": "s-9q9p45h8nu-grandav~elembarcadero", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p45mf33-grandav~lakeparkav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.244629, 37.818643], [-122.244223, 37.820072]]}, "type": "Feature", "name": "Grand Av:Wildwood Av -> Grand Av:Fairview Av", "properties": {"origin_onestop_id": "s-9q9p4k8jtd-grandav~wildwoodav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p4kbmzh-grandav~fairviewav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.25922, 37.809823], [-122.26209, 37.810995]]}, "type": "Feature", "name": "Grand Av:Park View Ter -> Grand Av:Harrison St", "properties": {"origin_onestop_id": "s-9q9p1gjd1t-grandav~parkviewter", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1g73nb-grandav~harrisonst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.250755, 37.83362], [-122.249124, 37.831572]]}, "type": "Feature", "name": "Pleasant Valley Av:Gilbert St -> Pleasant Valley Av:Montgomery St", "properties": {"origin_onestop_id": "s-9q9p4p7syc-pleasantvalleyav~gilbertst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p4phbuu-pleasantvalleyav~montgomeryst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.192408, 37.750006], [-122.196566, 37.753291]]}, "type": "Feature", "name": "San Leandro St:81st Av -> San Leandro St:Coliseum BART Station", "properties": {"origin_onestop_id": "s-9q9ng2njwx-sanleandrost~81stav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ng2ff5m-coliseumbartstation<1018210", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.16844, 37.745292], [-122.166168, 37.746342]]}, "type": "Feature", "name": "98th Av:Walnut St -> 98th Av:Cherry St", "properties": {"origin_onestop_id": "s-9q9nezrdm0-98thav~walnutst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nsp923u-98thav~cherryst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.264361, 37.798533], [-122.264052, 37.7999]]}, "type": "Feature", "name": "Oak St:10th St -> 12th St:Oak St", "properties": {"origin_onestop_id": "s-9q9p1c1b3v-oakst~10thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1c603h-12thst~oakst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.204459, 37.747682], [-122.20497, 37.755015]]}, "type": "Feature", "name": "Hassler Way:Oakport St -> 66th Av:Coliseum Way", "properties": {"origin_onestop_id": "s-9q9nepv2jt-hasslerway~oakportst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ng1j4cu-66thav~coliseumway", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.191238, 37.73867], [-122.1926, 37.739017]]}, "type": "Feature", "name": "Edes Av:Phelps St -> Edes Av:85th Av", "properties": {"origin_onestop_id": "s-9q9neqp59v-edesav~phelpsst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9neqnjdn-edesav~85thav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.147542, 37.726635], [-122.148292, 37.728374]]}, "type": "Feature", "name": "Bancroft Av:Joaquin Av -> Bancroft Av:Callan Av", "properties": {"origin_onestop_id": "s-9q9ns7yvef-bancroftav~joaquinav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nsknrdw-bancroftav~callanav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.287388, 37.806435], [-122.288512, 37.804088]]}, "type": "Feature", "name": "Adeline St:10th St -> 7th St:Adeline St", "properties": {"origin_onestop_id": "s-9q9p163n3q-adelinest~10thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1600z0-7thst~adelinest", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.283103, 37.808747], [-122.281155, 37.808164]]}, "type": "Feature", "name": "14th St:Filbert St -> 14th St:Market St", "properties": {"origin_onestop_id": "s-9q9p16u5vj-14thst~filbertst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p16v8d8-14thst~marketst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.237724, 37.840987], [-122.242116, 37.839781]]}, "type": "Feature", "name": "Broadway Ter:Ostrander Rd -> Broadway Ter:Country Club Dr", "properties": {"origin_onestop_id": "s-9q9p62tpwx-broadwayter~ostranderrd", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p62d08n-broadwayter~countryclubdr", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.16029, 37.745976], [-122.158545, 37.743632]]}, "type": "Feature", "name": "Bancroft Av:99th Av -> Bancroft Av:103rd Av", "properties": {"origin_onestop_id": "s-9q9nspmw4z-bancroftav~99thav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nspnbed-bancroftav~103rdav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.235085, 37.816006], [-122.232836, 37.815907]]}, "type": "Feature", "name": "Lakeshore Av:#4072 (Portsmouth Wk) -> Lakeshore Av:Park Ln", "properties": {"origin_onestop_id": "s-9q9p4kpnhn-lakeshoreav~4072portsmouthwk", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p4s0v87-lakeshoreav~parkln", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.238208, 37.814854], [-122.237113, 37.81571]]}, "type": "Feature", "name": "Lakeshore Av:Wala Vista Av -> Lakeshore Av:Harvard Rd", "properties": {"origin_onestop_id": "s-9q9p47uz7r-lakeshoreav~walavistaav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p4kjskz-lakeshoreav~harvardrd", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.185615, 37.749415], [-122.188828, 37.747343]]}, "type": "Feature", "name": "85th Av:G St -> 85th Av:San Leandro St", "properties": {"origin_onestop_id": "s-9q9ng854kb-85thav~gst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nex8y1y-85thav~sanleandrost", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.23988, 37.813733], [-122.241049, 37.812879]]}, "type": "Feature", "name": "Lakeshore Av:Rosal Av -> Lakeshore Av:Prince St", "properties": {"origin_onestop_id": "s-9q9p47g8uq-lakeshoreav~rosalav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p47dgcp-lakeshoreav~princest", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.29847, 37.80596], [-122.29383, 37.80503]]}, "type": "Feature", "name": "7th St:Peralta St -> 7th St:Mandela Pkwy", "properties": {"origin_onestop_id": "s-9q9p142gxj-7thst~peraltast", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p145svu-westoaklandbartstation<9901820", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.251797, 37.825309], [-122.249894, 37.826249]]}, "type": "Feature", "name": "Glen Av:Panama Ct -> Glen Av:Linda Av", "properties": {"origin_onestop_id": "s-9q9p4jfuqs-glenav~panamact", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p4nh3g5-glenav~lindaav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.202817, 37.762742], [-122.199622, 37.764991]]}, "type": "Feature", "name": "Seminary Av:Tevis St -> Seminary Av:International Blvd", "properties": {"origin_onestop_id": "s-9q9ng4qxgv-seminaryav~tevisst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ng6bvn2-seminaryav~internationalblvd", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.156723, 37.741659], [-122.159603, 37.74219]]}, "type": "Feature", "name": "106th Av:Bancroft Av -> 104th Av:Sunnyside St", "properties": {"origin_onestop_id": "s-9q9nsq8jn5-106thav~bancroftav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nsny04y-104thav~sunnysidest", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.181577, 37.737899], [-122.183673, 37.735971]]}, "type": "Feature", "name": "98th Av:Railroad Av -> 98th Av:Edes Av", "properties": {"origin_onestop_id": "s-9q9netyp4y-98thav~railroadav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9netsefn-98thav~edesav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.187244, 37.773892], [-122.19032, 37.771666]]}, "type": "Feature", "name": "Seminary Av:Roberts Av -> Seminary Av:Walunt S[", "properties": {"origin_onestop_id": "s-9q9ngs9byg-seminaryav~robertsav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ngkpezh-seminaryav~walunts", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.249894, 37.826249], [-122.248082, 37.825183]]}, "type": "Feature", "name": "Glen Av:Linda Av -> Linda Av:Rose Av", "properties": {"origin_onestop_id": "s-9q9p4nh3g5-glenav~lindaav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p4jvetj-lindaav~roseav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.276161, 37.806195], [-122.273353, 37.80509]]}, "type": "Feature", "name": "14th St:Martin Luther King Jr Way -> 14th St:Clay St", "properties": {"origin_onestop_id": "s-9q9p1d3jnc-14thst~martinlutherkingjrway", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1d5q87-14thst~clayst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.169018, 37.757697], [-122.167311, 37.755458]]}, "type": "Feature", "name": "Bancroft Av:85th Av -> Bancroft Av:87th Av", "properties": {"origin_onestop_id": "s-9q9ngcx4x8-bancroftav~85thav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nu10mrr-bancroftav~87thav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.29257, 37.855569], [-122.293484, 37.858603]]}, "type": "Feature", "name": "7th St:Grayson St -> 7th St:Parker St", "properties": {"origin_onestop_id": "s-9q9p35mk8t-7thst~graysonst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p35uw77-7thst~parkerst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.176382, 37.766103], [-122.175694, 37.766661]]}, "type": "Feature", "name": "Bancroft Av:73rd Av -> 73rd Av:Garfield Av", "properties": {"origin_onestop_id": "s-9q9ngg1g7z-bancroftav~73rdav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ngg4qez-73rdav~garfieldav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.309766, 37.908915], [-122.308753, 37.907862]]}, "type": "Feature", "name": "Carlson Blvd:Sutter Av -> Carlson Blvd:Huntington Dr", "properties": {"origin_onestop_id": "s-9q9p8v0erv-carlsonblvd~sutterav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p8ucmr3-carlsonblvd~huntingtondr", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.167534, 37.752868], [-122.169186, 37.752088]]}, "type": "Feature", "name": "90th Av:Olive St -> 90th Av:Birch St", "properties": {"origin_onestop_id": "s-9q9nu08q6h-90thav~olivest", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ngbx1ge-90thav~birchst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.260355, 37.837146], [-122.261948, 37.83732]]}, "type": "Feature", "name": "51st St:Miles Av -> 51st St:Telegraph Av", "properties": {"origin_onestop_id": "s-9q9p3bh9r5-51stst~milesav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3b5d65-51stst~telegraphav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.176501, 37.741468], [-122.173973, 37.742661]]}, "type": "Feature", "name": "98th Av:E St -> 98th Av:B St", "properties": {"origin_onestop_id": "s-9q9ney9gcp-98thav~est", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9neygduj-98thav~bst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.270766, 37.852706], [-122.271012, 37.854559]]}, "type": "Feature", "name": "Martin Luther King Jr Way:Prince St (Ashby BART) -> Martin Luther King Jr Way:Ashby Av (Ashby BART)", "properties": {"origin_onestop_id": "s-9q9p3dv5ux-martinlutherkingjrway~princestashbybart", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3ehyyc-martinlutherkingjrway~ashbyavashbybart", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.194391, 37.751253], [-122.192249, 37.749542]]}, "type": "Feature", "name": "San Leandro St:77th Av -> San Leandro St:81st Av", "properties": {"origin_onestop_id": "s-9q9ng2kubr-sanleandrost~77thav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ng2n740-sanleandrost~81stav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.203092, 37.741562], [-122.201543, 37.739796]]}, "type": "Feature", "name": "Edgewater Dr:Roland Way -> Edgewater Dr:#8001", "properties": {"origin_onestop_id": "s-9q9nenwkt9-edgewaterdr~rolandway", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nenrd1x-edgewaterdr~8001", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.184054, 37.735155], [-122.185614, 37.733781]]}, "type": "Feature", "name": "98th Av:Maddux Dr -> 98th Av:Denslowe St", "properties": {"origin_onestop_id": "s-9q9netkr1n-98thav~madduxdr", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9net5phy-98thav~denslowest", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.239256, 37.813928], [-122.238208, 37.814854]]}, "type": "Feature", "name": "Lakeshore Av:Rosal Av -> Lakeshore Av:Wala Vista Av", "properties": {"origin_onestop_id": "s-9q9p47u44g-lakeshoreav~rosalav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p47uz7r-lakeshoreav~walavistaav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.278269, 37.814503], [-122.283767, 37.81565]]}, "type": "Feature", "name": "W Grand Av:Market St -> W Grand Av:Adeline St", "properties": {"origin_onestop_id": "s-9q9p17ztmy-wgrandav~marketst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1k5sjs-wgrandav~adelinest", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.1594, 37.742086], [-122.158406, 37.741962]]}, "type": "Feature", "name": "104th Av:Sunnyside St -> Link St:105th Av", "properties": {"origin_onestop_id": "s-9q9nsnwpxd-104thav~sunnysidest", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nsnwyyg-linkst~105thav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.285864, 37.809356], [-122.283103, 37.808747]]}, "type": "Feature", "name": "14th St:Adeline St -> 14th St:Filbert St", "properties": {"origin_onestop_id": "s-9q9p16fpky-14thst~adelinest", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p16u5vj-14thst~filbertst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.268951, 37.811593], [-122.268358, 37.814091]]}, "type": "Feature", "name": "Telegraph Av:W Grand Av -> Telegraph Av:24th St", "properties": {"origin_onestop_id": "s-9q9p1eqkqz-telegraphav~wgrandav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1eyghc-telegraphav~24thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.125776, 37.696873], [-122.124512, 37.698266]]}, "type": "Feature", "name": "Bay Fair BART Station -> Coelho Dr:Mooney Av", "properties": {"origin_onestop_id": "s-9q9nkyqyex-bayfairbartstation<1504230", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nkyz8kd-coelhodr~mooneyav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.164192, 37.751234], [-122.163152, 37.749841]]}, "type": "Feature", "name": "Bancroft Av:94th Av -> Bancroft Av:96th Av", "properties": {"origin_onestop_id": "s-9q9nu06ubh-bancroftav~94thav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nu05sb0-bancroftav~96thav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.265487, 37.802201], [-122.267375, 37.802933]]}, "type": "Feature", "name": "14th:Jackson St -> 14th St:Harrison St", "properties": {"origin_onestop_id": "s-9q9p1c8vz9-14th~jacksonst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p19zd59-14thst~harrisonst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.283322, 37.817072], [-122.28277, 37.818602]]}, "type": "Feature", "name": "Adeline St:24th St -> Adeline St:26th St", "properties": {"origin_onestop_id": "s-9q9p1kkh2j-adelinest~24thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1ksmkf-adelinest~26thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.244289, 37.820573], [-122.244941, 37.818599]]}, "type": "Feature", "name": "Grand Av:Sunnyside Av -> Grand Av:Jean St", "properties": {"origin_onestop_id": "s-9q9p4m02v9-grandav~sunnysideav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p4hxvq3-grandav~jeanst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.247907, 37.811217], [-122.246277, 37.813949]]}, "type": "Feature", "name": "Grand Av:Lake Park Av -> Grand Av:Mandana Blvd", "properties": {"origin_onestop_id": "s-9q9p45mf33-grandav~lakeparkav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p45yfpr-grandav~mandanablvd", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.303423, 37.879025], [-122.393157, 37.789527]]}, "type": "Feature", "name": "Gilman St:4th St -> Transbay Temp Terminal", "properties": {"origin_onestop_id": "s-9q9p2ztm7d-gilmanst~4thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q8yyz7y5b-sanfranciscoterminal<1410480", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.293121, 37.841274], [-122.293641, 37.833348]]}, "type": "Feature", "name": "Shellmound St:Amtrak -> Shellmond St:Bay St", "properties": {"origin_onestop_id": "s-9q9p30uc7s-shellmoundst~amtrak", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1pk7px-shellmondst~bayst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.269741, 37.803871], [-122.272012, 37.804747]]}, "type": "Feature", "name": "14th St:Franklin St -> 14th St:Broadway (12th St BART Station)", "properties": {"origin_onestop_id": "s-9q9p19vzs8-14thst~franklinst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1dh9te-14thst~broadway<1000860", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.275392, 37.825571], [-122.275693, 37.824097]]}, "type": "Feature", "name": "Market St:35th St -> Market St:33rd St", "properties": {"origin_onestop_id": "s-9q9p1tcvbv-marketst~35thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1t9t3f-marketst~33rdst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.155118, 37.739283], [-122.15665, 37.741411]]}, "type": "Feature", "name": "Bancroft Av:Durant Av -> Bancroft Av:106th Av", "properties": {"origin_onestop_id": "s-9q9nsq1r72-bancroftav~durantav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nsq85xs-bancroftav~106thav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.241866, 37.811737], [-122.241016, 37.812624]]}, "type": "Feature", "name": "Lakeshore Av:Mandana Blvd -> Lakeshore Av:Santa Ray Av", "properties": {"origin_onestop_id": "s-9q9p473gzg-mandanablvd~lakeshoreave<1013750", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p47df9b-lakeshoreav~santarayav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.277487, 37.81744], [-122.276943, 37.818949]]}, "type": "Feature", "name": "Market St:27th St -> Market St:28th St", "properties": {"origin_onestop_id": "s-9q9p1s2q81-marketst~27thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1s8xke-marketst~28thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.174649, 37.735645], [-122.178264, 37.733441]]}, "type": "Feature", "name": "105th Av:San Leandro St -> 105th Av:Edes Av", "properties": {"origin_onestop_id": "s-9q9neve4h6-105thav~sanleandrost", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nev0t0p-105thav~edesav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.292714, 37.810996], [-122.291011, 37.810594]]}, "type": "Feature", "name": "14th St:Center St -> 14th St:Mandela Pkwy", "properties": {"origin_onestop_id": "s-9q9p15m1j0-14thst~centerst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p15nqsv-14thst~mandelapkwy", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.202943, 37.741918], [-122.204395, 37.743575]]}, "type": "Feature", "name": "Edgewater Dr:Roland Way -> Edgewater Dr:Pardee Ln", "properties": {"origin_onestop_id": "s-9q9nenww95-edgewaterdr~rolandway", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nepj2r0-edgewaterdr~pardeeln", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.153227, 37.736746], [-122.155118, 37.739283]]}, "type": "Feature", "name": "Bancroft Av:Victoria Cir -> Bancroft Av:Durant Av", "properties": {"origin_onestop_id": "s-9q9nsmf8rx-bancroftav~victoriacir", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nsq1r72-bancroftav~durantav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.201385, 37.740147], [-122.202943, 37.741918]]}, "type": "Feature", "name": "Edgewater Dr:#8000 -> Edgewater Dr:Roland Way", "properties": {"origin_onestop_id": "s-9q9nenrsm3-edgewaterdr~8000", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nenww95-edgewaterdr~rolandway", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.26649, 37.79786], [-122.26524, 37.797099]]}, "type": "Feature", "name": "Madison St:9th St -> Oak St:8th St (Lake Merritt BART Station)", "properties": {"origin_onestop_id": "s-9q9p1bbk2r-madisonst~9thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1bc0j3-oakst~8thstlakemerrittbartstation", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.130555, 37.708283], [-122.12906, 37.705447]]}, "type": "Feature", "name": "Bancroft Av:Dennis Av (Nazarene Church) -> E 14th St:150th Av", "properties": {"origin_onestop_id": "s-9q9nsbe4xv-bancroftav~dennisavnazarenechurch", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nsbh64s-e14thst~150thav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.279249, 37.80732], [-122.276161, 37.806195]]}, "type": "Feature", "name": "14th St:Brush St -> 14th St:Martin Luther King Jr Way", "properties": {"origin_onestop_id": "s-9q9p16wgwg-14thst~brushst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1d3jnc-14thst~martinlutherkingjrway", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.29312, 37.838437], [-122.295504, 37.843159]]}, "type": "Feature", "name": "Shellmound St:Powell St -> Christie Av:64th St", "properties": {"origin_onestop_id": "s-9q9p30kbgg-shellmoundst~powellst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p315hkh-christieav~64thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.290588, 37.810698], [-122.293718, 37.811396]]}, "type": "Feature", "name": "14th St:Mandela Pkwy -> 14th St:Peralta St", "properties": {"origin_onestop_id": "s-9q9p15nxqb-14thst~mandelapkwy", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p15k7mg-14thst~peraltast", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.285118, 37.812085], [-122.283949, 37.81534]]}, "type": "Feature", "name": "Adeline St:18th St -> Adeline St:W Grand Av", "properties": {"origin_onestop_id": "s-9q9p176xq5-adelinest~18thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1k5d36-adelinest~wgrandav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.253712, 37.802714], [-122.250514, 37.805025]]}, "type": "Feature", "name": "Lakeshore Av:Hanover Av -> Lakeshore Av:Brooklyn Av", "properties": {"origin_onestop_id": "s-9q9p41c8f0-lakeshoreav~hanoverav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p445yhx-lakeshoreav~brooklynav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.160256, 37.752825], [-122.161746, 37.755554]]}, "type": "Feature", "name": "MacArthur Blvd:94th Av -> 90th Av:MacArthur Blvd", "properties": {"origin_onestop_id": "s-9q9nu0tw5s-macarthurblvd~94thav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nu1hswn-90thave~macarthurblvd<1004270", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.147794, 37.743464], [-122.151133, 37.742106]]}, "type": "Feature", "name": "Foothill Blvd:108th Av -> MacArthur Blvd:108th Av", "properties": {"origin_onestop_id": "s-9q9nsqyxw5-foothillblvd~108thav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nsqsr8q-macarthurblvd~108thav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.280819, 37.807927], [-122.280132, 37.80985]]}, "type": "Feature", "name": "Market St:14th St -> Market St:16th St", "properties": {"origin_onestop_id": "s-9q9p16tz4k-marketst~14thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p17n666-marketst~16thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.18085, 37.779543], [-122.183888, 37.776742]]}, "type": "Feature", "name": "Seminary Av:Outlook Av -> Seminary Av:MacArthur Blvd", "properties": {"origin_onestop_id": "s-9q9ngtw9gc-seminaryav~outlookav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ngsurs5-seminaryave~macarthurblvd<1018870", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.157072, 37.722142], [-122.156349, 37.722867]]}, "type": "Feature", "name": "W Juana Av:Clarke St -> Hays St:W Juana Av", "properties": {"origin_onestop_id": "s-9q9ns5pgmu-wjuanaav~clarkest", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ns70rwu-haysst~wjuanaav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.192249, 37.749542], [-122.188486, 37.747291]]}, "type": "Feature", "name": "San Leandro St:81st Av -> 85th Av:San Leandro St (Past Railroad Crossing)", "properties": {"origin_onestop_id": "s-9q9ng2n740-sanleandrost~81stav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nex9jcv-85thav~sanleandrostpastrailroadcrossing", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.176943, 37.769707], [-122.174022, 37.768773]]}, "type": "Feature", "name": "Foothill Blvd:Church St -> Eastmont Transit Center", "properties": {"origin_onestop_id": "s-9q9nggc2qz-foothillblvd~churchst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nggee4c-eastmonttransitcenter", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.254253, 37.802371], [-122.254504, 37.800731]]}, "type": "Feature", "name": "Lakeshore Av:Hanover Av -> Lakeshore Av:E 18th St", "properties": {"origin_onestop_id": "s-9q9p419nv2-lakeshoreav~hanoverav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p412vpw-lakeshoreav~e18thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.183888, 37.776742], [-122.185597, 37.775296]]}, "type": "Feature", "name": "Seminary Av:MacArthur Blvd -> Seminary Av:Camden St (MacArthur Blvd)", "properties": {"origin_onestop_id": "s-9q9ngsurs5-seminaryave~macarthurblvd<1018870", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ngsg1j1-seminaryav~camdenstmacarthurblvd", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.179174, 37.739543], [-122.176501, 37.741468]]}, "type": "Feature", "name": "98th Av:Past Railroad Crossing (Nr San Leandro St) -> 98th Av:E St", "properties": {"origin_onestop_id": "s-9q9newrbfb-98thav~pastrailroadcrossingnrsanleandrost", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ney9gcp-98thav~est", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.200851, 37.79385], [-122.194607, 37.786981]]}, "type": "Feature", "name": "MacArthur Blvd:35th Av -> MacArthur Blvd:High St", "properties": {"origin_onestop_id": "s-9q9p520j1u-macarthurblvd~35thav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ngqut57-macarthurblvd~highst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.26446, 37.81133], [-122.267044, 37.811175]]}, "type": "Feature", "name": "Grand Av:Valdez St -> Broadway:W Grand Av", "properties": {"origin_onestop_id": "s-9q9p1g3dzw-grandav~valdezst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1erf53-broadway~wgrandav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.271012, 37.854559], [-122.271206, 37.85637]]}, "type": "Feature", "name": "Martin Luther King Jr Way:Ashby Av (Ashby BART) -> Martin Luther King Jr Way:Russell St", "properties": {"origin_onestop_id": "s-9q9p3ehyyc-martinlutherkingjrway~ashbyavashbybart", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3esc66-martinlutherkingjrway~russellst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.241049, 37.812879], [-122.2422, 37.81171]]}, "type": "Feature", "name": "Lakeshore Av:Prince St -> Lakeshore Av:Mandana Blvd", "properties": {"origin_onestop_id": "s-9q9p47dgcp-lakeshoreav~princest", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p473gzg-mandanablvd~lakeshoreave<1013760", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.269413, 37.809587], [-122.268951, 37.811593]]}, "type": "Feature", "name": "Thomas L Berkley Way (20th St):Telegragh Av -> Telegraph Av:W Grand Av", "properties": {"origin_onestop_id": "s-9q9p1en0u1-thomaslberkleyway20thst~telegraghav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1eqkqz-telegraphav~wgrandav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.282906, 37.818853], [-122.283466, 37.817331]]}, "type": "Feature", "name": "Adeline St:26th St -> Adeline St:24th St", "properties": {"origin_onestop_id": "s-9q9p1ksqcc-adelinest~26thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1k7vut-adelinest~24thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.20497, 37.755015], [-122.200473, 37.756418]]}, "type": "Feature", "name": "66th Av:Coliseum Way -> San Leandro St:66th Av", "properties": {"origin_onestop_id": "s-9q9ng1j4cu-66thav~coliseumway", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ng3274d-sanleandrost~66thav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.249734, 37.807325], [-122.250763, 37.804968]]}, "type": "Feature", "name": "Lakeshore Av:Boden Way -> Lakeshore Av:Brooklyn Av", "properties": {"origin_onestop_id": "s-9q9p44s7ws-lakeshoreav~bodenway", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p445tyu-lakeshoreav~brooklynav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.281155, 37.808164], [-122.279249, 37.80732]]}, "type": "Feature", "name": "14th St:Market St -> 14th St:Brush St", "properties": {"origin_onestop_id": "s-9q9p16v8d8-14thst~marketst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p16wgwg-14thst~brushst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.206549, 37.745494], [-122.204685, 37.743369]]}, "type": "Feature", "name": "Edgewater Dr:#7303 -> Edgewater Dr:Pardee Ln", "properties": {"origin_onestop_id": "s-9q9nep7gmn-edgewaterdr~7303", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nenvr03-edgewaterdr~pardeeln", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.280066, 37.827034], [-122.281186, 37.823571]]}, "type": "Feature", "name": "Adeline St:35th St -> Adeline St:32nd St", "properties": {"origin_onestop_id": "s-9q9p1qnq7y-adelinest~35thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1mtd3b-adelinest~32ndst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.275803, 37.806222], [-122.278968, 37.807464]]}, "type": "Feature", "name": "14th St:Martin Luther King Jr Way -> 14th St:Brush St", "properties": {"origin_onestop_id": "s-9q9p1d3mpq-14thst~martinlutherkingjrway", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p16xhmw-14thst~brushst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.163152, 37.749841], [-122.162219, 37.748585]]}, "type": "Feature", "name": "Bancroft Av:96th Av -> Bancroft Av:98th Av", "properties": {"origin_onestop_id": "s-9q9nu05sb0-bancroftav~96thav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nspujmy-bancroftav~98thav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.250514, 37.805025], [-122.24946, 37.807419]]}, "type": "Feature", "name": "Lakeshore Av:Brooklyn Av -> Lakeshore Av:Boden Way", "properties": {"origin_onestop_id": "s-9q9p445yhx-lakeshoreav~brooklynav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p44ssjj-lakeshoreav~bodenway", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.246712, 37.838341], [-122.249438, 37.837239]]}, "type": "Feature", "name": "Broadway Ter:Carlton St -> Broadway Ter:Thomas Av (Arts Jr High Sch./Far W H)", "properties": {"origin_onestop_id": "s-9q9p60q8m4-broadwayter~carltonst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p60h9vs-broadwayter~thomasavartsjrhighsch~farwh", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.264215, 37.840381], [-122.262124, 37.840181]]}, "type": "Feature", "name": "55th St:Shattuck Av -> 55th St:Telegraph Av", "properties": {"origin_onestop_id": "s-9q9p3b9ujq-55thst~shattuckav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3be7n1-55thst~telegraphav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.174806, 37.796697], [-122.170114, 37.798672]]}, "type": "Feature", "name": "Redwood Rd:Crestmont Dr -> Skyline Blvd:Redwood Rd", "properties": {"origin_onestop_id": "s-9q9p5bej8w-redwoodrd~crestmontdr", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p5cn3np-skylineblvd~redwoodrd", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.185413, 37.775283], [-122.183478, 37.776696]]}, "type": "Feature", "name": "Seminary Av:Camden St (MacArthur Blvd) -> Seminary Av:MacArthur Blvd", "properties": {"origin_onestop_id": "s-9q9ngsg2cx-seminaryav~camdenstmacarthurblvd", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ngsurs5-seminaryave~macarthurblvd<1018860", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.250726, 37.833842], [-122.253296, 37.835148]]}, "type": "Feature", "name": "Pleasant Valley Av:Gilbert St -> 51st St:Desmond St", "properties": {"origin_onestop_id": "s-9q9p4p7wpe-pleasantvalleyav~gilbertst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p4p9vew-51stst~desmondst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.270509, 37.842547], [-122.270268, 37.841457]]}, "type": "Feature", "name": "Martin Luther King Jr Way:Arlington Av -> Martin Luther King Jr Way:Aileen St", "properties": {"origin_onestop_id": "s-9q9p39j2fd-martinlutherkingjrway~arlingtonav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p38vd2q-martinlutherkingjrway~aileenst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.162219, 37.748585], [-122.16029, 37.745976]]}, "type": "Feature", "name": "Bancroft Av:98th Av -> Bancroft Av:99th Av", "properties": {"origin_onestop_id": "s-9q9nspujmy-bancroftav~98thav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nspmw4z-bancroftav~99thav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.281353, 37.8086], [-122.282787, 37.808968]]}, "type": "Feature", "name": "14th St:Market St -> 14th St:Filbert St", "properties": {"origin_onestop_id": "s-9q9p16v7jc-14thst~marketst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p16umhw-14thst~filbertst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.285552, 37.810903], [-122.285118, 37.812085]]}, "type": "Feature", "name": "Adeline St:16th St -> Adeline St:18th St", "properties": {"origin_onestop_id": "s-9q9p1762kp-adelinest~16thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p176xq5-adelinest~18thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.270843, 37.804786], [-122.26971, 37.806506]]}, "type": "Feature", "name": "Broadway:14th St -> Broadway:17th St", "properties": {"origin_onestop_id": "s-9q9p1dh9te-14thst~broadway<1006380", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1dmyv7-broadway~17thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.211021, 37.829368], [-122.210982, 37.82695]]}, "type": "Feature", "name": "Mountain Blvd:Colton Blvd -> Medau Pl:Moraga Av", "properties": {"origin_onestop_id": "s-9q9p5n8shc-mountainblvd~coltonblvd", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p5n0tsh-moragaave~medaupl<1016420", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.271746, 37.804447], [-122.270193, 37.803832]]}, "type": "Feature", "name": "14th St:Broadway (12th St BART Station) -> 14th St:Franklin St", "properties": {"origin_onestop_id": "s-9q9p1dh9te-14thst~broadway<1000870", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p19vx61-14thst~franklinst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.178264, 37.733441], [-122.177845, 37.732163]]}, "type": "Feature", "name": "105th Av:Edes Av -> Acalanes Dr:Capistrano Dr", "properties": {"origin_onestop_id": "s-9q9nev0t0p-105thav~edesav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9neubvcb-acalanesdr~capistranodr", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.167232, 37.740232], [-122.164651, 37.74089]]}, "type": "Feature", "name": "International Blvd:104th Av -> 104th Av:Plymouth St", "properties": {"origin_onestop_id": "s-9q9nsn2sc1-internationalblvd~104thav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nsnd2t7-104thav~plymouthst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.28246, 37.820072], [-122.282906, 37.818853]]}, "type": "Feature", "name": "Adeline St:28th St -> Adeline St:26th St", "properties": {"origin_onestop_id": "s-9q9p1kutuh-adelinest~28thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1ksqcc-adelinest~26thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.274547, 37.827784], [-122.273785, 37.830886]]}, "type": "Feature", "name": "Market St:W MacArthur Blvd -> Market St:40th St", "properties": {"origin_onestop_id": "s-9q9p1w66ud-marketst~wmacarthurblvd", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1wfuyk-marketst~40thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.164075, 37.747313], [-122.161364, 37.748587]]}, "type": "Feature", "name": "98th Av:Olive St -> 98th Av:Bancroft Av", "properties": {"origin_onestop_id": "s-9q9nspdy49-98thav~olivest", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nspuv3y-98thav~bancroftav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.169186, 37.752088], [-122.170984, 37.751282]]}, "type": "Feature", "name": "90th Av:Birch St -> 90th Av:Plymouth St", "properties": {"origin_onestop_id": "s-9q9ngbx1ge-90thav~birchst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ngbmv1t-90thav~plymouthst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.178389, 37.732904], [-122.179943, 37.734797]]}, "type": "Feature", "name": "Acalanes Dr:105th Av -> Edes Av:Hale Av", "properties": {"origin_onestop_id": "s-9q9nev06j5-acalanesdr~105thav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9netrm0g-edesav~haleav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.308615, 37.911073], [-122.304235, 37.903766]]}, "type": "Feature", "name": "San Pablo Av:Moeser Ln -> San Pablo Av:El Dorado St", "properties": {"origin_onestop_id": "s-9q9p8v9848-sanpabloav~moeserln", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p8uhv2y-sanpabloav~eldoradost", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.24946, 37.807419], [-122.246858, 37.809406]]}, "type": "Feature", "name": "Lakeshore Av:Boden Way -> Lakeshore Av:MacArthur Blvd", "properties": {"origin_onestop_id": "s-9q9p44ssjj-lakeshoreav~bodenway", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p44yxc8-lakeshoreav~macarthurblvd", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.185597, 37.775296], [-122.187244, 37.773892]]}, "type": "Feature", "name": "Seminary Av:Camden St (MacArthur Blvd) -> Seminary Av:Roberts Av", "properties": {"origin_onestop_id": "s-9q9ngsg1j1-seminaryav~camdenstmacarthurblvd", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ngs9byg-seminaryav~robertsav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.146585, 37.724433], [-122.147542, 37.726635]]}, "type": "Feature", "name": "Bancroft Av:Dolores Av -> Bancroft Av:Joaquin Av", "properties": {"origin_onestop_id": "s-9q9ns7x8f2-bancroftav~doloresav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ns7yvef-bancroftav~joaquinav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.15519, 37.742083], [-122.156723, 37.741659]]}, "type": "Feature", "name": "106th Av:Longfellow Av -> 106th Av:Bancroft Av", "properties": {"origin_onestop_id": "s-9q9nsq9r9f-106thav~longfellowav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nsq8jn5-106thav~bancroftav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.173973, 37.742661], [-122.170045, 37.744526]]}, "type": "Feature", "name": "98th Av:B St -> 98th Av:International Blvd", "properties": {"origin_onestop_id": "s-9q9neygduj-98thav~bst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9neznmz9-98thav~internationalblvd", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.168265, 37.745508], [-122.171073, 37.744244]]}, "type": "Feature", "name": "98th Av:Walnut St -> 98th Av:International Blvd", "properties": {"origin_onestop_id": "s-9q9nezrg90-98thav~walnutst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nezjspt-98thav~internationalblvd", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.274641, 37.828296], [-122.275392, 37.825571]]}, "type": "Feature", "name": "Market St:W MacArthur Blvd -> Market St:35th St", "properties": {"origin_onestop_id": "s-9q9p1w6mf3-marketst~wmacarthurblvd", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1tcvbv-marketst~35thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.26524, 37.797099], [-122.264361, 37.798533]]}, "type": "Feature", "name": "Oak St:8th St (Lake Merritt BART Station) -> Oak St:10th St", "properties": {"origin_onestop_id": "s-9q9p1bc0j3-oakst~8thstlakemerrittbartstation", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1c1b3v-oakst~10thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.293718, 37.811396], [-122.2964, 37.812679]]}, "type": "Feature", "name": "14th St:Peralta St -> 14th St:Willow St", "properties": {"origin_onestop_id": "s-9q9p15k7mg-14thst~peraltast", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p15d6z6-14thst~willowst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.31535, 37.823222], [-122.289797, 37.816845]]}, "type": "Feature", "name": "I-80 Fwy:Toll Plaza (East Bound) -> W Grand Av:Mandela Pkwy", "properties": {"origin_onestop_id": "s-9q9p0ts8jz-i~80fwy~tollplazaeastbound", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1hr714-wgrandav~mandelapkwy", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.261948, 37.83732], [-122.262032, 37.838461]]}, "type": "Feature", "name": "51st St:Telegraph Av -> Telegraph Av:Claremont Av", "properties": {"origin_onestop_id": "s-9q9p3b5d65-51stst~telegraphav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3b7900-telegraphav~claremontav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.151133, 37.742106], [-122.15519, 37.742083]]}, "type": "Feature", "name": "MacArthur Blvd:108th Av -> 106th Av:Longfellow Av", "properties": {"origin_onestop_id": "s-9q9nsqsr8q-macarthurblvd~108thav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nsq9r9f-106thav~longfellowav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.279204, 37.853457], [-122.278696, 37.851253]]}, "type": "Feature", "name": "Sacramento St:Ashby Av -> Sacramento St:Prince St", "properties": {"origin_onestop_id": "s-9q9p37p025-sacramentost~ashbyav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p36x7eb-sacramentost~princest", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.174227, 37.749768], [-122.175727, 37.751641]]}, "type": "Feature", "name": "90th Av:International Blvd -> International Blvd:87th Av", "properties": {"origin_onestop_id": "s-9q9ngb5kq4-90thav~internationalblvd", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ngb6r5p-internationalblvd~87thav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.282191, 37.820177], [-122.281569, 37.821905]]}, "type": "Feature", "name": "Adeline St:28th St -> Adeline St:30th St", "properties": {"origin_onestop_id": "s-9q9p1kuy6r-adelinest~28thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1mm28f-adelinest~30thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.211973, 37.83048], [-122.211021, 37.829368]]}, "type": "Feature", "name": "Mountain Blvd:Cabot Dr -> Mountain Blvd:Colton Blvd", "properties": {"origin_onestop_id": "s-9q9p4yzfw8-mountainblvd~cabotdr", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p5n8shc-mountainblvd~coltonblvd", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.17994, 37.734618], [-122.177845, 37.732163]]}, "type": "Feature", "name": "Edes Av:Hale Av -> Acalanes Dr:Capistrano Dr", "properties": {"origin_onestop_id": "s-9q9netrk14-edesav~haleav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9neubvcb-acalanesdr~capistranodr", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.17457, 37.7792], [-122.176623, 37.77987]]}, "type": "Feature", "name": "Hillmont Dr:Overdale Av -> Hillmont Dr:Seminary Av", "properties": {"origin_onestop_id": "s-9q9ngv7py1-hillmontdr~overdaleav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ngv9ewq-hillmontdr~seminaryav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.272065, 37.803051], [-122.2745, 37.802276]]}, "type": "Feature", "name": "Broadway:12th St (12th St BART Station) -> 10th St:Washington St", "properties": {"origin_onestop_id": "s-9q9p19u1u7-12thst~broadway<1006310", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p19dqjw-10thst~washingtonst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.17439, 37.76363], [-122.172894, 37.762145]]}, "type": "Feature", "name": "Bancroft Av:77th Av -> Bancroft Av:Ritchie St", "properties": {"origin_onestop_id": "s-9q9ngfem46-bancroftav~77thav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ngfkkmn-bancroftav~ritchiest", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.273993, 37.830808], [-122.274641, 37.828296]]}, "type": "Feature", "name": "Market St:40th St -> Market St:W MacArthur Blvd", "properties": {"origin_onestop_id": "s-9q9p1wfu3m-marketst~40thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1w6mf3-marketst~wmacarthurblvd", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.28715, 37.806508], [-122.286128, 37.809309]]}, "type": "Feature", "name": "Adeline St:10th St -> Adeline St:14th St", "properties": {"origin_onestop_id": "s-9q9p163nyg-adelinest~10thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p16cznw-adelinest~14thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.316122, 37.910192], [-122.313165, 37.909198]]}, "type": "Feature", "name": "Carlson Blvd:San Luis St -> Carlson Blvd:Placer St", "properties": {"origin_onestop_id": "s-9q9p8tk4gg-carlsonblvd~sanluisst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p8tnm0d-carlsonblvd~placerst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.200507, 37.756782], [-122.204759, 37.761383]]}, "type": "Feature", "name": "San Leandro St:66th Av -> Seminary Av:Div 4 Gate (Near San Leandro St)", "properties": {"origin_onestop_id": "s-9q9ng32m1y-sanleandrost~66thav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ng4jpyx-seminaryav~div4gatenearsanleandrost", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.255964, 37.809069], [-122.25922, 37.809823]]}, "type": "Feature", "name": "Grand Av:Perkins St -> Grand Av:Park View Ter", "properties": {"origin_onestop_id": "s-9q9p1fzvv9-grandav~perkinsst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1gjd1t-grandav~parkviewter", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.281161, 37.807915], [-122.28159, 37.805266]]}, "type": "Feature", "name": "Market St:14th St -> 10th St:Market St", "properties": {"origin_onestop_id": "s-9q9p16tx46-marketst~14thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p16jr8k-10thst~marketst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.26209, 37.810995], [-122.26446, 37.81133]]}, "type": "Feature", "name": "Grand Av:Harrison St -> Grand Av:Valdez St", "properties": {"origin_onestop_id": "s-9q9p1g73nb-grandav~harrisonst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1g3dzw-grandav~valdezst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.267365, 37.839968], [-122.264215, 37.840381]]}, "type": "Feature", "name": "55th St:Dover St -> 55th St:Shattuck Av", "properties": {"origin_onestop_id": "s-9q9p38x9gc-55thst~doverst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3b9ujq-55thst~shattuckav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.1926, 37.739017], [-122.195849, 37.745073]]}, "type": "Feature", "name": "Edes Av:85th Av -> Hegenberger Rd:Edes Av", "properties": {"origin_onestop_id": "s-9q9neqnjdn-edesav~85thav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ner78yr-hegenbergerrd~edesav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.245399, 37.816242], [-122.244629, 37.818643]]}, "type": "Feature", "name": "Grand Av:Weldon Av -> Grand Av:Wildwood Av", "properties": {"origin_onestop_id": "s-9q9p4hpxed-grandav~weldonav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p4k8jtd-grandav~wildwoodav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.268569, 37.872032], [-122.26881, 37.870306]]}, "type": "Feature", "name": "University Av:Shattuck Av -> Center St:Shattuck Av (Berkeley BART Station)", "properties": {"origin_onestop_id": "s-9q9p3wqsxf-universityav~shattuckav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3wp1qn-centerst~shattuckave<9902090", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.206714, 37.746234], [-122.204459, 37.747682]]}, "type": "Feature", "name": "Edgewater Dr:Hassler Way -> Hassler Way:Oakport St", "properties": {"origin_onestop_id": "s-9q9nep7zc0-edgewaterdr~hasslerway", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nepv2jt-hasslerway~oakportst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.164264, 37.75438], [-122.165464, 37.753829]]}, "type": "Feature", "name": "90th Av:Dowling St -> 90th Av:Bancroft Av", "properties": {"origin_onestop_id": "s-9q9nu0fxnq-90thav~dowlingst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nu0cgfr-90thav~bancroftav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.159603, 37.74219], [-122.162038, 37.741635]]}, "type": "Feature", "name": "104th Av:Sunnyside St -> 104th Av:Birch St", "properties": {"origin_onestop_id": "s-9q9nsny04y-104thav~sunnysidest", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nsnskfn-104thav~birchst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.204759, 37.761383], [-122.202817, 37.762742]]}, "type": "Feature", "name": "Seminary Av:Div 4 Gate (Near San Leandro St) -> Seminary Av:Tevis St", "properties": {"origin_onestop_id": "s-9q9ng4jpyx-seminaryav~div4gatenearsanleandrost", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ng4qxgv-seminaryav~tevisst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.289056, 37.810082], [-122.285864, 37.809356]]}, "type": "Feature", "name": "14th St:Poplar St -> 14th St:Adeline St", "properties": {"origin_onestop_id": "s-9q9p15pgdq-14thst~poplarst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p16fpky-14thst~adelinest", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.157994, 37.748396], [-122.157144, 37.747084]]}, "type": "Feature", "name": "MacArthur Blvd:Warner Av -> MacArthur Blvd:99th Av", "properties": {"origin_onestop_id": "s-9q9nspzk27-macarthurblvd~warnerav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nspxusn-macarthurblvd~99thav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.289057, 37.810341], [-122.290588, 37.810698]]}, "type": "Feature", "name": "14th St:Poplar St -> 14th St:Mandela Pkwy", "properties": {"origin_onestop_id": "s-9q9p15pv4q-14thst~poplarst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p15nxqb-14thst~mandelapkwy", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.172634, 37.736573], [-122.174649, 37.735645]]}, "type": "Feature", "name": "105th Av:E St -> 105th Av:San Leandro St", "properties": {"origin_onestop_id": "s-9q9nevsx7r-105thav~est", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9neve4h6-105thav~sanleandrost", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.210982, 37.82695], [-122.210718, 37.826291]]}, "type": "Feature", "name": "Medau Pl:Moraga Av -> Moraga Av:La Salle Av", "properties": {"origin_onestop_id": "s-9q9p5n0tsh-moragaave~medaupl<1016420", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p5n0tsh-moragaave~medaupl<1016690", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.173903, 37.768992], [-122.169885, 37.775054]]}, "type": "Feature", "name": "Eastmont Transit Center -> Hillmont Dr:Altamont Av", "properties": {"origin_onestop_id": "s-9q9nggesmd-eastmonttransitcenter", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nguwxek-hillmontdr~altamontav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.27073, 37.869907], [-122.268578, 37.869353]]}, "type": "Feature", "name": "Center St:Milvia St -> Allston Way:Shattuck Av", "properties": {"origin_onestop_id": "s-9q9p3wj0jq-centerst~milviast", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3wp1qn-centerst~shattuckave<0306700", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.150793, 37.733494], [-122.153227, 37.736746]]}, "type": "Feature", "name": "Bancroft Av:Dutton Av -> Bancroft Av:Victoria Cir", "properties": {"origin_onestop_id": "s-9q9nsmht81-bancroftav~duttonav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nsmf8rx-bancroftav~victoriacir", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.193363, 37.769538], [-122.195321, 37.768156]]}, "type": "Feature", "name": "Seminary Av:Seminary Ct -> Seminary Av:Harmon Av", "properties": {"origin_onestop_id": "s-9q9ng7tx82-seminaryav~seminaryct", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ng7kp6w-seminaryav~harmonav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.125395, 37.69636], [-122.124512, 37.698266]]}, "type": "Feature", "name": "Bay Fair BART Station -> Coelho Dr:Mooney Av", "properties": {"origin_onestop_id": "s-9q9nkyqyex-bayfairbartstation<1500580", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nkyz8kd-coelhodr~mooneyav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.282132, 37.881787], [-122.284164, 37.880576]]}, "type": "Feature", "name": "Monterey Av:Hopkins St -> Hopkins St:Albina Av", "properties": {"origin_onestop_id": "s-9q9p92hv7u-montereyav~hopkinsst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3rgqk7-hopkinsst~albinaav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.299906, 37.806309], [-122.29847, 37.80596]]}, "type": "Feature", "name": "7th St:Campbell St (United States Post Office) -> 7th St:Peralta St", "properties": {"origin_onestop_id": "s-9q9p0frvtw-7thst~campbellstunitedstatespostoffice", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p142gxj-7thst~peraltast", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.258083, 37.836759], [-122.260355, 37.837146]]}, "type": "Feature", "name": "51st St:Shafter Av -> 51st St:Miles Av", "properties": {"origin_onestop_id": "s-9q9p1zyrh5-51stst~shafterav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3bh9r5-51stst~milesav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.272027, 37.863594], [-122.272265, 37.86533]]}, "type": "Feature", "name": "Martin Luther King Jr Way:Dwight Way -> Martin Luther King Jr Way:Channing Way", "properties": {"origin_onestop_id": "s-9q9p3su5rm-martinlutherkingjrway~dwightway", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3thj99-martinlutherkingjrway~channingway", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.278169, 37.816132], [-122.278887, 37.814174]]}, "type": "Feature", "name": "Market St:24th St -> Market St:W Grand Av", "properties": {"origin_onestop_id": "s-9q9p1kpybj-marketst~24thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p17z5x2-marketst~wgrandav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.165464, 37.753829], [-122.167534, 37.752868]]}, "type": "Feature", "name": "90th Av:Bancroft Av -> 90th Av:Olive St", "properties": {"origin_onestop_id": "s-9q9nu0cgfr-90thav~bancroftav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nu08q6h-90thav~olivest", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.161364, 37.748587], [-122.15964, 37.751214]]}, "type": "Feature", "name": "98th Av:Bancroft Av -> MacArthur Blvd:96th Av", "properties": {"origin_onestop_id": "s-9q9nspuv3y-98thav~bancroftav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nu0qhf0-macarthurblvd~96thav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.28596, 37.809626], [-122.289057, 37.810341]]}, "type": "Feature", "name": "14th St:Adeline St -> 14th St:Poplar St", "properties": {"origin_onestop_id": "s-9q9p174149-14thst~adelinest", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p15pv4q-14thst~poplarst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.276083, 37.822514], [-122.276649, 37.820532]]}, "type": "Feature", "name": "Market St:32nd St -> San Pablo Av:Market St", "properties": {"origin_onestop_id": "s-9q9p1t3k0g-marketst~32ndst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1t0bed-sanpabloav~marketst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.244223, 37.820072], [-122.244168, 37.821701]]}, "type": "Feature", "name": "Grand Av:Fairview Av -> Linda Av:Grand Av", "properties": {"origin_onestop_id": "s-9q9p4kbmzh-grandav~fairviewav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p4m0x2k-lindaav~grandav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.161746, 37.755554], [-122.164264, 37.75438]]}, "type": "Feature", "name": "90th Av:MacArthur Blvd -> 90th Av:Dowling St", "properties": {"origin_onestop_id": "s-9q9nu1hswn-90thave~macarthurblvd<1004270", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nu0fxnq-90thav~dowlingst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.185479, 37.737093], [-122.187925, 37.737759]]}, "type": "Feature", "name": "Edes Av:Tyler St -> Edes Av:Clara St", "properties": {"origin_onestop_id": "s-9q9netg4xb-edesav~tylerst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9netcqqu-edesav~clarast", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.200473, 37.756418], [-122.197208, 37.753493]]}, "type": "Feature", "name": "San Leandro St:66th Av -> San Leandro St:Coliseum BART Walkway", "properties": {"origin_onestop_id": "s-9q9ng3274d-sanleandrost~66thav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ng2ff5m-coliseumbartstation<1031010", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.251428, 37.808713], [-122.253613, 37.808876]]}, "type": "Feature", "name": "Grand Av:Euclid Av -> Grand Av:Staten Av", "properties": {"origin_onestop_id": "s-9q9p44g5xq-grandav~euclidav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p44cssm-grandav~statenav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.196376, 37.76742], [-122.197382, 37.766708]]}, "type": "Feature", "name": "Seminary Av:Bromley Av -> Seminary Av:E 17th St", "properties": {"origin_onestop_id": "s-9q9ng7774j-seminaryav~bromleyav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ng74x48-seminaryav~e17thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.190862, 37.771305], [-122.193363, 37.769538]]}, "type": "Feature", "name": "Seminary Av:Foothill Blvd -> Seminary Av:Seminary Ct", "properties": {"origin_onestop_id": "s-9q9ngkp3f9-seminaryav~foothillblvd", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ng7tx82-seminaryav~seminaryct", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.198413, 37.737272], [-122.196361, 37.73685]]}, "type": "Feature", "name": "Edgewater Dr:Pendleton Way -> Hegenberger Lp:Hegenberger Rd", "properties": {"origin_onestop_id": "s-9q9nemcgd9-edgewaterdr~pendletonway", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nemg346-hegenbergerlp~hegenbergerrd", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.275693, 37.824097], [-122.276083, 37.822514]]}, "type": "Feature", "name": "Market St:33rd St -> Market St:32nd St", "properties": {"origin_onestop_id": "s-9q9p1t9t3f-marketst~33rdst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1t3k0g-marketst~32ndst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.192144, 37.730984], [-122.193192, 37.731694]]}, "type": "Feature", "name": "Empire Rd:Coral Rd (Near 98th Av) -> Empire Rd:Wistar Rd", "properties": {"origin_onestop_id": "s-9q9nekwqut-empirerd~coralrdnear98thav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nekveh3-empirerd~wistarrd", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.174499, 37.764187], [-122.176382, 37.766103]]}, "type": "Feature", "name": "Bancroft Av:77th Av -> Bancroft Av:73rd Av", "properties": {"origin_onestop_id": "s-9q9ngfg0rf-bancroftav~77thav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ngg1g7z-bancroftav~73rdav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.164651, 37.74089], [-122.161936, 37.741525]]}, "type": "Feature", "name": "104th Av:Plymouth St -> 104th Av:Birch St", "properties": {"origin_onestop_id": "s-9q9nsnd2t7-104thav~plymouthst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nsnskkd-104thav~birchst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.258605, 37.863067], [-122.258365, 37.86499]]}, "type": "Feature", "name": "Telegraph Av:Parker St -> Telegraph Av:Dwight Way", "properties": {"origin_onestop_id": "s-9q9p3uy025-telegraphav~parkerst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3vn5t9-telegraphav~dwightway", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.258365, 37.86499], [-122.25861, 37.866293]]}, "type": "Feature", "name": "Telegraph Av:Dwight Way -> Telegraph Av:Haste St", "properties": {"origin_onestop_id": "s-9q9p3vn5t9-telegraphav~dwightway", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3vmgpu-telegraphav~hastest", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.266711, 37.820313], [-122.26619, 37.822288]]}, "type": "Feature", "name": "Telegraph Av:31st St -> Telegraph Av:34th St", "properties": {"origin_onestop_id": "s-9q9p1ubp71-telegraphav~31stst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1v26z3-telegraphav~34thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.301794, 37.808224], [-122.298993, 37.811723]]}, "type": "Feature", "name": "Wood St:8th St -> Wood St:12th St", "properties": {"origin_onestop_id": "s-9q9p0fy8ce-woodst~8thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p152t6b-woodst~12thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.182907, 37.736261], [-122.17994, 37.734618]]}, "type": "Feature", "name": "Edes Av:98th Av -> Edes Av:Hale Av", "properties": {"origin_onestop_id": "s-9q9nettjeu-edesav~98thav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9netrk14-edesav~haleav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.281249, 37.884791], [-122.282132, 37.881787]]}, "type": "Feature", "name": "Monterey Av:Posen Av -> Monterey Av:Hopkins St", "properties": {"origin_onestop_id": "s-9q9p92twbk-montereyav~posenav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p92hv7u-montereyav~hopkinsst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.278887, 37.814174], [-122.280552, 37.809559]]}, "type": "Feature", "name": "Market St:W Grand Av -> Market St:16th St", "properties": {"origin_onestop_id": "s-9q9p17z5x2-marketst~wgrandav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p17n08s-marketst~16thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.283466, 37.817331], [-122.284018, 37.81579]]}, "type": "Feature", "name": "Adeline St:24th St -> Adeline St:W Grand Av", "properties": {"origin_onestop_id": "s-9q9p1k7vut-adelinest~24thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1k5kzy-adelinest~wgrandav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.267919, 37.802956], [-122.265439, 37.801985]]}, "type": "Feature", "name": "14th St:Harrison St -> 14th St:Jackson St", "properties": {"origin_onestop_id": "s-9q9p19z4nv-14thst~harrisonst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1c9h8b-14thst~jacksonst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.229771, 37.804607], [-122.393626, 37.789707]]}, "type": "Feature", "name": "Park Blvd:Emerson Way -> Transbay Temp Terminal", "properties": {"origin_onestop_id": "s-9q9p4d4gzc-parkblvd~emersonway", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q8yyz7y5b-sanfranciscoterminal<1410410", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.194928, 37.732733], [-122.19346, 37.731753]]}, "type": "Feature", "name": "Empire Rd:Tunis Rd -> Empire Rd:Wistar Rd", "properties": {"origin_onestop_id": "s-9q9nemh35g-empirerd~tunisrd", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nekv7qh-empirerd~wistarrd", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.278101, 37.815775], [-122.277487, 37.81744]]}, "type": "Feature", "name": "Market St:Mead St -> Market St:27th St", "properties": {"origin_onestop_id": "s-9q9p1kpuce-marketst~meadst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1s2q81-marketst~27thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.268358, 37.814091], [-122.267868, 37.81592]]}, "type": "Feature", "name": "Telegraph Av:24th St -> Telegraph Av:27th St", "properties": {"origin_onestop_id": "s-9q9p1eyghc-telegraphav~24thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1spm8n-telegraphav~27thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.286128, 37.809309], [-122.285552, 37.810903]]}, "type": "Feature", "name": "Adeline St:14th St -> Adeline St:16th St", "properties": {"origin_onestop_id": "s-9q9p16cznw-adelinest~14thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1762kp-adelinest~16thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.278338, 37.849747], [-122.277941, 37.84806]]}, "type": "Feature", "name": "Sacramento St:Fairview St -> Sacramento St:Alcatraz Av", "properties": {"origin_onestop_id": "s-9q9p36rdu0-sacramentost~fairviewst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p36pbvm-sacramentost~alcatrazav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.270404, 37.844186], [-122.270771, 37.845975]]}, "type": "Feature", "name": "Martin Luther King Jr Way:59th St -> Martin Luther King Jr Way:61st St", "properties": {"origin_onestop_id": "s-9q9p39m6m5-martinlutherkingjrway~59thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p39thu9-martinlutherkingjrway~61stst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.291011, 37.810594], [-122.289056, 37.810082]]}, "type": "Feature", "name": "14th St:Mandela Pkwy -> 14th St:Poplar St", "properties": {"origin_onestop_id": "s-9q9p15nqsv-14thst~mandelapkwy", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p15pgdq-14thst~poplarst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.167299, 37.738876], [-122.167232, 37.740232]]}, "type": "Feature", "name": "105th Av:Pontiac St -> International Blvd:104th Av", "properties": {"origin_onestop_id": "s-9q9nsn0kzs-105thav~pontiacst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nsn2sc1-internationalblvd~104thav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.304235, 37.903766], [-122.303548, 37.902337]]}, "type": "Feature", "name": "San Pablo Av:El Dorado St -> San Pablo Av:Central Av", "properties": {"origin_onestop_id": "s-9q9p8uhv2y-sanpabloav~eldoradost", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p8gvm0g-sanpabloav~centralav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.159045, 37.750003], [-122.157994, 37.748396]]}, "type": "Feature", "name": "MacArthur Blvd:98th Av -> MacArthur Blvd:Warner Av", "properties": {"origin_onestop_id": "s-9q9nu0nmxy-macarthurblvd~98thav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nspzk27-macarthurblvd~warnerav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.204333, 37.747883], [-122.206549, 37.745494]]}, "type": "Feature", "name": "Hassler Way:Oakport St -> Edgewater Dr:#7303", "properties": {"origin_onestop_id": "s-9q9nepv92e-hasslerway~oakportst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nep7gmn-edgewaterdr~7303", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.174022, 37.768773], [-122.175639, 37.767082]]}, "type": "Feature", "name": "Eastmont Transit Center -> 73rd Av:Garfield Av", "properties": {"origin_onestop_id": "s-9q9nggee4c-eastmonttransitcenter", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ngg63jq-73rdav~garfieldav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.244005, 37.821549], [-122.244289, 37.820573]]}, "type": "Feature", "name": "Linda Av:Grand Av -> Grand Av:Sunnyside Av", "properties": {"origin_onestop_id": "s-9q9p4m0wkp-lindaav~grandav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p4m02v9-grandav~sunnysideav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.28277, 37.818602], [-122.282191, 37.820177]]}, "type": "Feature", "name": "Adeline St:26th St -> Adeline St:28th St", "properties": {"origin_onestop_id": "s-9q9p1ksmkf-adelinest~26thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1kuy6r-adelinest~28thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.276623, 37.819829], [-122.276177, 37.821344]]}, "type": "Feature", "name": "Market St:San Pablo Av -> Market St:31st St", "properties": {"origin_onestop_id": "s-9q9p1sbukp-marketst~sanpabloav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1t1jq9-marketst~31stst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.247511, 37.809262], [-122.249734, 37.807325]]}, "type": "Feature", "name": "Lakeshore Av:MacArthur Blvd -> Lakeshore Av:Boden Way", "properties": {"origin_onestop_id": "s-9q9p44ynft-lakeshoreav~macarthurblvd", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p44s7ws-lakeshoreav~bodenway", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.156349, 37.722867], [-122.157549, 37.724727]]}, "type": "Feature", "name": "Hays St:W Juana Av -> Hays St:W Estudillo Av", "properties": {"origin_onestop_id": "s-9q9ns70rwu-haysst~wjuanaav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ns5xd6y-haysst~westudilloav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.242116, 37.839781], [-122.246712, 37.838341]]}, "type": "Feature", "name": "Broadway Ter:Country Club Dr -> Broadway Ter:Carlton St", "properties": {"origin_onestop_id": "s-9q9p62d08n-broadwayter~countryclubdr", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p60q8m4-broadwayter~carltonst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.19346, 37.731753], [-122.192018, 37.730777]]}, "type": "Feature", "name": "Empire Rd:Wistar Rd -> Empire Rd:Coral Rd (Near 98th Av)", "properties": {"origin_onestop_id": "s-9q9nekv7qh-empirerd~wistarrd", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nekwmxw-empirerd~coralrdnear98thav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.268758, 37.807998], [-122.269413, 37.809587]]}, "type": "Feature", "name": "Broadway:19th St (19th St BART Station) -> Thomas L Berkley Way (20th St):Telegragh Av", "properties": {"origin_onestop_id": "s-9q9p1dwxe3-broadway~19thst19thstbartstation", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1en0u1-thomaslberkleyway20thst~telegraghav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.249754, 37.826358], [-122.250999, 37.827231]]}, "type": "Feature", "name": "Linda Av:Glen Av -> Linda Av:Piedmont Av", "properties": {"origin_onestop_id": "s-9q9p4nh6w2-lindaav~glenav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p4n5x96-lindaav~piedmontav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.195092, 37.734345], [-122.194928, 37.732733]]}, "type": "Feature", "name": "Cairo Rd:Empire Rd -> Empire Rd:Tunis Rd", "properties": {"origin_onestop_id": "s-9q9nemk4rz-cairord~empirerd", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nemh35g-empirerd~tunisrd", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.248011, 37.811644], [-122.248923, 37.810288]]}, "type": "Feature", "name": "Grand Av:Santa Clara Av -> Grand Av:MacArthur Blvd", "properties": {"origin_onestop_id": "s-9q9p45msyc-grandav~santaclaraav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p45jhcs-grandav~macarthurblvd", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.29637, 37.882648], [-122.297787, 37.884573]]}, "type": "Feature", "name": "San Pablo Av:Harrison St -> Monroe St:San Pablo Ave", "properties": {"origin_onestop_id": "s-9q9p906d2j-sanpabloav~harrisonst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p909mxh-monroest~sanpabloave", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.296294, 37.812442], [-122.292714, 37.810996]]}, "type": "Feature", "name": "14th St:Willow St -> 14th St:Center St", "properties": {"origin_onestop_id": "s-9q9p15d93y-14thst~willowst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p15m1j0-14thst~centerst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.158406, 37.741962], [-122.156496, 37.741589]]}, "type": "Feature", "name": "Link St:105th Av -> 106th Av:Bancroft Av", "properties": {"origin_onestop_id": "s-9q9nsnwyyg-linkst~105thav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nsq8keq-106thav~bancroftav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.154661, 37.742106], [-122.152078, 37.743116]]}, "type": "Feature", "name": "106th Av:Voltaire Av -> 106th Av:MacArthur Blvd", "properties": {"origin_onestop_id": "s-9q9nsq9xwn-106thav~voltaireav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nsqgtd6-106thav~macarthurblvd", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.232898, 37.814594], [-122.234959, 37.814558]]}, "type": "Feature", "name": "Wala Vista Av:Arimo Av (East Jctn) -> Wala Vista Av:#702", "properties": {"origin_onestop_id": "s-9q9p4ebtzp-walavistaav~arimoaveastjctn", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p47zjz0-walavistaav~702", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.241016, 37.812624], [-122.239256, 37.813928]]}, "type": "Feature", "name": "Lakeshore Av:Santa Ray Av -> Lakeshore Av:Rosal Av", "properties": {"origin_onestop_id": "s-9q9p47df9b-lakeshoreav~santarayav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p47u44g-lakeshoreav~rosalav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.192018, 37.730777], [-122.185689, 37.733443]]}, "type": "Feature", "name": "Empire Rd:Coral Rd (Near 98th Av) -> 98th Av:Denslowe St", "properties": {"origin_onestop_id": "s-9q9nekwmxw-empirerd~coralrdnear98thav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9net5j5p-98thav~denslowest", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.177327, 37.753194], [-122.176, 37.751547]]}, "type": "Feature", "name": "85th Av:International Blvd -> International Blvd:87th Av", "properties": {"origin_onestop_id": "s-9q9ngbc0mc-85thav~internationalblvd", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ngb6nsy-internationalblvd~87thav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.255608, 37.836064], [-122.258083, 37.836759]]}, "type": "Feature", "name": "51st St:Manila Av -> 51st St:Shafter Av", "properties": {"origin_onestop_id": "s-9q9p4pb5jc-51stst~manilaav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1zyrh5-51stst~shafterav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.271417, 37.858161], [-122.271627, 37.859984]]}, "type": "Feature", "name": "Martin Luther King Jr Way:Stuart St -> Martin Luther King Jr Way:Derby St", "properties": {"origin_onestop_id": "s-9q9p3euev2-martinlutherkingjrway~stuartst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3shw2s-martinlutherkingjrway~derbyst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.270769, 37.843982], [-122.270509, 37.842547]]}, "type": "Feature", "name": "Martin Luther King Jr Way:59th St -> Martin Luther King Jr Way:Arlington Av", "properties": {"origin_onestop_id": "s-9q9p39m1ht-martinlutherkingjrway~59thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p39j2fd-martinlutherkingjrway~arlingtonav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.167311, 37.755458], [-122.165683, 37.753273]]}, "type": "Feature", "name": "Bancroft Av:87th Av -> Bancroft Av:90th Av", "properties": {"origin_onestop_id": "s-9q9nu10mrr-bancroftav~87thav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nu0c8v2-bancroftav~90thav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.245955, 37.810209], [-122.247511, 37.809262]]}, "type": "Feature", "name": "Lakeshore Av:Lake Park Av -> Lakeshore Av:MacArthur Blvd", "properties": {"origin_onestop_id": "s-9q9p45phqv-lakeshoreav~lakeparkav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p44ynft-lakeshoreav~macarthurblvd", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.267649, 37.869491], [-122.267662, 37.87076]]}, "type": "Feature", "name": "Allston Way:Shattuck Av -> Shattuck Sq:Center St", "properties": {"origin_onestop_id": "s-9q9p3wp1qn-centerst~shattuckave<9902480", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3wp1qn-centerst~shattuckave<0306210", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.148292, 37.728374], [-122.149288, 37.730668]]}, "type": "Feature", "name": "Bancroft Av:Callan Av -> Bancroft Av:Haas Av", "properties": {"origin_onestop_id": "s-9q9nsknrdw-bancroftav~callanav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nsktt56-bancroftav~haasav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.259128, 37.868642], [-122.261913, 37.868458]]}, "type": "Feature", "name": "Telegraph Av:Bancroft Way -> Bancroft Way:Dana St", "properties": {"origin_onestop_id": "s-9q9p3vvc8d-bancroftway~telegraphave<9902390", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3vexfb-bancroftway~danast", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.28565, 37.81123], [-122.286166, 37.809832]]}, "type": "Feature", "name": "Adeline St:16th St -> Adeline St:14th St", "properties": {"origin_onestop_id": "s-9q9p17663u-adelinest~16thst", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p171fjz-adelinest~14thst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.232987, 37.842682], [-122.237724, 37.840987]]}, "type": "Feature", "name": "Broadway Ter:#6141 -> Broadway Ter:Ostrander Rd", "properties": {"origin_onestop_id": "s-9q9p6909sg-broadwayter~6141", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p62tpwx-broadwayter~ostranderrd", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.151944, 37.69101], [-122.15131, 37.688661]]}, "type": "Feature", "name": "Farnsworth St:Manor Blvd -> Farnsworth St:Fargo Av", "properties": {"origin_onestop_id": "s-9q9nkm7wj3-farnsworthst~manorblvd", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nkmh0k5-farnsworthst~fargoav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.279695, 37.891439], [-122.281795, 37.89133]]}, "type": "Feature", "name": "Solano Av:Colusa Av -> Solano Av:Ensenada Av", "properties": {"origin_onestop_id": "s-9q9p93ytss-solanoav~colusaav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p93vhgx-solanoav~ensenadaav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.234959, 37.814558], [-122.237792, 37.815]]}, "type": "Feature", "name": "Wala Vista Av:#702 -> Wala Vista Av:Lake Shore Av", "properties": {"origin_onestop_id": "s-9q9p47zjz0-walavistaav~702", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p4kj0m4-walavistaav~lakeshoreav", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.277738, 37.848458], [-122.278112, 37.850045]]}, "type": "Feature", "name": "Sacramento St:Alcatraz Av -> Sacramento St:Fairview St", "properties": {"origin_onestop_id": "s-9q9p3d054p-sacramentost~alcatrazav", "stroke": "#fdcc8a", "frequency": 3.0, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p36ru3r-sacramentost~fairviewst", "stroke-width": 4, "trips": 6}}, {"geometry": {"type": "LineString", "coordinates": [[-122.176, 37.751547], [-122.174282, 37.749236]]}, "type": "Feature", "name": "International Blvd:87th Av -> International Blvd:90th Av", "properties": {"origin_onestop_id": "s-9q9ngb6nsy-internationalblvd~87thav", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ngb53hz-internationalblvd~90thav", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.227627, 37.792131], [-122.226687, 37.793466]]}, "type": "Feature", "name": "23rd Av:E 26th St -> 23rd Av:E 27th St", "properties": {"origin_onestop_id": "s-9q9nfxue1g-23rdav~e26thst", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p48j4zu-23rdav~e27thst", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.232836, 37.815907], [-122.232105, 37.814525]]}, "type": "Feature", "name": "Lakeshore Av:Park Ln -> Lakeshore Av:Wala Vista Av", "properties": {"origin_onestop_id": "s-9q9p4s0v87-lakeshoreav~parkln", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p4ecm9d-lakeshoreav~walavistaav", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.26363, 37.83183], [-122.263149, 37.83357]]}, "type": "Feature", "name": "Telegraph Av:43rd St -> Telegraph Av:46th St", "properties": {"origin_onestop_id": "s-9q9p1z466u-telegraphav~43rdst", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1z6sw0-telegraphav~46thst", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.158298, 37.725095], [-122.156367, 37.72521]]}, "type": "Feature", "name": "Davis St:Hays St -> E 14th St:W Estudillo Av", "properties": {"origin_onestop_id": "s-9q9ns5xh97-davisst~haysst", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ns78mq2-e14thst~westudilloav", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.219765, 37.774832], [-122.224133, 37.776887]]}, "type": "Feature", "name": "International Blvd:38th Av -> International Blvd:34th Av", "properties": {"origin_onestop_id": "s-9q9nfudq35-internationalblvd~38thav", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nftp476-internationalblvd~34thav", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.236485, 37.791495], [-122.234374, 37.790232]]}, "type": "Feature", "name": "E 21st St:19th Av -> E 21st St:21st Av", "properties": {"origin_onestop_id": "s-9q9nfrwp7m-e21stst~19thav", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nfrx8h9-e21stst~21stav", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.156367, 37.72521], [-122.154109, 37.723613]]}, "type": "Feature", "name": "E 14th St:W Estudillo Av -> E 14th St:W Juana Av", "properties": {"origin_onestop_id": "s-9q9ns78mq2-e14thst~westudilloav", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ns765fz-e14thst~wjuanaav", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.236211, 37.783229], [-122.236583, 37.782265]]}, "type": "Feature", "name": "23rd Av:International Blvd -> E 12th St:23rd Av", "properties": {"origin_onestop_id": "s-9q9nfqnr3b-23rdav~internationalblvd", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nfqn19h-e12thst~23rdav", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.242994, 37.791972], [-122.241616, 37.792573]]}, "type": "Feature", "name": "E 18th St:14th Av -> 14th Av:Sonoma Way", "properties": {"origin_onestop_id": "s-9q9nfrc65y-e18thst~14thav", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nfrfmey-14thav~sonomaway", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.179697, 37.755584], [-122.177315, 37.753394]]}, "type": "Feature", "name": "International Blvd:82nd Av -> International Blvd:85th Av", "properties": {"origin_onestop_id": "s-9q9ng9pqnw-internationalblvd~82ndav", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ngbc1qn-internationalblvd~85thav", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.243996, 37.79872], [-122.242135, 37.800039]]}, "type": "Feature", "name": "8th Av:E 22nd St -> 8th Av:E 24th St", "properties": {"origin_onestop_id": "s-9q9p4309s2-8thav~e22ndst", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p433cpv-8thav~e24thst", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.269079, 37.812121], [-122.268801, 37.809098]]}, "type": "Feature", "name": "Telegraph Av:W Grand Av -> Thomas L Berkley Way (20th St):Telegragh Av", "properties": {"origin_onestop_id": "s-9q9p1eqref-telegraphav~wgrandav", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1dytfq-thomaslberkleyway20thst~telegraghav", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.163574, 37.734864], [-122.161993, 37.732723]]}, "type": "Feature", "name": "E 14th St:W Broadmoor Blvd -> E 14th St:Stoakes Av", "properties": {"origin_onestop_id": "s-9q9nsj7jw2-e14thst~wbroadmoorblvd", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nsjh351-e14thst~stoakesav", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.229768, 37.78745], [-122.227989, 37.786729]]}, "type": "Feature", "name": "E 21st St:24th Av -> 25th Av:E 21st St", "properties": {"origin_onestop_id": "s-9q9nfwfzzg-e21stst~24thav", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nfwu79k-25thav~e21stst", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.260394, 37.850466], [-122.25994, 37.853622]]}, "type": "Feature", "name": "Telegraph Av:Alcatraz Av -> Telegraph Av:Prince St", "properties": {"origin_onestop_id": "s-9q9p3fkwyq-telegraphav~alcatrazav", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3gj12f-telegraphav~princest", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.270078, 37.806323], [-122.271777, 37.803652]]}, "type": "Feature", "name": "Broadway:17th St -> Broadway:13th St (12th St BART Station)", "properties": {"origin_onestop_id": "s-9q9p1dmtu9-broadway~17thst", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1dh9te-14thst~broadway<1006390", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.28281, 37.894703], [-122.28013, 37.892254]]}, "type": "Feature", "name": "Colusa Av:Vincente Av -> Colusa Av:Thousand Oaks School", "properties": {"origin_onestop_id": "s-9q9p96s2sh-colusaav~vincenteav", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p96n66k-colusaav~thousandoaksschool", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.22182, 37.840112], [-122.22058, 37.838699]]}, "type": "Feature", "name": "Duncan Way:Broadway Ter -> Duncan Way:Leo Way", "properties": {"origin_onestop_id": "s-9q9p6b8f9h-duncanway~broadwayter", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p6b3dqh-duncanway~leoway", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.162128, 37.757388], [-122.161323, 37.755262]]}, "type": "Feature", "name": "MacArthur Blvd:88th Av -> MacArthur Blvd:90th Av", "properties": {"origin_onestop_id": "s-9q9nu1s28p-macarthurblvd~88thav", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nu1hswn-90thave~macarthurblvd<1030520", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.275482, 37.816981], [-122.274989, 37.815354]]}, "type": "Feature", "name": "San Pablo Av:Milton St -> San Pablo Av:West St", "properties": {"origin_onestop_id": "s-9q9p1s3eyu-sanpabloav~miltonst", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1s446h-sanpabloav~westst", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.293992, 37.903183], [-122.290768, 37.903894]]}, "type": "Feature", "name": "Fairmount Av:Ashbury Av -> Colusa Av:Fairmount Av", "properties": {"origin_onestop_id": "s-9q9p9hh4p3-fairmountav~ashburyav", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p9hnw4t-colusaav~fairmountav", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.258818, 37.86161], [-122.258605, 37.863067]]}, "type": "Feature", "name": "Telegraph Av:Derby St -> Telegraph Av:Parker St", "properties": {"origin_onestop_id": "s-9q9p3umzg5-telegraphav~derbyst", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3uy025-telegraphav~parkerst", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.164217, 37.754207], [-122.161896, 37.755262]]}, "type": "Feature", "name": "90th Av:Dowling St -> 90th Av:MacArthur Blvd", "properties": {"origin_onestop_id": "s-9q9nu0fwpq-90thav~dowlingst", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nu1hswn-90thave~macarthurblvd<1004260", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.262478, 37.836119], [-122.262032, 37.838461]]}, "type": "Feature", "name": "Telegraph Av:49th St -> Telegraph Av:Claremont Av", "properties": {"origin_onestop_id": "s-9q9p1zg5mg-telegraphav~49thst", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3b7900-telegraphav~claremontav", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.209582, 37.769981], [-122.211361, 37.770818]]}, "type": "Feature", "name": "International Blvd:48th Av -> International Blvd:46th Av", "properties": {"origin_onestop_id": "s-9q9ng5cdn6-internationalblvd~48thav", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ng5bquy-internationalblvd~46thav", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.293951, 37.875108], [-122.294815, 37.877773]]}, "type": "Feature", "name": "San Pablo Av:Cedar St -> San Pablo Av:Page St", "properties": {"origin_onestop_id": "s-9q9p3nuq2r-sanpabloav~cedarst", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3p7wh2-sanpabloav~pagest", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.247341, 37.796344], [-122.24584, 37.797434]]}, "type": "Feature", "name": "8th Av:E 18th St -> 8th Av:E 20th St", "properties": {"origin_onestop_id": "s-9q9p40w5wm-8thav~e18thst", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p40z612-8thav~e20thst", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.161896, 37.755262], [-122.160506, 37.753008]]}, "type": "Feature", "name": "90th Av:MacArthur Blvd -> MacArthur Blvd:94th Av", "properties": {"origin_onestop_id": "s-9q9nu1hswn-90thave~macarthurblvd<1004260", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nu0trjy-macarthurblvd~94thav", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.190478, 37.760696], [-122.186366, 37.758727]]}, "type": "Feature", "name": "International Blvd:69th Av -> International Blvd:Hegenberger Rd", "properties": {"origin_onestop_id": "s-9q9ng6pegr-internationalblvd~69thav", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ng9f8e2-internationalblvd~hegenbergerrd", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.253984, 37.795594], [-122.252985, 37.796311]]}, "type": "Feature", "name": "5th Av:International Blvd -> 5th Av:E 15th St", "properties": {"origin_onestop_id": "s-9q9p403r79-5thav~internationalblvd", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p40d56z-5thav~e15thst", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.269596, 37.797604], [-122.392997, 37.790087]]}, "type": "Feature", "name": "7th St:Alice St -> Transbay Temp Terminal", "properties": {"origin_onestop_id": "s-9q9p18vgpb-7thst~alicest", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q8yyz7y5b-sanfranciscoterminal<1410320", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.278009, 37.824787], [-122.277333, 37.822673]]}, "type": "Feature", "name": "San Pablo Av:34th St -> San Pablo Av:32nd St", "properties": {"origin_onestop_id": "s-9q9p1mzc7g-sanpabloav~34thst", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1t2m59-sanpabloav~32ndst", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.252869, 37.796531], [-122.253696, 37.795946]]}, "type": "Feature", "name": "5th Av:E 15th St -> 5th Av:International Blvd", "properties": {"origin_onestop_id": "s-9q9p40dhv8-5thav~e15thst", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p409966-5thav~internationalblvd", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.270193, 37.803832], [-122.267919, 37.802956]]}, "type": "Feature", "name": "14th St:Franklin St -> 14th St:Harrison St", "properties": {"origin_onestop_id": "s-9q9p19vx61-14thst~franklinst", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p19z4nv-14thst~harrisonst", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.179298, 37.80544], [-122.180887, 37.808625]]}, "type": "Feature", "name": "Joaquin Miller Rd:Skyline Blvd -> Joaquin Miller Rd:Crockett Pl", "properties": {"origin_onestop_id": "s-9q9p5drb8h-joaquinmillerrd~skylineblvd", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p5dye4y-joaquinmillerrd~crockettpl", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.230929, 37.78959], [-122.231576, 37.7889]]}, "type": "Feature", "name": "23rd Av:E 22nd St -> 23rd Av:E 21st St", "properties": {"origin_onestop_id": "s-9q9nfx6hkf-23rdav~e22ndst", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nfx38mc-23rdav~e21stst", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.215789, 37.800204], [-122.209001, 37.798473]]}, "type": "Feature", "name": "MacArthur Blvd:Fruitvale Av -> MacArthur Blvd:Coolidge Av(Bret Harte Junior High)", "properties": {"origin_onestop_id": "s-9q9p4ckf4b-fruitvaleave~macarthurblvd<9902640", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p51405f-macarthurblvd~coolidgeavbrethartejuniorhigh", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.235673, 37.783136], [-122.232811, 37.781384]]}, "type": "Feature", "name": "International Blvd:23rd Av -> International Blvd:26th Av", "properties": {"origin_onestop_id": "s-9q9nfqnwwr-internationalblvd~23rdav", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nftbu90-internationalblvd~26thav", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.15847, 37.794614], [-122.16419, 37.798069]]}, "type": "Feature", "name": "Skyline Blvd:Brookpark Rd -> Skyline Blvd:Balmoral Dr", "properties": {"origin_onestop_id": "s-9q9ph0qct6-skylineblvd~brookparkrd", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ph0fv8n-skylineblvd~balmoraldr", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.268799, 37.813247], [-122.269079, 37.812121]]}, "type": "Feature", "name": "Telegraph Av:24th St -> Telegraph Av:W Grand Av", "properties": {"origin_onestop_id": "s-9q9p1eww4k-telegraphav~24thst", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1eqref-telegraphav~wgrandav", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.290796, 37.804536], [-122.295286, 37.804699]]}, "type": "Feature", "name": "7th St:Union St -> West Oakland BART Station", "properties": {"origin_onestop_id": "s-9q9p14ne3u-7thst~unionst", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p145svu-westoaklandbartstation<1021190", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.179802, 37.755851], [-122.181402, 37.756612]]}, "type": "Feature", "name": "International Blvd:82nd Av -> International Blvd:80th Av", "properties": {"origin_onestop_id": "s-9q9ng9pru2-internationalblvd~82ndav", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ng9qhny-internationalblvd~80thav", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.167477, 37.740028], [-122.168751, 37.738394]]}, "type": "Feature", "name": "International Blvd:104th Av -> 105th Av:Graffian St", "properties": {"origin_onestop_id": "s-9q9nsn27e7-internationalblvd~104thav", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9neyp6jf-105thav~graffianst", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.227641, 37.792343], [-122.229023, 37.790897]]}, "type": "Feature", "name": "23rd Av:22nd Av -> 23rd Av:E 24th St", "properties": {"origin_onestop_id": "s-9q9nfxus3e-23rdav~22ndav", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nfxeecm-23rdav~e24thst", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.285228, 37.803379], [-122.288512, 37.804088]]}, "type": "Feature", "name": "7th St:Filbert St -> 7th St:Adeline St", "properties": {"origin_onestop_id": "s-9q9p13fses-7thst~filbertst", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1600z0-7thst~adelinest", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.260719, 37.84786], [-122.260394, 37.850466]]}, "type": "Feature", "name": "Telegraph Av:62nd St -> Telegraph Av:Alcatraz Av", "properties": {"origin_onestop_id": "s-9q9p3curyb-telegraphav~62ndst", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3fkwyq-telegraphav~alcatrazav", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.299808, 37.893335], [-122.301025, 37.897137]]}, "type": "Feature", "name": "San Pablo Rd:Portland Av -> San Pablo Av:Brighton Av", "properties": {"origin_onestop_id": "s-9q9p8frbxv-sanpablord~portlandav", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p8fzngd-sanpabloav~brightonav", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.19261, 37.761704], [-122.190478, 37.760696]]}, "type": "Feature", "name": "International Blvd:Havenscourt Blvd -> International Blvd:69th Av", "properties": {"origin_onestop_id": "s-9q9ng6q1cg-internationalblvd~havenscourtblvd", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ng6pegr-internationalblvd~69thav", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.165382, 37.737288], [-122.164387, 37.735965]]}, "type": "Feature", "name": "E 14th St:Bristol Blvd -> E 14th St:Durant Av", "properties": {"origin_onestop_id": "s-9q9nsjcgsk-e14thst~bristolblvd", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nsjdegm-e14thst~durantav", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.209001, 37.798473], [-122.200851, 37.79385]]}, "type": "Feature", "name": "MacArthur Blvd:Coolidge Av(Bret Harte Junior High) -> MacArthur Blvd:35th Av", "properties": {"origin_onestop_id": "s-9q9p51405f-macarthurblvd~coolidgeavbrethartejuniorhigh", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p520j1u-macarthurblvd~35thav", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.286002, 37.850474], [-122.286675, 37.852514]]}, "type": "Feature", "name": "San Pablo Av:Haskell St -> San Pablo Av:Ashby Av", "properties": {"origin_onestop_id": "s-9q9p366ncx-sanpabloav~haskellst", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p36cdcu-sanpabloav~ashbyav", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.128437, 37.678803], [-122.130949, 37.678099]]}, "type": "Feature", "name": "Paseo Grande:Paseo Largavista -> Paseo Grande:Via Media", "properties": {"origin_onestop_id": "s-9q9nkghycj-paseogrande~paseolargavista", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nkg4fyd-paseogrande~viamedia", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.157942, 37.725055], [-122.156455, 37.722792]]}, "type": "Feature", "name": "Hays St:Davis St -> Hays St:W Juana Av", "properties": {"origin_onestop_id": "s-9q9ns5xk3e-haysst~davisst", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ns70rhq-haysst~wjuanaav", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.291239, 37.866724], [-122.292118, 37.869467]]}, "type": "Feature", "name": "San Pablo Av:Allston Way -> San Pablo Av:University Av", "properties": {"origin_onestop_id": "s-9q9p3jqjxs-sanpabloav~allstonway", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3jvteh-sanpabloav~universityav", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.147866, 37.718992], [-122.145962, 37.717496]]}, "type": "Feature", "name": "E 14th St:Estabrook St -> E 14th St:Cornwall Way", "properties": {"origin_onestop_id": "s-9q9ns6w9h3-e14thst~estabrookst", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nsd202f-e14thst~cornwallway", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.143261, 37.715484], [-122.141672, 37.714326]]}, "type": "Feature", "name": "E 14th St:San Leandro Blvd -> E 14th St:San Leandro Hospital", "properties": {"origin_onestop_id": "s-9q9ns9cuxe-e14thst~sanleandroblvd", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ns9ejug-e14thst~sanleandrohospital", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.284957, 37.847213], [-122.285453, 37.848746]]}, "type": "Feature", "name": "San Pablo Av:Alcatraz Av -> San Pablo Av:66th St", "properties": {"origin_onestop_id": "s-9q9p33fgcz-sanpabloav~alcatrazav", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p364kym-sanpabloav~66thst", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.226124, 37.795678], [-122.22675, 37.793688]]}, "type": "Feature", "name": "23rd Av:E 29th St -> 23rd Av:E 27th St", "properties": {"origin_onestop_id": "s-9q9p48mxuc-23rdav~e29thst", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p48jhnq-23rdav~e27thst", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.252985, 37.796311], [-122.251401, 37.794978]]}, "type": "Feature", "name": "5th Av:E 15th St -> E 15th St:7th Av", "properties": {"origin_onestop_id": "s-9q9p40d56z-5thav~e15thst", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p4075xy-e15thst~7thav", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.281159, 37.863932], [-122.281345, 37.866105]]}, "type": "Feature", "name": "Sacramento St:Channing Way -> Sacramento St:Bancroft Way", "properties": {"origin_onestop_id": "s-9q9p3kvt6k-sacramentost~channingway", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3mm6n1-sacramentost~bancroftway", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.249298, 37.794947], [-122.247341, 37.796344]]}, "type": "Feature", "name": "8th Av:Foothill Blvd -> 8th Av:E 18th St", "properties": {"origin_onestop_id": "s-9q9p40kg8b-8thav~foothillblvd", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p40w5wm-8thav~e18thst", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.275676, 37.818391], [-122.276583, 37.821247]]}, "type": "Feature", "name": "San Pablo Av:28th St -> San Pablo Av:30th St", "properties": {"origin_onestop_id": "s-9q9p1s9s45-sanpabloav~28thst", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1t0utp-sanpabloav~30thst", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.266788, 37.821039], [-122.267291, 37.819166]]}, "type": "Feature", "name": "Telegraph Av:32nd St -> Telegraph Av:30th St", "properties": {"origin_onestop_id": "s-9q9p1v0592-telegraphav~32ndst", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1sz8te-telegraphav~30thst", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.287254, 37.876221], [-122.28962, 37.875841]]}, "type": "Feature", "name": "Cedar St:Cedar Rose Park -> Cedar St:Belvedere Av", "properties": {"origin_onestop_id": "s-9q9p3r1hur-cedarst~cedarrosepark", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3pp6v2-cedarst~belvedereav", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.144948, 37.739193], [-122.147291, 37.74029]]}, "type": "Feature", "name": "MacArthur Blvd:Victoria Av -> MacArthur Blvd:Broadmoor Blvd", "properties": {"origin_onestop_id": "s-9q9nsw0y8r-macarthurblvd~victoriaav", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nsqrj1g-macarthurblvd~broadmoorblvd", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.292118, 37.869467], [-122.292936, 37.872028]]}, "type": "Feature", "name": "San Pablo Av:University Av -> San Pablo Av:Delaware St", "properties": {"origin_onestop_id": "s-9q9p3jvteh-sanpabloav~universityav", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3nmh81-sanpabloav~delawarest", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.279193, 37.775357], [-122.282032, 37.775461]]}, "type": "Feature", "name": "Lincoln Av:6th St -> Lincoln Av:5th St", "properties": {"origin_onestop_id": "s-9q9nckz12k-lincolnav~6thst", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nckufn0-lincolnav~5thst", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.283047, 37.840477], [-122.282549, 37.838906]]}, "type": "Feature", "name": "San Pablo Av:Stanford Av -> San Pablo Av:56th St", "properties": {"origin_onestop_id": "s-9q9p32shy2-sanpabloav~stanfordav", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p32ked5-sanpabloav~56thst", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.157989, 37.725437], [-122.160395, 37.721612]]}, "type": "Feature", "name": "Davis St:Hays St -> San Leandro BART Station", "properties": {"origin_onestop_id": "s-9q9ns5xq8e-davisst~haysst", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ns5j826-sanleandrobartstation", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.261572, 37.841687], [-122.261246, 37.844094]]}, "type": "Feature", "name": "Telegraph Av:Aileen St -> Telegraph Av:58th St", "properties": {"origin_onestop_id": "s-9q9p3bggfc-telegraphav~aileenst", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3ck1f6-telegraphav~58thst", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.251058, 37.79631], [-122.252869, 37.796531]]}, "type": "Feature", "name": "Foothill Blvd:6th Av -> 5th Av:E 15th St", "properties": {"origin_onestop_id": "s-9q9p40e7ry-foothillblvd~6thav", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p40dhv8-5thav~e15thst", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.200621, 37.819748], [-122.201969, 37.821139]]}, "type": "Feature", "name": "Ascot Dr:Ascot Pl -> Montera Jr High School:Scout Rd", "properties": {"origin_onestop_id": "s-9q9p5kbhp0-ascotdr~ascotpl", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p5jphpe-monterajrhighschool~scoutrd", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.288409, 37.900865], [-122.287425, 37.899639]]}, "type": "Feature", "name": "Colusa Av:Lynn Av -> Colusa Av:Oak View Av", "properties": {"origin_onestop_id": "s-9q9p978k99-colusaav~lynnav", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p973j2k-colusaav~oakviewav", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.259027, 37.859921], [-122.258818, 37.86161]]}, "type": "Feature", "name": "Telegraph Av:Stuart St -> Telegraph Av:Derby St", "properties": {"origin_onestop_id": "s-9q9p3ujwn0-telegraphav~stuartst", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3umzg5-telegraphav~derbyst", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.234374, 37.790232], [-122.231895, 37.788742]]}, "type": "Feature", "name": "E 21st St:21st Av -> E 21st St:23rd Av", "properties": {"origin_onestop_id": "s-9q9nfrx8h9-e21stst~21stav", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nfx1rqk-e21stst~23rdav", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.226464, 37.788936], [-122.22494, 37.790698]]}, "type": "Feature", "name": "25th Av:E 24th St -> 25th Av:E 26th St", "properties": {"origin_onestop_id": "s-9q9nfxm2sb-25thav~e24thst", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nfxwdb2-25thav~e26thst", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.113701, 37.694956], [-122.115153, 37.696008]]}, "type": "Feature", "name": "E 14th St:164th Av -> E 14th St:163rd Av", "properties": {"origin_onestop_id": "s-9q9nmnpt09-e14thst~164thav", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nmnq7nt-e14thst~163rdav", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.267984, 37.872119], [-122.26598, 37.872768]]}, "type": "Feature", "name": "University Av:Shattuck Av -> Oxford St:University Av", "properties": {"origin_onestop_id": "s-9q9p3wrjj6-universityav~shattuckav", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p3y88u5-oxfordst~universityav", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.301866, 37.899347], [-122.298743, 37.902214]]}, "type": "Feature", "name": "San Pablo Av:Carlson Blvd -> El Cerrito Plaza BART Station", "properties": {"origin_onestop_id": "s-9q9p8gq7xy-sanpabloav~carlsonblvd", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p95btzg-elcerritobartstation<0500840", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.287577, 37.854456], [-122.286712, 37.851805]]}, "type": "Feature", "name": "San Pablo Av:Heinz Av -> San Pablo Av:Ashby Av", "properties": {"origin_onestop_id": "s-9q9p370yhy-sanpabloav~heinzav", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p369w9p-sanpabloav~ashbyav", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.274989, 37.815354], [-122.274237, 37.813061]]}, "type": "Feature", "name": "San Pablo Av:West St -> San Pablo Av:W Grand Av", "properties": {"origin_onestop_id": "s-9q9p1s446h-sanpabloav~westst", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1edt5c-sanpabloav~wgrandav", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.282643, 37.802903], [-122.285228, 37.803379]]}, "type": "Feature", "name": "7th St:Market St -> 7th St:Filbert St", "properties": {"origin_onestop_id": "s-9q9p13u3zg-7thst~marketst", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p13fses-7thst~filbertst", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.285647, 37.776512], [-122.287403, 37.776547]]}, "type": "Feature", "name": "Pacific Av:4th St -> Pacific Av:3rd St", "properties": {"origin_onestop_id": "s-9q9ncm421u-pacificav~4thst", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ncm102f-pacificav~3rdst", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.267998, 37.816404], [-122.268799, 37.813247]]}, "type": "Feature", "name": "Telegraph Av:27th St -> Telegraph Av:24th St", "properties": {"origin_onestop_id": "s-9q9p1sr0t0-telegraphav~27thst", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p1eww4k-telegraphav~24thst", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.253696, 37.795946], [-122.254686, 37.795227]]}, "type": "Feature", "name": "5th Av:International Blvd -> 5th Av:12th St", "properties": {"origin_onestop_id": "s-9q9p409966-5thav~internationalblvd", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9p402v5k-5thav~12thst", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.164387, 37.735965], [-122.163574, 37.734864]]}, "type": "Feature", "name": "E 14th St:Durant Av -> E 14th St:W Broadmoor Blvd", "properties": {"origin_onestop_id": "s-9q9nsjdegm-e14thst~durantav", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nsj7jw2-e14thst~wbroadmoorblvd", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.231895, 37.788742], [-122.229768, 37.78745]]}, "type": "Feature", "name": "E 21st St:23rd Av -> E 21st St:24th Av", "properties": {"origin_onestop_id": "s-9q9nfx1rqk-e21stst~23rdav", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nfwfzzg-e21stst~24thav", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.202623, 37.792483], [-122.198091, 37.790837]]}, "type": "Feature", "name": "35th Av:Quigley St -> MacArthur Blvd:38th Av", "properties": {"origin_onestop_id": "s-9q9ngpyv0m-35thav~quigleyst", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9ngrd5d4-macarthurblvd~38thav", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.225662, 37.77764], [-122.228872, 37.779281]]}, "type": "Feature", "name": "International Blvd:Fruitvale Av -> International Blvd:29th Av", "properties": {"origin_onestop_id": "s-9q9nftjyxw-internationalblvd~fruitvaleav", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nfte8kb-internationalblvd~29thav", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.167618, 37.752614], [-122.165244, 37.753726]]}, "type": "Feature", "name": "90th Av:Olive St -> 90th Av:Bancroft Av", "properties": {"origin_onestop_id": "s-9q9nu08kbj-90thav~olivest", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0, "frequency_class": 3, "destination_onestop_id": "s-9q9nu0cgrk-90thav~bancroftav", "stroke-width": 4, "trips": 7}}, {"geometry": {"type": "LineString", "coordinates": [[-122.195991, 37.763314], [-122.19261, 37.761704]]}, "type": "Feature", "name": "International Blvd:64th Av -> International Blvd:Havenscourt Blvd", "properties": {"origin_onestop_id": "s-9q9ng6ee5p-internationalblvd~64thav", "stroke": "#fdcc8a", "frequency": 3.5, "stroke-opacity": 1.0,
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment