diff --git a/ridership_map/Dockerfile b/ridership_map/Dockerfile new file mode 100644 index 0000000..71b6617 --- /dev/null +++ b/ridership_map/Dockerfile @@ -0,0 +1,34 @@ +FROM debian:sid + +MAINTAINER Tristan Crockett + +RUN groupadd -r transit && useradd -r -g transit transit + +RUN \ + apt-get update && \ + apt-get install -y wget unzip git +RUN mkdir /app +RUN mkdir /app/data && chown transit:transit /app/data +VOLUME /app/data +WORKDIR /app +RUN wget http://gtfs.s3.amazonaws.com/chicago-transit-authority_20121108_0426.zip +RUN unzip chicago-transit-authority_20121108_0426.zip + +RUN apt-get install -y postgresql-client +RUN apt-get install -y python2.7 +RUN apt-get install -y python-psycopg2 +RUN apt-get install -y python-geojson + +RUN git clone https://github.com/thcrock/gtfs_SQL_IMPORTER.git + +COPY import.sh ./ +COPY create_foia_table.sql ./ +COPY create_segment_ridership.sql ./ +COPY join_riders_using_gtfs.py ./ +COPY create_geojson.py ./ +COPY run.sh ./ + +RUN chmod +x import.sh +RUN chmod +x run.sh +RUN wget https://raw.githubusercontent.com/chihacknight/BetterTransit/master/ridership-data/CTA%20original%20bus%20ridership%20data%20for%20October%202012.csv +RUN sed -i -e "1d" 'CTA original bus ridership data for October 2012.csv' diff --git a/ridership_map/README.md b/ridership_map/README.md new file mode 100644 index 0000000..bbc4fa5 --- /dev/null +++ b/ridership_map/README.md @@ -0,0 +1,11 @@ +The ridership map's input data computation process is now automated using Docker. The steps to run are: + +- Install Docker ( https://docs.docker.com/engine/installation/ ) +- Install Docker-Compose ( https://docs.docker.com/compose/install/ ) +- `cd ridership_map` +- `mkdir data` +- `chmod 777 data` +- `docker-compose build` (the path to the docker-compose binary may be different than this, depending on how you installed) +- `docker-compose up` + +Both of the last two steps will take a while, as many dependencies will be downloaded and installed during the 'build' command, and a lot of computation will happen during the 'up' command. You should see progress scroll by in your terminal window. Eventually, it should finish and you will have a new .geojson file in your data directory that the map will use. diff --git a/ridership_map/create_foia_table.sql b/ridership_map/create_foia_table.sql new file mode 100644 index 0000000..34d34b0 --- /dev/null +++ b/ridership_map/create_foia_table.sql @@ -0,0 +1,17 @@ +create table if not exists foia_data ( + stop_id varchar, + on_street varchar, + cross_street varchar, + route varchar, + direction varchar, + boardings float, + alightings float, + month_beginning varchar, + daytype varchar, + lat varchar, + lon varchar +); +create index foia_direction on foia_data(direction); +create index foia_route on foia_data(route); +create index foia_stop on foia_data(stop_id); +COPY foia_data from '/app/CTA original bus ridership data for October 2012.csv'; diff --git a/ridership_map/create_geojson.py b/ridership_map/create_geojson.py index 1e6ee07..b07e471 100644 --- a/ridership_map/create_geojson.py +++ b/ridership_map/create_geojson.py @@ -27,7 +27,7 @@ def get_data(cursor): return list(reversed(cursor.fetchall())) if __name__ == '__main__': - conn = psycopg2.connect(database='transit', user='transit') + conn = psycopg2.connect(database='transit', user='postgres', host='db') cursor = conn.cursor() results = get_data(cursor) features = [] diff --git a/ridership_map/create_segment_ridership.sql b/ridership_map/create_segment_ridership.sql new file mode 100644 index 0000000..79122fe --- /dev/null +++ b/ridership_map/create_segment_ridership.sql @@ -0,0 +1,10 @@ +create table if not exists segment_ridership( + begin_lon varchar, + begin_lat varchar, + end_lon varchar, + end_lat varchar, + route varchar, + direction varchar, + riders integer, + primary key (begin_lon, begin_lat, end_lon, end_lat, route, direction) +); diff --git a/ridership_map/data/citywide.geojson b/ridership_map/data/citywide.geojson index 32ac6d3..271a19c 100644 --- a/ridership_map/data/citywide.geojson +++ b/ridership_map/data/citywide.geojson @@ -1 +1 @@ -{"type": "FeatureCollection", "features": [{"geometry": {"type": "LineString", "coordinates": [[-87.60585, 41.77643], [-87.60585, 41.77623]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60598, 41.7821], [-87.60596, 41.7819]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60596, 41.78059], [-87.60596, 41.78045]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60596, 41.78045], [-87.60596, 41.78024]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6059, 41.77763], [-87.60588, 41.77744]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60585, 41.77581], [-87.60584, 41.77559]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60595, 41.77914], [-87.60595, 41.77897]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60606, 41.78365], [-87.60603, 41.78347]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60588, 41.77726], [-87.60587, 41.77712]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60584, 41.77559], [-87.60584, 41.7754]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60582, 41.7751], [-87.60582, 41.77507]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60593, 41.77883], [-87.60593, 41.77871]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60582, 41.77524], [-87.60582, 41.7751]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60595, 41.78144], [-87.60595, 41.78122]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60603, 41.78347], [-87.60601, 41.78327]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60606, 41.78417], [-87.60606, 41.78415]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60585, 41.77623], [-87.60585, 41.77602]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60596, 41.78166], [-87.60595, 41.78144]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60591, 41.77856], [-87.60591, 41.7784]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60601, 41.78327], [-87.60601, 41.78312]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60593, 41.77871], [-87.60591, 41.77856]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60588, 41.77744], [-87.60588, 41.77726]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60584, 41.7754], [-87.60582, 41.77524]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60596, 41.77972], [-87.60595, 41.77952]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60596, 41.78102], [-87.60596, 41.78088]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60601, 41.78312], [-87.60601, 41.78296]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60596, 41.78088], [-87.60596, 41.78075]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60595, 41.77933], [-87.60595, 41.77914]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60596, 41.78075], [-87.60596, 41.78075]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60587, 41.77662], [-87.60585, 41.77643]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60606, 41.78415], [-87.60606, 41.78401]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60587, 41.77712], [-87.60587, 41.77697]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60601, 41.78238], [-87.60601, 41.78224]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60601, 41.78224], [-87.60598, 41.7821]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60601, 41.78242], [-87.60601, 41.78238]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60587, 41.77697], [-87.60587, 41.77693]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60587, 41.77676], [-87.60587, 41.77662]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60591, 41.7784], [-87.6059, 41.77821]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60601, 41.78296], [-87.60601, 41.78277]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6059, 41.77821], [-87.6059, 41.77803]]}, "type": "Feature", "properties": {"num_passengers": 3490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62515, 41.90501], [-87.62514, 41.90485]]}, "type": "Feature", "properties": {"num_passengers": 3491}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.88925], [-87.62413, 41.88942]]}, "type": "Feature", "properties": {"num_passengers": 3496}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62442, 41.88703], [-87.62442, 41.8872]]}, "type": "Feature", "properties": {"num_passengers": 3496}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62443, 41.88763], [-87.62444, 41.88771]]}, "type": "Feature", "properties": {"num_passengers": 3496}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62443, 41.88735], [-87.62443, 41.88752]]}, "type": "Feature", "properties": {"num_passengers": 3496}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62403, 41.88988], [-87.62403, 41.88991]]}, "type": "Feature", "properties": {"num_passengers": 3496}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6241, 41.88957], [-87.62405, 41.88974]]}, "type": "Feature", "properties": {"num_passengers": 3496}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62403, 41.88991], [-87.62403, 41.8903]]}, "type": "Feature", "properties": {"num_passengers": 3496}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62413, 41.88942], [-87.6241, 41.88957]]}, "type": "Feature", "properties": {"num_passengers": 3496}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62433, 41.88861], [-87.62432, 41.88875]]}, "type": "Feature", "properties": {"num_passengers": 3496}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62442, 41.8872], [-87.62443, 41.88735]]}, "type": "Feature", "properties": {"num_passengers": 3496}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62443, 41.88752], [-87.62443, 41.88763]]}, "type": "Feature", "properties": {"num_passengers": 3496}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62444, 41.88783], [-87.62444, 41.88798]]}, "type": "Feature", "properties": {"num_passengers": 3496}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6244, 41.88833], [-87.62438, 41.88848]]}, "type": "Feature", "properties": {"num_passengers": 3496}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62445, 41.88666], [-87.62442, 41.88651]]}, "type": "Feature", "properties": {"num_passengers": 3496}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62428, 41.88892], [-87.62423, 41.8891]]}, "type": "Feature", "properties": {"num_passengers": 3496}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62444, 41.88798], [-87.62444, 41.88814]]}, "type": "Feature", "properties": {"num_passengers": 3496}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.8891], [-87.62418, 41.88925]]}, "type": "Feature", "properties": {"num_passengers": 3496}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62405, 41.88974], [-87.62403, 41.88988]]}, "type": "Feature", "properties": {"num_passengers": 3496}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62432, 41.88875], [-87.62428, 41.88892]]}, "type": "Feature", "properties": {"num_passengers": 3496}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62444, 41.88771], [-87.62444, 41.88783]]}, "type": "Feature", "properties": {"num_passengers": 3496}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62442, 41.88651], [-87.62441, 41.88669]]}, "type": "Feature", "properties": {"num_passengers": 3496}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62444, 41.88814], [-87.6244, 41.88833]]}, "type": "Feature", "properties": {"num_passengers": 3496}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62441, 41.88669], [-87.62441, 41.88689]]}, "type": "Feature", "properties": {"num_passengers": 3496}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62441, 41.88689], [-87.62442, 41.88703]]}, "type": "Feature", "properties": {"num_passengers": 3496}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62438, 41.88848], [-87.62433, 41.88861]]}, "type": "Feature", "properties": {"num_passengers": 3496}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62718, 41.86011], [-87.62719, 41.8605]]}, "type": "Feature", "properties": {"num_passengers": 3500}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62722, 41.86235], [-87.62723, 41.86271]]}, "type": "Feature", "properties": {"num_passengers": 3500}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62714, 41.85865], [-87.62713, 41.85907]]}, "type": "Feature", "properties": {"num_passengers": 3500}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62713, 41.85907], [-87.62716, 41.85951]]}, "type": "Feature", "properties": {"num_passengers": 3500}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62716, 41.85951], [-87.62717, 41.85997]]}, "type": "Feature", "properties": {"num_passengers": 3500}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62713, 41.85821], [-87.62714, 41.85865]]}, "type": "Feature", "properties": {"num_passengers": 3500}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62717, 41.85997], [-87.62718, 41.86011]]}, "type": "Feature", "properties": {"num_passengers": 3500}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62729, 41.86431], [-87.62729, 41.86472]]}, "type": "Feature", "properties": {"num_passengers": 3500}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62722, 41.86226], [-87.62722, 41.86235]]}, "type": "Feature", "properties": {"num_passengers": 3500}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62724, 41.86317], [-87.62726, 41.86367]]}, "type": "Feature", "properties": {"num_passengers": 3500}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62726, 41.86367], [-87.62727, 41.8642]]}, "type": "Feature", "properties": {"num_passengers": 3500}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62719, 41.8605], [-87.62721, 41.86088]]}, "type": "Feature", "properties": {"num_passengers": 3500}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62727, 41.8642], [-87.62729, 41.86431]]}, "type": "Feature", "properties": {"num_passengers": 3500}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62722, 41.86185], [-87.62722, 41.86226]]}, "type": "Feature", "properties": {"num_passengers": 3500}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62723, 41.86271], [-87.62724, 41.86317]]}, "type": "Feature", "properties": {"num_passengers": 3500}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6272, 41.86128], [-87.62722, 41.86185]]}, "type": "Feature", "properties": {"num_passengers": 3500}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62721, 41.86088], [-87.6272, 41.86128]]}, "type": "Feature", "properties": {"num_passengers": 3500}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62076, 41.68548], [-87.62076, 41.68563]]}, "type": "Feature", "properties": {"num_passengers": 3500}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68771, 41.92458], [-87.68769, 41.92437]]}, "type": "Feature", "properties": {"num_passengers": 3502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60606, 41.78463], [-87.60606, 41.78444]]}, "type": "Feature", "properties": {"num_passengers": 3505}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62456, 41.88553], [-87.62456, 41.88575]]}, "type": "Feature", "properties": {"num_passengers": 3508}}, {"geometry": {"type": "LineString", "coordinates": [[-87.57873, 41.75165], [-87.57893, 41.75162]]}, "type": "Feature", "properties": {"num_passengers": 3509}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58314, 41.7516], [-87.58327, 41.75153]]}, "type": "Feature", "properties": {"num_passengers": 3509}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58004, 41.75162], [-87.58024, 41.75162]]}, "type": "Feature", "properties": {"num_passengers": 3509}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58166, 41.75158], [-87.58191, 41.75157]]}, "type": "Feature", "properties": {"num_passengers": 3509}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58191, 41.75157], [-87.58217, 41.75157]]}, "type": "Feature", "properties": {"num_passengers": 3509}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58217, 41.75157], [-87.58242, 41.75157]]}, "type": "Feature", "properties": {"num_passengers": 3509}}, {"geometry": {"type": "LineString", "coordinates": [[-87.57916, 41.75162], [-87.57937, 41.75162]]}, "type": "Feature", "properties": {"num_passengers": 3509}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58071, 41.75162], [-87.58074, 41.75162]]}, "type": "Feature", "properties": {"num_passengers": 3509}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58024, 41.75162], [-87.5805, 41.75162]]}, "type": "Feature", "properties": {"num_passengers": 3509}}, {"geometry": {"type": "LineString", "coordinates": [[-87.57579, 41.75168], [-87.57599, 41.75167]]}, "type": "Feature", "properties": {"num_passengers": 3509}}, {"geometry": {"type": "LineString", "coordinates": [[-87.57646, 41.75165], [-87.57672, 41.75165]]}, "type": "Feature", "properties": {"num_passengers": 3509}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58309, 41.7516], [-87.58314, 41.7516]]}, "type": "Feature", "properties": {"num_passengers": 3509}}, {"geometry": {"type": "LineString", "coordinates": [[-87.57562, 41.75168], [-87.57579, 41.75168]]}, "type": "Feature", "properties": {"num_passengers": 3509}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58327, 41.75153], [-87.5846, 41.75153]]}, "type": "Feature", "properties": {"num_passengers": 3509}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58074, 41.75162], [-87.58094, 41.7516]]}, "type": "Feature", "properties": {"num_passengers": 3509}}, {"geometry": {"type": "LineString", "coordinates": [[-87.57672, 41.75165], [-87.57702, 41.75165]]}, "type": "Feature", "properties": {"num_passengers": 3509}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58121, 41.75158], [-87.58144, 41.75158]]}, "type": "Feature", "properties": {"num_passengers": 3509}}, {"geometry": {"type": "LineString", "coordinates": [[-87.57786, 41.75162], [-87.57805, 41.75165]]}, "type": "Feature", "properties": {"num_passengers": 3509}}, {"geometry": {"type": "LineString", "coordinates": [[-87.57983, 41.75162], [-87.58004, 41.75162]]}, "type": "Feature", "properties": {"num_passengers": 3509}}, {"geometry": {"type": "LineString", "coordinates": [[-87.57805, 41.75165], [-87.57821, 41.75165]]}, "type": "Feature", "properties": {"num_passengers": 3509}}, {"geometry": {"type": "LineString", "coordinates": [[-87.57702, 41.75165], [-87.5773, 41.75164]]}, "type": "Feature", "properties": {"num_passengers": 3509}}, {"geometry": {"type": "LineString", "coordinates": [[-87.57599, 41.75167], [-87.57626, 41.75165]]}, "type": "Feature", "properties": {"num_passengers": 3509}}, {"geometry": {"type": "LineString", "coordinates": [[-87.57961, 41.75162], [-87.57983, 41.75162]]}, "type": "Feature", "properties": {"num_passengers": 3509}}, {"geometry": {"type": "LineString", "coordinates": [[-87.57893, 41.75162], [-87.57916, 41.75162]]}, "type": "Feature", "properties": {"num_passengers": 3509}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58242, 41.75157], [-87.58268, 41.75158]]}, "type": "Feature", "properties": {"num_passengers": 3509}}, {"geometry": {"type": "LineString", "coordinates": [[-87.57626, 41.75165], [-87.57646, 41.75165]]}, "type": "Feature", "properties": {"num_passengers": 3509}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58268, 41.75158], [-87.58287, 41.7516]]}, "type": "Feature", "properties": {"num_passengers": 3509}}, {"geometry": {"type": "LineString", "coordinates": [[-87.57846, 41.75165], [-87.57873, 41.75165]]}, "type": "Feature", "properties": {"num_passengers": 3509}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5846, 41.75153], [-87.58475, 41.75152]]}, "type": "Feature", "properties": {"num_passengers": 3509}}, {"geometry": {"type": "LineString", "coordinates": [[-87.57757, 41.75162], [-87.57786, 41.75162]]}, "type": "Feature", "properties": {"num_passengers": 3509}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58144, 41.75158], [-87.58166, 41.75158]]}, "type": "Feature", "properties": {"num_passengers": 3509}}, {"geometry": {"type": "LineString", "coordinates": [[-87.57937, 41.75162], [-87.57961, 41.75162]]}, "type": "Feature", "properties": {"num_passengers": 3509}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5773, 41.75164], [-87.57757, 41.75162]]}, "type": "Feature", "properties": {"num_passengers": 3509}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58094, 41.7516], [-87.58121, 41.75158]]}, "type": "Feature", "properties": {"num_passengers": 3509}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5805, 41.75162], [-87.58071, 41.75162]]}, "type": "Feature", "properties": {"num_passengers": 3509}}, {"geometry": {"type": "LineString", "coordinates": [[-87.57821, 41.75165], [-87.57846, 41.75165]]}, "type": "Feature", "properties": {"num_passengers": 3509}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58287, 41.7516], [-87.58309, 41.7516]]}, "type": "Feature", "properties": {"num_passengers": 3509}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63871, 41.77987], [-87.63843, 41.77988]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62489, 41.9041], [-87.62483, 41.90386]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6242, 41.90198], [-87.62421, 41.90178]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62455, 41.90297], [-87.62447, 41.90276]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62428, 41.90107], [-87.62431, 41.90088]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62429, 41.90015], [-87.62428, 41.89997]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62424, 41.90136], [-87.62426, 41.90121]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6243, 41.90032], [-87.62429, 41.90015]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62428, 41.89997], [-87.62427, 41.89983]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.9015], [-87.62424, 41.90136]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62469, 41.90341], [-87.62462, 41.90319]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62431, 41.90051], [-87.6243, 41.90032]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62427, 41.89967], [-87.62427, 41.89951]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64007, 41.77983], [-87.63983, 41.77984]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62439, 41.90258], [-87.62431, 41.90242]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63964, 41.77984], [-87.63945, 41.77985]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63818, 41.77989], [-87.63797, 41.77989]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63797, 41.77989], [-87.63774, 41.77989]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62427, 41.89983], [-87.62427, 41.89967]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62483, 41.90386], [-87.62476, 41.90363]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63759, 41.77989], [-87.63758, 41.77984]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63774, 41.77989], [-87.63759, 41.77989]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62431, 41.90088], [-87.62431, 41.90069]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64071, 41.77983], [-87.64045, 41.77983]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63843, 41.77988], [-87.63818, 41.77989]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62495, 41.90461], [-87.62492, 41.90435]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62447, 41.90276], [-87.62439, 41.90258]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64045, 41.77983], [-87.64025, 41.77983]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63939, 41.77986], [-87.6392, 41.77986]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63896, 41.77986], [-87.63871, 41.77987]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6392, 41.77986], [-87.63896, 41.77986]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62492, 41.90435], [-87.62489, 41.9041]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62462, 41.90319], [-87.62455, 41.90297]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64025, 41.77983], [-87.64007, 41.77983]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62476, 41.90363], [-87.62469, 41.90341]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62421, 41.90164], [-87.62423, 41.9015]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64187, 41.77977], [-87.64099, 41.77978]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64093, 41.77978], [-87.64071, 41.77983]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62426, 41.89936], [-87.62426, 41.89932]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62421, 41.90213], [-87.6242, 41.90198]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63983, 41.77984], [-87.63964, 41.77984]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62426, 41.90121], [-87.62428, 41.90107]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62431, 41.90242], [-87.62424, 41.90228]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62424, 41.90228], [-87.62421, 41.90213]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64099, 41.77978], [-87.64093, 41.77978]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62421, 41.90178], [-87.62421, 41.90164]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62426, 41.89932], [-87.62421, 41.8993]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62427, 41.89951], [-87.62426, 41.89936]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63945, 41.77985], [-87.63939, 41.77986]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62431, 41.90069], [-87.62431, 41.90051]]}, "type": "Feature", "properties": {"num_passengers": 3510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68771, 41.92475], [-87.68771, 41.92458]]}, "type": "Feature", "properties": {"num_passengers": 3515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65492, 41.97732], [-87.65493, 41.97748]]}, "type": "Feature", "properties": {"num_passengers": 3516}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65256, 41.97647], [-87.65279, 41.97647]]}, "type": "Feature", "properties": {"num_passengers": 3516}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64937, 41.97565], [-87.6494, 41.97581]]}, "type": "Feature", "properties": {"num_passengers": 3516}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65056, 41.97663], [-87.65083, 41.97657]]}, "type": "Feature", "properties": {"num_passengers": 3516}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65494, 41.97645], [-87.65495, 41.97657]]}, "type": "Feature", "properties": {"num_passengers": 3516}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65032, 41.97671], [-87.65056, 41.97663]]}, "type": "Feature", "properties": {"num_passengers": 3516}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65147, 41.97648], [-87.65169, 41.97648]]}, "type": "Feature", "properties": {"num_passengers": 3516}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64929, 41.97529], [-87.64934, 41.97547]]}, "type": "Feature", "properties": {"num_passengers": 3516}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65493, 41.97748], [-87.65493, 41.97766]]}, "type": "Feature", "properties": {"num_passengers": 3516}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65299, 41.97647], [-87.65264, 41.97645]]}, "type": "Feature", "properties": {"num_passengers": 3516}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64934, 41.97547], [-87.64937, 41.97565]]}, "type": "Feature", "properties": {"num_passengers": 3516}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65264, 41.97645], [-87.65494, 41.97645]]}, "type": "Feature", "properties": {"num_passengers": 3516}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65213, 41.97648], [-87.65234, 41.97647]]}, "type": "Feature", "properties": {"num_passengers": 3516}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64984, 41.9768], [-87.65007, 41.97677]]}, "type": "Feature", "properties": {"num_passengers": 3516}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6468, 41.8649], [-87.6468, 41.86507]]}, "type": "Feature", "properties": {"num_passengers": 3516}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64947, 41.97611], [-87.64953, 41.97634]]}, "type": "Feature", "properties": {"num_passengers": 3516}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65493, 41.97782], [-87.65493, 41.978]]}, "type": "Feature", "properties": {"num_passengers": 3516}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65495, 41.97657], [-87.65492, 41.97719]]}, "type": "Feature", "properties": {"num_passengers": 3516}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64961, 41.97669], [-87.6497, 41.97675]]}, "type": "Feature", "properties": {"num_passengers": 3516}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65007, 41.97677], [-87.65032, 41.97671]]}, "type": "Feature", "properties": {"num_passengers": 3516}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64945, 41.97597], [-87.64947, 41.97611]]}, "type": "Feature", "properties": {"num_passengers": 3516}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6497, 41.97675], [-87.64984, 41.9768]]}, "type": "Feature", "properties": {"num_passengers": 3516}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64958, 41.97655], [-87.64961, 41.97669]]}, "type": "Feature", "properties": {"num_passengers": 3516}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65493, 41.978], [-87.65493, 41.9781]]}, "type": "Feature", "properties": {"num_passengers": 3516}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65279, 41.97647], [-87.65296, 41.97647]]}, "type": "Feature", "properties": {"num_passengers": 3516}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65296, 41.97647], [-87.65299, 41.97647]]}, "type": "Feature", "properties": {"num_passengers": 3516}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65492, 41.97719], [-87.65492, 41.97732]]}, "type": "Feature", "properties": {"num_passengers": 3516}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65234, 41.97647], [-87.65256, 41.97647]]}, "type": "Feature", "properties": {"num_passengers": 3516}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65129, 41.97648], [-87.65147, 41.97648]]}, "type": "Feature", "properties": {"num_passengers": 3516}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65169, 41.97648], [-87.65193, 41.97648]]}, "type": "Feature", "properties": {"num_passengers": 3516}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65193, 41.97648], [-87.65213, 41.97648]]}, "type": "Feature", "properties": {"num_passengers": 3516}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65493, 41.97766], [-87.65493, 41.97782]]}, "type": "Feature", "properties": {"num_passengers": 3516}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65083, 41.97657], [-87.65105, 41.97652]]}, "type": "Feature", "properties": {"num_passengers": 3516}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64953, 41.97634], [-87.64958, 41.97655]]}, "type": "Feature", "properties": {"num_passengers": 3516}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65105, 41.97652], [-87.65129, 41.97648]]}, "type": "Feature", "properties": {"num_passengers": 3516}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6494, 41.97581], [-87.64945, 41.97597]]}, "type": "Feature", "properties": {"num_passengers": 3516}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72492, 41.93911], [-87.72465, 41.93911]]}, "type": "Feature", "properties": {"num_passengers": 3519}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68574, 41.93945], [-87.68341, 41.93948]]}, "type": "Feature", "properties": {"num_passengers": 3521}}, {"geometry": {"type": "LineString", "coordinates": [[-87.73718, 41.93899], [-87.73735, 41.93899]]}, "type": "Feature", "properties": {"num_passengers": 3521}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62745, 41.86466], [-87.62744, 41.86422]]}, "type": "Feature", "properties": {"num_passengers": 3521}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64741, 41.77974], [-87.64749, 41.77974]]}, "type": "Feature", "properties": {"num_passengers": 3522}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67725, 41.89594], [-87.67739, 41.89594]]}, "type": "Feature", "properties": {"num_passengers": 3528}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64281, 41.77982], [-87.64292, 41.7798]]}, "type": "Feature", "properties": {"num_passengers": 3532}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64075, 41.77985], [-87.64075, 41.77985]]}, "type": "Feature", "properties": {"num_passengers": 3532}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63895, 41.77988], [-87.63909, 41.77988]]}, "type": "Feature", "properties": {"num_passengers": 3532}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64075, 41.77985], [-87.64083, 41.77984]]}, "type": "Feature", "properties": {"num_passengers": 3532}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63909, 41.77988], [-87.64075, 41.77985]]}, "type": "Feature", "properties": {"num_passengers": 3532}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64292, 41.7798], [-87.64497, 41.77977]]}, "type": "Feature", "properties": {"num_passengers": 3532}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64083, 41.77984], [-87.64281, 41.77982]]}, "type": "Feature", "properties": {"num_passengers": 3532}}, {"geometry": {"type": "LineString", "coordinates": [[-87.625, 41.75093], [-87.62478, 41.75098]]}, "type": "Feature", "properties": {"num_passengers": 3537}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66091, 42.00458], [-87.66089, 42.00439]]}, "type": "Feature", "properties": {"num_passengers": 3537}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63953, 41.87918], [-87.63959, 41.88062]]}, "type": "Feature", "properties": {"num_passengers": 3537}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63959, 41.88062], [-87.63964, 41.88202]]}, "type": "Feature", "properties": {"num_passengers": 3537}}, {"geometry": {"type": "LineString", "coordinates": [[-87.621, 41.68931], [-87.621, 41.68942]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62081, 41.68621], [-87.62084, 41.68639]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62086, 41.68657], [-87.62087, 41.68675]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62105, 41.69287], [-87.62105, 41.69305]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62078, 41.69436], [-87.62076, 41.6945]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62087, 41.68718], [-87.62089, 41.68724]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62101, 41.69211], [-87.62101, 41.69226]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.621, 41.68799], [-87.621, 41.68819]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62076, 41.69466], [-87.62076, 41.69468]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62101, 41.69323], [-87.62097, 41.69346]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62101, 41.69183], [-87.62101, 41.69198]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62079, 41.68601], [-87.62081, 41.68621]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62101, 41.69259], [-87.62101, 41.69276]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.621, 41.68942], [-87.621, 41.68957]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62101, 41.69198], [-87.62101, 41.69211]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62105, 41.69305], [-87.62101, 41.69323]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.621, 41.69039], [-87.621, 41.69053]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62089, 41.68724], [-87.62095, 41.6874]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.621, 41.69102], [-87.621, 41.69106]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62097, 41.68779], [-87.621, 41.68799]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62087, 41.68703], [-87.62087, 41.68718]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62095, 41.6874], [-87.62095, 41.68759]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.621, 41.68859], [-87.621, 41.68874]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62087, 41.68675], [-87.62089, 41.6869]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.621, 41.6899], [-87.621, 41.69005]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62076, 41.69468], [-87.62078, 41.69484]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62101, 41.69168], [-87.62101, 41.69183]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62076, 41.68563], [-87.62078, 41.68582]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62092, 41.69368], [-87.62086, 41.69388]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.621, 41.68874], [-87.621, 41.68889]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.621, 41.68917], [-87.621, 41.68931]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62101, 41.69239], [-87.62101, 41.69259]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62097, 41.69346], [-87.62092, 41.69368]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.621, 41.69023], [-87.621, 41.69039]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.621, 41.68819], [-87.621, 41.68839]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62078, 41.68582], [-87.62079, 41.68601]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.621, 41.68902], [-87.621, 41.68917]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.621, 41.68889], [-87.621, 41.68902]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.621, 41.68957], [-87.621, 41.68972]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62095, 41.68759], [-87.62097, 41.68779]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62076, 41.6945], [-87.62076, 41.69466]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.621, 41.68972], [-87.621, 41.6899]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62101, 41.69123], [-87.62101, 41.6914]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62101, 41.69153], [-87.62101, 41.69168]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.621, 41.69088], [-87.621, 41.69102]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62101, 41.69276], [-87.62105, 41.69287]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.621, 41.69005], [-87.621, 41.69023]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62101, 41.69226], [-87.62101, 41.69239]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.621, 41.69106], [-87.62101, 41.69123]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62101, 41.6914], [-87.62101, 41.69153]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62084, 41.68639], [-87.62086, 41.68657]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.621, 41.69068], [-87.621, 41.69088]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.621, 41.68931], [-87.621, 41.68931]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62086, 41.69388], [-87.62082, 41.69406]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62081, 41.69422], [-87.62078, 41.69436]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62078, 41.69484], [-87.62078, 41.69499]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.621, 41.68839], [-87.621, 41.68859]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62089, 41.6869], [-87.62087, 41.68703]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62082, 41.69406], [-87.62081, 41.69422]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.621, 41.69053], [-87.621, 41.69068]]}, "type": "Feature", "properties": {"num_passengers": 3540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6206, 41.70454], [-87.6206, 41.70428]]}, "type": "Feature", "properties": {"num_passengers": 3544}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68425, 41.89575], [-87.68412, 41.89575]]}, "type": "Feature", "properties": {"num_passengers": 3545}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6663, 41.96346], [-87.66665, 41.96512]]}, "type": "Feature", "properties": {"num_passengers": 3548}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60606, 41.78444], [-87.60606, 41.7843]]}, "type": "Feature", "properties": {"num_passengers": 3548}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63584, 41.92522], [-87.63591, 41.92541]]}, "type": "Feature", "properties": {"num_passengers": 3550}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60606, 41.7843], [-87.60606, 41.78417]]}, "type": "Feature", "properties": {"num_passengers": 3551}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68799, 41.93357], [-87.68799, 41.93342]]}, "type": "Feature", "properties": {"num_passengers": 3551}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66089, 42.00439], [-87.66089, 42.0042]]}, "type": "Feature", "properties": {"num_passengers": 3561}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62505, 41.90398], [-87.62501, 41.90387]]}, "type": "Feature", "properties": {"num_passengers": 3569}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62511, 41.9045], [-87.6251, 41.90429]]}, "type": "Feature", "properties": {"num_passengers": 3569}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62508, 41.9041], [-87.62505, 41.90398]]}, "type": "Feature", "properties": {"num_passengers": 3569}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62514, 41.90485], [-87.62513, 41.90474]]}, "type": "Feature", "properties": {"num_passengers": 3569}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62513, 41.90474], [-87.62512, 41.90466]]}, "type": "Feature", "properties": {"num_passengers": 3569}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6251, 41.90429], [-87.62508, 41.9041]]}, "type": "Feature", "properties": {"num_passengers": 3569}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62512, 41.90466], [-87.62511, 41.9045]]}, "type": "Feature", "properties": {"num_passengers": 3569}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62178, 41.89681], [-87.62174, 41.8968]]}, "type": "Feature", "properties": {"num_passengers": 3571}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62396, 41.89677], [-87.62446, 41.89676]]}, "type": "Feature", "properties": {"num_passengers": 3571}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62455, 41.89676], [-87.625, 41.89675]]}, "type": "Feature", "properties": {"num_passengers": 3571}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62174, 41.8968], [-87.62224, 41.8968]]}, "type": "Feature", "properties": {"num_passengers": 3571}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62338, 41.89678], [-87.62396, 41.89677]]}, "type": "Feature", "properties": {"num_passengers": 3571}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64926, 41.97512], [-87.64929, 41.97529]]}, "type": "Feature", "properties": {"num_passengers": 3571}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62224, 41.8968], [-87.62274, 41.89679]]}, "type": "Feature", "properties": {"num_passengers": 3571}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62274, 41.89679], [-87.62338, 41.89678]]}, "type": "Feature", "properties": {"num_passengers": 3571}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62446, 41.89676], [-87.62455, 41.89676]]}, "type": "Feature", "properties": {"num_passengers": 3571}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62446, 41.89676], [-87.62446, 41.89676]]}, "type": "Feature", "properties": {"num_passengers": 3571}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62488, 41.90345], [-87.62481, 41.90323]]}, "type": "Feature", "properties": {"num_passengers": 3577}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62506, 41.90516], [-87.62513, 41.90533]]}, "type": "Feature", "properties": {"num_passengers": 3578}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72465, 41.93911], [-87.72444, 41.9391]]}, "type": "Feature", "properties": {"num_passengers": 3579}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62464, 41.88319], [-87.62446, 41.88319]]}, "type": "Feature", "properties": {"num_passengers": 3581}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6251, 41.8832], [-87.62488, 41.88319]]}, "type": "Feature", "properties": {"num_passengers": 3581}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62433, 41.88348], [-87.62433, 41.88368]]}, "type": "Feature", "properties": {"num_passengers": 3581}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62446, 41.88319], [-87.62433, 41.8832]]}, "type": "Feature", "properties": {"num_passengers": 3581}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62434, 41.88392], [-87.62435, 41.88409]]}, "type": "Feature", "properties": {"num_passengers": 3581}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62438, 41.88451], [-87.62439, 41.88465]]}, "type": "Feature", "properties": {"num_passengers": 3581}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62488, 41.88319], [-87.62464, 41.88319]]}, "type": "Feature", "properties": {"num_passengers": 3581}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62437, 41.88433], [-87.62438, 41.88451]]}, "type": "Feature", "properties": {"num_passengers": 3581}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62433, 41.8832], [-87.62433, 41.88335]]}, "type": "Feature", "properties": {"num_passengers": 3581}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62436, 41.88421], [-87.62437, 41.88433]]}, "type": "Feature", "properties": {"num_passengers": 3581}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62439, 41.88465], [-87.62439, 41.88476]]}, "type": "Feature", "properties": {"num_passengers": 3581}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62435, 41.88409], [-87.62436, 41.88421]]}, "type": "Feature", "properties": {"num_passengers": 3581}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62433, 41.88335], [-87.62433, 41.88348]]}, "type": "Feature", "properties": {"num_passengers": 3581}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62433, 41.88368], [-87.62434, 41.88392]]}, "type": "Feature", "properties": {"num_passengers": 3581}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64484, 41.77974], [-87.64202, 41.77977]]}, "type": "Feature", "properties": {"num_passengers": 3582}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64202, 41.77977], [-87.64187, 41.77977]]}, "type": "Feature", "properties": {"num_passengers": 3584}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68791, 41.92977], [-87.68791, 41.9296]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68791, 41.92996], [-87.68791, 41.92977]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68795, 41.93032], [-87.68791, 41.93016]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68793, 41.93006], [-87.68793, 41.93005]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68795, 41.93125], [-87.68793, 41.93109]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68799, 41.93276], [-87.68799, 41.93257]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68784, 41.92771], [-87.68784, 41.92752]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68787, 41.92858], [-87.68787, 41.92837]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68799, 41.93312], [-87.68799, 41.93292]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68799, 41.93257], [-87.68799, 41.93237]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68782, 41.92684], [-87.68779, 41.92669]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68787, 41.92837], [-87.68785, 41.92815]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68791, 41.9296], [-87.68793, 41.92948]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68791, 41.92921], [-87.68791, 41.92904]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68774, 41.92584], [-87.68772, 41.92561]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68799, 41.93197], [-87.68799, 41.9318]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68784, 41.92792], [-87.68784, 41.92771]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68785, 41.92815], [-87.68784, 41.92792]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68793, 41.92934], [-87.68791, 41.92921]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68776, 41.9251], [-87.68774, 41.92505]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68791, 41.9309], [-87.68791, 41.93071]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68776, 41.92608], [-87.68774, 41.92584]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68793, 41.93109], [-87.68791, 41.9309]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68791, 41.93071], [-87.68793, 41.93053]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68772, 41.92525], [-87.68776, 41.9251]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68791, 41.93016], [-87.68791, 41.92996]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68799, 41.93156], [-87.68796, 41.93141]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68791, 41.92904], [-87.6879, 41.92889]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68796, 41.93141], [-87.68795, 41.93125]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6879, 41.92889], [-87.68788, 41.92873]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68799, 41.93342], [-87.68799, 41.93329]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68793, 41.93005], [-87.68795, 41.93032]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68793, 41.93053], [-87.68793, 41.93036]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68777, 41.92653], [-87.68776, 41.9263]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68782, 41.9269], [-87.68782, 41.92684]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68782, 41.92719], [-87.68782, 41.92705]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68782, 41.92705], [-87.68782, 41.9269]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68799, 41.93292], [-87.68799, 41.93276]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68799, 41.93237], [-87.68799, 41.93218]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68779, 41.92669], [-87.68777, 41.92653]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68788, 41.92873], [-87.68787, 41.92858]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68772, 41.92561], [-87.68772, 41.92541]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68782, 41.92735], [-87.68782, 41.92719]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68776, 41.9263], [-87.68776, 41.92608]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68799, 41.93165], [-87.68799, 41.93156]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68799, 41.9318], [-87.68799, 41.93165]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68793, 41.93036], [-87.68793, 41.93021]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68793, 41.93021], [-87.68793, 41.93006]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68784, 41.92752], [-87.68782, 41.92735]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68799, 41.93329], [-87.68799, 41.93312]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68772, 41.92541], [-87.68772, 41.92525]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68799, 41.93218], [-87.68799, 41.93197]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68793, 41.92948], [-87.68793, 41.92934]]}, "type": "Feature", "properties": {"num_passengers": 3588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68341, 41.93948], [-87.68331, 41.93948]]}, "type": "Feature", "properties": {"num_passengers": 3590}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7039, 41.80681], [-87.70393, 41.808]]}, "type": "Feature", "properties": {"num_passengers": 3591}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70386, 41.80567], [-87.7039, 41.80681]]}, "type": "Feature", "properties": {"num_passengers": 3591}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64506, 41.77975], [-87.64741, 41.77974]]}, "type": "Feature", "properties": {"num_passengers": 3593}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66089, 42.0042], [-87.66089, 42.00403]]}, "type": "Feature", "properties": {"num_passengers": 3597}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62388, 41.75097], [-87.62364, 41.75097]]}, "type": "Feature", "properties": {"num_passengers": 3603}}, {"geometry": {"type": "LineString", "coordinates": [[-87.73454, 41.93903], [-87.73718, 41.93899]]}, "type": "Feature", "properties": {"num_passengers": 3604}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61794, 41.89188], [-87.61997, 41.89184]]}, "type": "Feature", "properties": {"num_passengers": 3606}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67456, 41.89599], [-87.67725, 41.89594]]}, "type": "Feature", "properties": {"num_passengers": 3608}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58627, 41.7779], [-87.58627, 41.77811]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58644, 41.78206], [-87.58644, 41.78224]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58649, 41.78462], [-87.58649, 41.7848]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58649, 41.7841], [-87.58649, 41.78429]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58646, 41.78125], [-87.58648, 41.78145]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58643, 41.77925], [-87.58644, 41.77943]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58627, 41.77848], [-87.58627, 41.77867]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58646, 41.78297], [-87.58646, 41.78312]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58624, 41.77751], [-87.58624, 41.77771]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58646, 41.78312], [-87.58646, 41.78332]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58644, 41.78186], [-87.58644, 41.78206]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58644, 41.78224], [-87.58644, 41.78242]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58644, 41.78242], [-87.58644, 41.78256]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5864, 41.78033], [-87.5864, 41.78047]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58646, 41.78165], [-87.58644, 41.78186]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58643, 41.7796], [-87.5864, 41.77981]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58648, 41.78383], [-87.58648, 41.78395]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5864, 41.78047], [-87.5864, 41.78062]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5864, 41.77905], [-87.58643, 41.77925]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58644, 41.78256], [-87.58644, 41.78273]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58646, 41.78351], [-87.58648, 41.78367]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58622, 41.77733], [-87.58624, 41.77751]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58648, 41.78395], [-87.58649, 41.7841]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58648, 41.78145], [-87.58646, 41.78165]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58644, 41.78107], [-87.58646, 41.78125]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5864, 41.78047], [-87.5864, 41.78047]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5864, 41.77981], [-87.5864, 41.78]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5864, 41.78076], [-87.58643, 41.78092]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58627, 41.77811], [-87.58627, 41.7783]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58627, 41.7783], [-87.58627, 41.77848]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58644, 41.78273], [-87.58644, 41.7828]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58649, 41.78444], [-87.58649, 41.78462]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5863, 41.77876], [-87.5864, 41.77905]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58649, 41.78429], [-87.58649, 41.78444]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5864, 41.78018], [-87.5864, 41.78033]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58644, 41.7828], [-87.58646, 41.78297]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58643, 41.78092], [-87.58644, 41.78107]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58644, 41.77943], [-87.58643, 41.7796]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5864, 41.78062], [-87.5864, 41.78076]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58627, 41.77867], [-87.5863, 41.77876]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58646, 41.78332], [-87.58646, 41.78351]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5864, 41.78], [-87.5864, 41.78018]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58624, 41.77771], [-87.58627, 41.7779]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58648, 41.78367], [-87.58648, 41.78383]]}, "type": "Feature", "properties": {"num_passengers": 3609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62519, 41.78009], [-87.62994, 41.78003]]}, "type": "Feature", "properties": {"num_passengers": 3610}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62478, 41.75098], [-87.62457, 41.75098]]}, "type": "Feature", "properties": {"num_passengers": 3611}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68774, 41.92505], [-87.68772, 41.9249]]}, "type": "Feature", "properties": {"num_passengers": 3613}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64196, 41.86728], [-87.6421, 41.86729]]}, "type": "Feature", "properties": {"num_passengers": 3614}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62494, 41.90363], [-87.62488, 41.90345]]}, "type": "Feature", "properties": {"num_passengers": 3615}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68772, 41.9249], [-87.68771, 41.92475]]}, "type": "Feature", "properties": {"num_passengers": 3615}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68717, 41.90514], [-87.68717, 41.90496]]}, "type": "Feature", "properties": {"num_passengers": 3619}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62501, 41.90387], [-87.62499, 41.9038]]}, "type": "Feature", "properties": {"num_passengers": 3620}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62052, 41.70511], [-87.62051, 41.70526]]}, "type": "Feature", "properties": {"num_passengers": 3622}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72973, 41.93909], [-87.72988, 41.93908]]}, "type": "Feature", "properties": {"num_passengers": 3624}}, {"geometry": {"type": "LineString", "coordinates": [[-87.73227, 41.93905], [-87.73236, 41.93906]]}, "type": "Feature", "properties": {"num_passengers": 3624}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72747, 41.93912], [-87.72973, 41.93909]]}, "type": "Feature", "properties": {"num_passengers": 3624}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66672, 41.96499], [-87.66668, 41.96474]]}, "type": "Feature", "properties": {"num_passengers": 3624}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72988, 41.93908], [-87.73227, 41.93905]]}, "type": "Feature", "properties": {"num_passengers": 3624}}, {"geometry": {"type": "LineString", "coordinates": [[-87.73443, 41.93904], [-87.73454, 41.93903]]}, "type": "Feature", "properties": {"num_passengers": 3624}}, {"geometry": {"type": "LineString", "coordinates": [[-87.73236, 41.93906], [-87.73443, 41.93904]]}, "type": "Feature", "properties": {"num_passengers": 3624}}, {"geometry": {"type": "LineString", "coordinates": [[-87.73227, 41.93905], [-87.73227, 41.93905]]}, "type": "Feature", "properties": {"num_passengers": 3624}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76564, 41.97342], [-87.76578, 41.9736]]}, "type": "Feature", "properties": {"num_passengers": 3626}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76548, 41.97324], [-87.76564, 41.97342]]}, "type": "Feature", "properties": {"num_passengers": 3626}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76524, 41.97296], [-87.76534, 41.97309]]}, "type": "Feature", "properties": {"num_passengers": 3626}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76534, 41.97309], [-87.76548, 41.97324]]}, "type": "Feature", "properties": {"num_passengers": 3626}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7665, 41.97443], [-87.76656, 41.9745]]}, "type": "Feature", "properties": {"num_passengers": 3626}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76642, 41.9743], [-87.7665, 41.97443]]}, "type": "Feature", "properties": {"num_passengers": 3626}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76596, 41.97377], [-87.76612, 41.97396]]}, "type": "Feature", "properties": {"num_passengers": 3626}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76612, 41.97396], [-87.76627, 41.97414]]}, "type": "Feature", "properties": {"num_passengers": 3626}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76627, 41.97414], [-87.76642, 41.9743]]}, "type": "Feature", "properties": {"num_passengers": 3626}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76578, 41.9736], [-87.76596, 41.97377]]}, "type": "Feature", "properties": {"num_passengers": 3626}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76513, 41.97282], [-87.76524, 41.97296]]}, "type": "Feature", "properties": {"num_passengers": 3626}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62457, 41.75098], [-87.62435, 41.75097]]}, "type": "Feature", "properties": {"num_passengers": 3632}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62408, 41.75096], [-87.62388, 41.75097]]}, "type": "Feature", "properties": {"num_passengers": 3633}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58621, 41.7772], [-87.58622, 41.77733]]}, "type": "Feature", "properties": {"num_passengers": 3634}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62057, 41.7048], [-87.6206, 41.70454]]}, "type": "Feature", "properties": {"num_passengers": 3634}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71967, 41.93922], [-87.71948, 41.93923]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72031, 41.93918], [-87.7201, 41.93917]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7236, 41.93912], [-87.72336, 41.93912]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71989, 41.93917], [-87.71982, 41.93917]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71948, 41.93923], [-87.71927, 41.93923]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72423, 41.93908], [-87.72412, 41.93908]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72161, 41.93915], [-87.72161, 41.93915]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71835, 41.93924], [-87.7181, 41.93924]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71788, 41.93924], [-87.71765, 41.93922]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71881, 41.93923], [-87.71864, 41.93924]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71927, 41.93923], [-87.71904, 41.93923]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72388, 41.93911], [-87.7236, 41.93912]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71602, 41.93927], [-87.71575, 41.93927]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71754, 41.93922], [-87.71729, 41.93923]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72201, 41.93916], [-87.72182, 41.93915]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72412, 41.93908], [-87.72388, 41.93911]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72161, 41.93915], [-87.72136, 41.93917]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72249, 41.93915], [-87.72222, 41.93917]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72051, 41.93918], [-87.72031, 41.93918]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71525, 41.93925], [-87.71509, 41.93926]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72336, 41.93912], [-87.72307, 41.93915]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72222, 41.93917], [-87.72201, 41.93916]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71708, 41.93925], [-87.71684, 41.93925]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72074, 41.93918], [-87.72051, 41.93918]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72098, 41.93918], [-87.72074, 41.93918]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71684, 41.93925], [-87.71657, 41.93927]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71729, 41.93923], [-87.71708, 41.93925]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71864, 41.93924], [-87.71835, 41.93924]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72118, 41.93917], [-87.72098, 41.93918]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71629, 41.93927], [-87.71602, 41.93927]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72307, 41.93915], [-87.72277, 41.93915]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72182, 41.93915], [-87.72161, 41.93915]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71552, 41.93925], [-87.71525, 41.93925]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71982, 41.93917], [-87.71967, 41.93922]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72277, 41.93915], [-87.72249, 41.93915]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71904, 41.93923], [-87.71881, 41.93923]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71575, 41.93927], [-87.71552, 41.93925]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7181, 41.93924], [-87.71788, 41.93924]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7201, 41.93917], [-87.71989, 41.93917]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71765, 41.93922], [-87.71754, 41.93922]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71657, 41.93927], [-87.71629, 41.93927]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72136, 41.93917], [-87.72118, 41.93917]]}, "type": "Feature", "properties": {"num_passengers": 3635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62051, 41.70526], [-87.62049, 41.70532]]}, "type": "Feature", "properties": {"num_passengers": 3639}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62499, 41.9038], [-87.62494, 41.90363]]}, "type": "Feature", "properties": {"num_passengers": 3640}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72444, 41.9391], [-87.72423, 41.93908]]}, "type": "Feature", "properties": {"num_passengers": 3644}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62435, 41.75097], [-87.62413, 41.75096]]}, "type": "Feature", "properties": {"num_passengers": 3646}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62506, 41.905], [-87.62506, 41.90516]]}, "type": "Feature", "properties": {"num_passengers": 3649}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63262, 41.88317], [-87.6326, 41.88317]]}, "type": "Feature", "properties": {"num_passengers": 3649}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62413, 41.75096], [-87.62408, 41.75096]]}, "type": "Feature", "properties": {"num_passengers": 3651}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66606, 41.96189], [-87.66603, 41.96178]]}, "type": "Feature", "properties": {"num_passengers": 3652}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66639, 41.96348], [-87.66635, 41.96332]]}, "type": "Feature", "properties": {"num_passengers": 3652}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66609, 41.96204], [-87.66606, 41.96189]]}, "type": "Feature", "properties": {"num_passengers": 3652}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6664, 41.96356], [-87.66639, 41.96348]]}, "type": "Feature", "properties": {"num_passengers": 3652}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66656, 41.96426], [-87.66651, 41.964]]}, "type": "Feature", "properties": {"num_passengers": 3652}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66651, 41.964], [-87.66646, 41.96379]]}, "type": "Feature", "properties": {"num_passengers": 3652}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66615, 41.96237], [-87.66612, 41.96221]]}, "type": "Feature", "properties": {"num_passengers": 3652}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66624, 41.96275], [-87.66619, 41.96253]]}, "type": "Feature", "properties": {"num_passengers": 3652}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66635, 41.96332], [-87.66631, 41.96312]]}, "type": "Feature", "properties": {"num_passengers": 3652}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66646, 41.96379], [-87.6664, 41.96356]]}, "type": "Feature", "properties": {"num_passengers": 3652}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66627, 41.96293], [-87.66624, 41.96275]]}, "type": "Feature", "properties": {"num_passengers": 3652}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66619, 41.96253], [-87.66615, 41.96237]]}, "type": "Feature", "properties": {"num_passengers": 3652}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66612, 41.96221], [-87.66609, 41.96204]]}, "type": "Feature", "properties": {"num_passengers": 3652}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66631, 41.96312], [-87.66627, 41.96293]]}, "type": "Feature", "properties": {"num_passengers": 3652}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64497, 41.77977], [-87.64506, 41.77975]]}, "type": "Feature", "properties": {"num_passengers": 3653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62049, 41.70532], [-87.62047, 41.70552]]}, "type": "Feature", "properties": {"num_passengers": 3654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63945, 41.93818], [-87.63945, 41.93843]]}, "type": "Feature", "properties": {"num_passengers": 3656}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63942, 41.93712], [-87.63941, 41.93728]]}, "type": "Feature", "properties": {"num_passengers": 3656}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63941, 41.93728], [-87.63942, 41.93746]]}, "type": "Feature", "properties": {"num_passengers": 3656}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63939, 41.93647], [-87.63939, 41.9366]]}, "type": "Feature", "properties": {"num_passengers": 3656}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63938, 41.93631], [-87.63939, 41.93647]]}, "type": "Feature", "properties": {"num_passengers": 3656}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63941, 41.93673], [-87.63941, 41.9368]]}, "type": "Feature", "properties": {"num_passengers": 3656}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63944, 41.93794], [-87.63945, 41.93818]]}, "type": "Feature", "properties": {"num_passengers": 3656}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63945, 41.93843], [-87.63947, 41.93868]]}, "type": "Feature", "properties": {"num_passengers": 3656}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63938, 41.93613], [-87.63938, 41.93631]]}, "type": "Feature", "properties": {"num_passengers": 3656}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63944, 41.93765], [-87.63943, 41.93785]]}, "type": "Feature", "properties": {"num_passengers": 3656}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63941, 41.93694], [-87.63942, 41.93712]]}, "type": "Feature", "properties": {"num_passengers": 3656}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63943, 41.93785], [-87.63944, 41.93794]]}, "type": "Feature", "properties": {"num_passengers": 3656}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63939, 41.9366], [-87.63941, 41.93673]]}, "type": "Feature", "properties": {"num_passengers": 3656}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63938, 41.93598], [-87.63938, 41.93613]]}, "type": "Feature", "properties": {"num_passengers": 3656}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63941, 41.9368], [-87.63941, 41.93694]]}, "type": "Feature", "properties": {"num_passengers": 3656}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63942, 41.93746], [-87.63944, 41.93765]]}, "type": "Feature", "properties": {"num_passengers": 3656}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62471, 41.90295], [-87.62466, 41.90282]]}, "type": "Feature", "properties": {"num_passengers": 3658}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62448, 41.9022], [-87.62432, 41.90171]]}, "type": "Feature", "properties": {"num_passengers": 3658}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.89986], [-87.62422, 41.89971]]}, "type": "Feature", "properties": {"num_passengers": 3658}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62427, 41.90098], [-87.62427, 41.90089]]}, "type": "Feature", "properties": {"num_passengers": 3658}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62426, 41.90062], [-87.62426, 41.90043]]}, "type": "Feature", "properties": {"num_passengers": 3658}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62426, 41.90043], [-87.62425, 41.90022]]}, "type": "Feature", "properties": {"num_passengers": 3658}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62424, 41.90003], [-87.62423, 41.89986]]}, "type": "Feature", "properties": {"num_passengers": 3658}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62427, 41.90089], [-87.62427, 41.90078]]}, "type": "Feature", "properties": {"num_passengers": 3658}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6245, 41.90226], [-87.62448, 41.9022]]}, "type": "Feature", "properties": {"num_passengers": 3658}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62457, 41.90254], [-87.62453, 41.90241]]}, "type": "Feature", "properties": {"num_passengers": 3658}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62424, 41.90137], [-87.62427, 41.90098]]}, "type": "Feature", "properties": {"num_passengers": 3658}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62462, 41.90269], [-87.62457, 41.90254]]}, "type": "Feature", "properties": {"num_passengers": 3658}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6242, 41.89938], [-87.62421, 41.8993]]}, "type": "Feature", "properties": {"num_passengers": 3658}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62466, 41.90282], [-87.62462, 41.90269]]}, "type": "Feature", "properties": {"num_passengers": 3658}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62453, 41.90241], [-87.6245, 41.90226]]}, "type": "Feature", "properties": {"num_passengers": 3658}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62425, 41.90022], [-87.62424, 41.90003]]}, "type": "Feature", "properties": {"num_passengers": 3658}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62432, 41.90171], [-87.62424, 41.90137]]}, "type": "Feature", "properties": {"num_passengers": 3658}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62427, 41.90078], [-87.62426, 41.90062]]}, "type": "Feature", "properties": {"num_passengers": 3658}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62421, 41.89953], [-87.6242, 41.89938]]}, "type": "Feature", "properties": {"num_passengers": 3658}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62474, 41.90305], [-87.62471, 41.90295]]}, "type": "Feature", "properties": {"num_passengers": 3658}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62422, 41.89971], [-87.62421, 41.89953]]}, "type": "Feature", "properties": {"num_passengers": 3658}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62078, 41.69499], [-87.62078, 41.6952]]}, "type": "Feature", "properties": {"num_passengers": 3660}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66668, 41.96474], [-87.66661, 41.96449]]}, "type": "Feature", "properties": {"num_passengers": 3661}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68731, 41.91146], [-87.68729, 41.9113]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68733, 41.91229], [-87.68733, 41.91221]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68733, 41.91221], [-87.68731, 41.91209]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68718, 41.90568], [-87.68717, 41.9055]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68728, 41.91048], [-87.68729, 41.91032]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68733, 41.91243], [-87.68733, 41.91229]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68739, 41.91398], [-87.68741, 41.9138]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68741, 41.9138], [-87.68741, 41.91366]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68729, 41.91096], [-87.68729, 41.9108]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68731, 41.91178], [-87.68731, 41.91162]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6872, 41.90588], [-87.68718, 41.90568]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68729, 41.9113], [-87.68729, 41.91114]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68733, 41.91307], [-87.68733, 41.91285]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68736, 41.91343], [-87.68733, 41.91327]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68722, 41.90662], [-87.6872, 41.90641]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68739, 41.91414], [-87.68739, 41.91398]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68733, 41.91285], [-87.68733, 41.91263]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68717, 41.9055], [-87.68717, 41.90531]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68719, 41.90679], [-87.68722, 41.90662]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68724, 41.90842], [-87.68724, 41.90832]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6872, 41.90606], [-87.6872, 41.90588]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6872, 41.90624], [-87.6872, 41.90606]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68741, 41.91366], [-87.68741, 41.91351]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68731, 41.91162], [-87.68731, 41.91146]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68741, 41.9143], [-87.68739, 41.91414]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68733, 41.91327], [-87.68733, 41.91307]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68731, 41.91193], [-87.68731, 41.91178]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68741, 41.91446], [-87.68741, 41.9143]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68728, 41.91004], [-87.68728, 41.91004]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68741, 41.91351], [-87.68741, 41.91347]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68729, 41.91019], [-87.68728, 41.91004]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68729, 41.9108], [-87.68729, 41.91064]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68729, 41.91114], [-87.68729, 41.91096]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68728, 41.91004], [-87.68728, 41.91]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68731, 41.91209], [-87.68731, 41.91193]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68729, 41.91032], [-87.68729, 41.91019]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68728, 41.91], [-87.68724, 41.90842]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68717, 41.90531], [-87.68717, 41.90514]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68724, 41.90832], [-87.68719, 41.90679]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6872, 41.90641], [-87.6872, 41.90624]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68733, 41.91263], [-87.68733, 41.91243]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68741, 41.91347], [-87.68736, 41.91343]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68729, 41.91064], [-87.68728, 41.91048]]}, "type": "Feature", "properties": {"num_passengers": 3663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66661, 41.96449], [-87.66656, 41.96426]]}, "type": "Feature", "properties": {"num_passengers": 3669}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68331, 41.93948], [-87.68099, 41.9395]]}, "type": "Feature", "properties": {"num_passengers": 3669}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61995, 41.70878], [-87.6199, 41.70892]]}, "type": "Feature", "properties": {"num_passengers": 3674}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62004, 41.70813], [-87.62001, 41.70828]]}, "type": "Feature", "properties": {"num_passengers": 3674}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62046, 41.70565], [-87.62044, 41.70581]]}, "type": "Feature", "properties": {"num_passengers": 3674}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6202, 41.70702], [-87.62019, 41.70717]]}, "type": "Feature", "properties": {"num_passengers": 3674}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62, 41.70842], [-87.61997, 41.7086]]}, "type": "Feature", "properties": {"num_passengers": 3674}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6199, 41.70897], [-87.6199, 41.70908]]}, "type": "Feature", "properties": {"num_passengers": 3674}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61997, 41.7086], [-87.61995, 41.70878]]}, "type": "Feature", "properties": {"num_passengers": 3674}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62019, 41.70717], [-87.62016, 41.70732]]}, "type": "Feature", "properties": {"num_passengers": 3674}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62033, 41.70654], [-87.62028, 41.7067]]}, "type": "Feature", "properties": {"num_passengers": 3674}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62038, 41.70618], [-87.62036, 41.70636]]}, "type": "Feature", "properties": {"num_passengers": 3674}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62036, 41.70636], [-87.62033, 41.70654]]}, "type": "Feature", "properties": {"num_passengers": 3674}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62011, 41.70771], [-87.62009, 41.70781]]}, "type": "Feature", "properties": {"num_passengers": 3674}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62041, 41.706], [-87.62038, 41.70618]]}, "type": "Feature", "properties": {"num_passengers": 3674}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62044, 41.70581], [-87.62041, 41.706]]}, "type": "Feature", "properties": {"num_passengers": 3674}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62028, 41.7067], [-87.62025, 41.70684]]}, "type": "Feature", "properties": {"num_passengers": 3674}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62001, 41.70828], [-87.62, 41.70842]]}, "type": "Feature", "properties": {"num_passengers": 3674}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63937, 41.93583], [-87.63938, 41.93598]]}, "type": "Feature", "properties": {"num_passengers": 3674}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62009, 41.70781], [-87.62008, 41.70796]]}, "type": "Feature", "properties": {"num_passengers": 3674}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62016, 41.70732], [-87.62014, 41.70751]]}, "type": "Feature", "properties": {"num_passengers": 3674}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62014, 41.70751], [-87.62011, 41.70771]]}, "type": "Feature", "properties": {"num_passengers": 3674}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62008, 41.70796], [-87.62004, 41.70813]]}, "type": "Feature", "properties": {"num_passengers": 3674}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62025, 41.70684], [-87.6202, 41.70702]]}, "type": "Feature", "properties": {"num_passengers": 3674}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6199, 41.70892], [-87.6199, 41.70897]]}, "type": "Feature", "properties": {"num_passengers": 3674}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62047, 41.70552], [-87.62046, 41.70565]]}, "type": "Feature", "properties": {"num_passengers": 3675}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60623, 41.7947], [-87.60623, 41.79448]]}, "type": "Feature", "properties": {"num_passengers": 3676}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58649, 41.7848], [-87.58651, 41.785]]}, "type": "Feature", "properties": {"num_passengers": 3676}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62935, 41.882], [-87.62936, 41.88215]]}, "type": "Feature", "properties": {"num_passengers": 3677}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62936, 41.88215], [-87.62941, 41.88464]]}, "type": "Feature", "properties": {"num_passengers": 3677}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62941, 41.88464], [-87.62942, 41.8848]]}, "type": "Feature", "properties": {"num_passengers": 3677}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62934, 41.88103], [-87.62935, 41.882]]}, "type": "Feature", "properties": {"num_passengers": 3677}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6293, 41.88094], [-87.62934, 41.88103]]}, "type": "Feature", "properties": {"num_passengers": 3677}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60626, 41.79489], [-87.60623, 41.7947]]}, "type": "Feature", "properties": {"num_passengers": 3686}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68769, 41.92437], [-87.68768, 41.92415]]}, "type": "Feature", "properties": {"num_passengers": 3686}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60623, 41.79424], [-87.60623, 41.79402]]}, "type": "Feature", "properties": {"num_passengers": 3688}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62481, 41.90323], [-87.62474, 41.90305]]}, "type": "Feature", "properties": {"num_passengers": 3700}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65536, 41.98479], [-87.65536, 41.98463]]}, "type": "Feature", "properties": {"num_passengers": 3701}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58496, 41.80181], [-87.58503, 41.80197]]}, "type": "Feature", "properties": {"num_passengers": 3703}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7054, 41.93938], [-87.70561, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 3703}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60626, 41.79504], [-87.60626, 41.79489]]}, "type": "Feature", "properties": {"num_passengers": 3704}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61169, 41.722], [-87.6139, 41.72195]]}, "type": "Feature", "properties": {"num_passengers": 3704}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60636, 41.79954], [-87.60633, 41.79935]]}, "type": "Feature", "properties": {"num_passengers": 3709}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60633, 41.79911], [-87.60631, 41.79889]]}, "type": "Feature", "properties": {"num_passengers": 3709}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60641, 41.80095], [-87.60641, 41.8008]]}, "type": "Feature", "properties": {"num_passengers": 3709}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60641, 41.80063], [-87.60641, 41.80046]]}, "type": "Feature", "properties": {"num_passengers": 3709}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6063, 41.79633], [-87.6063, 41.79609]]}, "type": "Feature", "properties": {"num_passengers": 3709}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60641, 41.8008], [-87.60641, 41.80063]]}, "type": "Feature", "properties": {"num_passengers": 3709}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60631, 41.79692], [-87.60631, 41.79672]]}, "type": "Feature", "properties": {"num_passengers": 3709}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60631, 41.79699], [-87.60631, 41.79692]]}, "type": "Feature", "properties": {"num_passengers": 3709}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60631, 41.79889], [-87.60633, 41.79871]]}, "type": "Feature", "properties": {"num_passengers": 3709}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60631, 41.79805], [-87.6063, 41.79782]]}, "type": "Feature", "properties": {"num_passengers": 3709}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60633, 41.79842], [-87.60631, 41.79822]]}, "type": "Feature", "properties": {"num_passengers": 3709}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6063, 41.79736], [-87.6063, 41.79717]]}, "type": "Feature", "properties": {"num_passengers": 3709}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70519, 41.93938], [-87.7054, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 3709}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60628, 41.79564], [-87.60628, 41.79544]]}, "type": "Feature", "properties": {"num_passengers": 3709}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60631, 41.79654], [-87.6063, 41.79633]]}, "type": "Feature", "properties": {"num_passengers": 3709}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60626, 41.79527], [-87.60626, 41.7952]]}, "type": "Feature", "properties": {"num_passengers": 3709}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60638, 41.79976], [-87.60636, 41.79954]]}, "type": "Feature", "properties": {"num_passengers": 3709}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6063, 41.79759], [-87.6063, 41.79736]]}, "type": "Feature", "properties": {"num_passengers": 3709}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60641, 41.80042], [-87.60641, 41.80025]]}, "type": "Feature", "properties": {"num_passengers": 3709}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60626, 41.7952], [-87.60626, 41.79504]]}, "type": "Feature", "properties": {"num_passengers": 3709}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6063, 41.79586], [-87.60628, 41.79564]]}, "type": "Feature", "properties": {"num_passengers": 3709}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60631, 41.79672], [-87.60631, 41.79654]]}, "type": "Feature", "properties": {"num_passengers": 3709}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6063, 41.79782], [-87.6063, 41.79759]]}, "type": "Feature", "properties": {"num_passengers": 3709}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60633, 41.79935], [-87.60633, 41.79911]]}, "type": "Feature", "properties": {"num_passengers": 3709}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6063, 41.79717], [-87.60631, 41.79699]]}, "type": "Feature", "properties": {"num_passengers": 3709}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60641, 41.79994], [-87.60638, 41.79976]]}, "type": "Feature", "properties": {"num_passengers": 3709}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60641, 41.80025], [-87.60641, 41.80008]]}, "type": "Feature", "properties": {"num_passengers": 3709}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6063, 41.79609], [-87.6063, 41.79586]]}, "type": "Feature", "properties": {"num_passengers": 3709}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60628, 41.79544], [-87.60626, 41.79527]]}, "type": "Feature", "properties": {"num_passengers": 3709}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60636, 41.79853], [-87.60633, 41.79842]]}, "type": "Feature", "properties": {"num_passengers": 3709}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60642, 41.80117], [-87.60641, 41.80095]]}, "type": "Feature", "properties": {"num_passengers": 3709}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60633, 41.79871], [-87.60636, 41.79853]]}, "type": "Feature", "properties": {"num_passengers": 3709}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60641, 41.80008], [-87.60641, 41.79994]]}, "type": "Feature", "properties": {"num_passengers": 3709}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60641, 41.80046], [-87.60641, 41.80042]]}, "type": "Feature", "properties": {"num_passengers": 3709}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60631, 41.79822], [-87.60631, 41.79805]]}, "type": "Feature", "properties": {"num_passengers": 3709}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69546, 41.93934], [-87.69569, 41.93934]]}, "type": "Feature", "properties": {"num_passengers": 3714}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68744, 41.91461], [-87.68741, 41.91446]]}, "type": "Feature", "properties": {"num_passengers": 3718}}, {"geometry": {"type": "LineString", "coordinates": [[-87.625, 41.90429], [-87.62502, 41.90446]]}, "type": "Feature", "properties": {"num_passengers": 3718}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62502, 41.90446], [-87.62502, 41.90463]]}, "type": "Feature", "properties": {"num_passengers": 3718}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62502, 41.90478], [-87.62503, 41.90481]]}, "type": "Feature", "properties": {"num_passengers": 3718}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62498, 41.9042], [-87.625, 41.90429]]}, "type": "Feature", "properties": {"num_passengers": 3718}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62502, 41.90463], [-87.62502, 41.90478]]}, "type": "Feature", "properties": {"num_passengers": 3718}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62503, 41.90481], [-87.62506, 41.905]]}, "type": "Feature", "properties": {"num_passengers": 3718}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66074, 42.00032], [-87.66074, 42.00014]]}, "type": "Feature", "properties": {"num_passengers": 3720}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66077, 42.00086], [-87.66077, 42.00069]]}, "type": "Feature", "properties": {"num_passengers": 3720}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66085, 42.00279], [-87.66084, 42.00259]]}, "type": "Feature", "properties": {"num_passengers": 3720}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66089, 42.00403], [-87.66089, 42.00384]]}, "type": "Feature", "properties": {"num_passengers": 3720}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66082, 42.00227], [-87.66082, 42.00207]]}, "type": "Feature", "properties": {"num_passengers": 3720}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66074, 41.99986], [-87.66074, 41.99986]]}, "type": "Feature", "properties": {"num_passengers": 3720}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66084, 42.00259], [-87.66083, 42.00241]]}, "type": "Feature", "properties": {"num_passengers": 3720}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66077, 42.00069], [-87.66077, 42.00049]]}, "type": "Feature", "properties": {"num_passengers": 3720}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66083, 42.00241], [-87.66082, 42.00227]]}, "type": "Feature", "properties": {"num_passengers": 3720}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66085, 42.00313], [-87.66085, 42.00298]]}, "type": "Feature", "properties": {"num_passengers": 3720}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66089, 42.00384], [-87.66087, 42.00361]]}, "type": "Feature", "properties": {"num_passengers": 3720}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66074, 42.0], [-87.66074, 41.99986]]}, "type": "Feature", "properties": {"num_passengers": 3720}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66077, 42.00049], [-87.66074, 42.00032]]}, "type": "Feature", "properties": {"num_passengers": 3720}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66078, 42.00106], [-87.66077, 42.00086]]}, "type": "Feature", "properties": {"num_passengers": 3720}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66082, 42.00207], [-87.66082, 42.00194]]}, "type": "Feature", "properties": {"num_passengers": 3720}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66082, 42.00194], [-87.66081, 42.00178]]}, "type": "Feature", "properties": {"num_passengers": 3720}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66085, 42.00298], [-87.66085, 42.00279]]}, "type": "Feature", "properties": {"num_passengers": 3720}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66087, 42.00361], [-87.66085, 42.00336]]}, "type": "Feature", "properties": {"num_passengers": 3720}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66086, 42.00328], [-87.66085, 42.00313]]}, "type": "Feature", "properties": {"num_passengers": 3720}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6608, 42.00144], [-87.66078, 42.00106]]}, "type": "Feature", "properties": {"num_passengers": 3720}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66081, 42.0016], [-87.6608, 42.00144]]}, "type": "Feature", "properties": {"num_passengers": 3720}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66074, 42.00014], [-87.66074, 42.0]]}, "type": "Feature", "properties": {"num_passengers": 3720}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66085, 42.00336], [-87.66086, 42.00328]]}, "type": "Feature", "properties": {"num_passengers": 3720}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66081, 42.00178], [-87.66081, 42.0016]]}, "type": "Feature", "properties": {"num_passengers": 3720}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67796, 41.93954], [-87.67608, 41.93957]]}, "type": "Feature", "properties": {"num_passengers": 3721}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67545, 41.93959], [-87.67521, 41.93959]]}, "type": "Feature", "properties": {"num_passengers": 3721}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67568, 41.93958], [-87.67545, 41.93959]]}, "type": "Feature", "properties": {"num_passengers": 3721}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68089, 41.93951], [-87.67804, 41.93955]]}, "type": "Feature", "properties": {"num_passengers": 3721}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67804, 41.93955], [-87.67796, 41.93954]]}, "type": "Feature", "properties": {"num_passengers": 3721}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68099, 41.9395], [-87.68089, 41.93951]]}, "type": "Feature", "properties": {"num_passengers": 3721}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67591, 41.93958], [-87.67568, 41.93958]]}, "type": "Feature", "properties": {"num_passengers": 3721}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67608, 41.93957], [-87.67591, 41.93958]]}, "type": "Feature", "properties": {"num_passengers": 3721}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62078, 41.6952], [-87.62079, 41.69543]]}, "type": "Feature", "properties": {"num_passengers": 3723}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67496, 41.93961], [-87.67472, 41.93961]]}, "type": "Feature", "properties": {"num_passengers": 3724}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60623, 41.79448], [-87.60623, 41.79424]]}, "type": "Feature", "properties": {"num_passengers": 3724}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65519, 41.98495], [-87.65519, 41.98512]]}, "type": "Feature", "properties": {"num_passengers": 3727}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62401, 41.90167], [-87.62408, 41.90185]]}, "type": "Feature", "properties": {"num_passengers": 3729}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62495, 41.90398], [-87.62498, 41.90412]]}, "type": "Feature", "properties": {"num_passengers": 3729}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62488, 41.90381], [-87.62495, 41.90398]]}, "type": "Feature", "properties": {"num_passengers": 3729}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62404, 41.89935], [-87.62404, 41.89961]]}, "type": "Feature", "properties": {"num_passengers": 3729}}, {"geometry": {"type": "LineString", "coordinates": [[-87.624, 41.90151], [-87.62401, 41.90167]]}, "type": "Feature", "properties": {"num_passengers": 3729}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62436, 41.90226], [-87.6244, 41.90237]]}, "type": "Feature", "properties": {"num_passengers": 3729}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62467, 41.90314], [-87.62471, 41.90327]]}, "type": "Feature", "properties": {"num_passengers": 3729}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62498, 41.90412], [-87.62498, 41.9042]]}, "type": "Feature", "properties": {"num_passengers": 3729}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62452, 41.90267], [-87.62459, 41.90285]]}, "type": "Feature", "properties": {"num_passengers": 3729}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62408, 41.90185], [-87.62421, 41.90199]]}, "type": "Feature", "properties": {"num_passengers": 3729}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62448, 41.90251], [-87.62452, 41.90267]]}, "type": "Feature", "properties": {"num_passengers": 3729}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62421, 41.90199], [-87.6243, 41.90213]]}, "type": "Feature", "properties": {"num_passengers": 3729}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62413, 41.90083], [-87.62408, 41.90095]]}, "type": "Feature", "properties": {"num_passengers": 3729}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62409, 41.90022], [-87.62409, 41.90036]]}, "type": "Feature", "properties": {"num_passengers": 3729}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62459, 41.90285], [-87.62464, 41.90301]]}, "type": "Feature", "properties": {"num_passengers": 3729}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62403, 41.90128], [-87.624, 41.90151]]}, "type": "Feature", "properties": {"num_passengers": 3729}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6243, 41.90213], [-87.62436, 41.90226]]}, "type": "Feature", "properties": {"num_passengers": 3729}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62409, 41.90036], [-87.62413, 41.90048]]}, "type": "Feature", "properties": {"num_passengers": 3729}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62409, 41.90005], [-87.62409, 41.90022]]}, "type": "Feature", "properties": {"num_passengers": 3729}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62471, 41.90327], [-87.62475, 41.90338]]}, "type": "Feature", "properties": {"num_passengers": 3729}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62407, 41.8999], [-87.62409, 41.90005]]}, "type": "Feature", "properties": {"num_passengers": 3729}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62498, 41.90487], [-87.62495, 41.90461]]}, "type": "Feature", "properties": {"num_passengers": 3729}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62464, 41.90301], [-87.62467, 41.90314]]}, "type": "Feature", "properties": {"num_passengers": 3729}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62408, 41.90095], [-87.62406, 41.90111]]}, "type": "Feature", "properties": {"num_passengers": 3729}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62404, 41.89961], [-87.62405, 41.89976]]}, "type": "Feature", "properties": {"num_passengers": 3729}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62413, 41.90069], [-87.62413, 41.90083]]}, "type": "Feature", "properties": {"num_passengers": 3729}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62413, 41.90052], [-87.62413, 41.90069]]}, "type": "Feature", "properties": {"num_passengers": 3729}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62413, 41.90048], [-87.62413, 41.90052]]}, "type": "Feature", "properties": {"num_passengers": 3729}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64154, 41.94535], [-87.64162, 41.94551]]}, "type": "Feature", "properties": {"num_passengers": 3729}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62475, 41.90338], [-87.6248, 41.90353]]}, "type": "Feature", "properties": {"num_passengers": 3729}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62405, 41.89976], [-87.62407, 41.8999]]}, "type": "Feature", "properties": {"num_passengers": 3729}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6248, 41.90353], [-87.62483, 41.90368]]}, "type": "Feature", "properties": {"num_passengers": 3729}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62406, 41.90111], [-87.62403, 41.90128]]}, "type": "Feature", "properties": {"num_passengers": 3729}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6244, 41.90237], [-87.62448, 41.90251]]}, "type": "Feature", "properties": {"num_passengers": 3729}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62483, 41.90368], [-87.62488, 41.90381]]}, "type": "Feature", "properties": {"num_passengers": 3729}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62453, 41.88597], [-87.62453, 41.88619]]}, "type": "Feature", "properties": {"num_passengers": 3735}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58651, 41.785], [-87.58651, 41.78521]]}, "type": "Feature", "properties": {"num_passengers": 3735}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6245, 41.88646], [-87.62444, 41.88679]]}, "type": "Feature", "properties": {"num_passengers": 3735}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62453, 41.88619], [-87.62453, 41.88635]]}, "type": "Feature", "properties": {"num_passengers": 3735}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62456, 41.88575], [-87.62453, 41.88597]]}, "type": "Feature", "properties": {"num_passengers": 3735}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62453, 41.88635], [-87.6245, 41.88646]]}, "type": "Feature", "properties": {"num_passengers": 3735}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69519, 41.93936], [-87.69546, 41.93934]]}, "type": "Feature", "properties": {"num_passengers": 3739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69756, 41.93938], [-87.69759, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 3745}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69569, 41.93934], [-87.69594, 41.93934]]}, "type": "Feature", "properties": {"num_passengers": 3745}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69777, 41.93938], [-87.69801, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 3745}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69669, 41.93936], [-87.69694, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 3745}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6999, 41.93938], [-87.70004, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 3745}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69895, 41.93935], [-87.6992, 41.93935]]}, "type": "Feature", "properties": {"num_passengers": 3745}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69845, 41.93938], [-87.69874, 41.93936]]}, "type": "Feature", "properties": {"num_passengers": 3745}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69594, 41.93934], [-87.6962, 41.93934]]}, "type": "Feature", "properties": {"num_passengers": 3745}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70014, 41.93941], [-87.70303, 41.9394]]}, "type": "Feature", "properties": {"num_passengers": 3745}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70313, 41.9394], [-87.70497, 41.93939]]}, "type": "Feature", "properties": {"num_passengers": 3745}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69801, 41.93938], [-87.69825, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 3745}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69734, 41.93938], [-87.69756, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 3745}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69759, 41.93938], [-87.69777, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 3745}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70303, 41.9394], [-87.70313, 41.9394]]}, "type": "Feature", "properties": {"num_passengers": 3745}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69964, 41.93935], [-87.6999, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 3745}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6962, 41.93934], [-87.69645, 41.93935]]}, "type": "Feature", "properties": {"num_passengers": 3745}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69715, 41.93938], [-87.69734, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 3745}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69944, 41.93935], [-87.69964, 41.93935]]}, "type": "Feature", "properties": {"num_passengers": 3745}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69874, 41.93936], [-87.69895, 41.93935]]}, "type": "Feature", "properties": {"num_passengers": 3745}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69825, 41.93938], [-87.69845, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 3745}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70004, 41.93938], [-87.70014, 41.93941]]}, "type": "Feature", "properties": {"num_passengers": 3745}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69694, 41.93938], [-87.69715, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 3745}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6992, 41.93935], [-87.69944, 41.93935]]}, "type": "Feature", "properties": {"num_passengers": 3745}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69645, 41.93935], [-87.69669, 41.93936]]}, "type": "Feature", "properties": {"num_passengers": 3745}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70497, 41.93939], [-87.70519, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 3750}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63589, 41.9251], [-87.63585, 41.92488]]}, "type": "Feature", "properties": {"num_passengers": 3751}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62747, 41.86515], [-87.62745, 41.86466]]}, "type": "Feature", "properties": {"num_passengers": 3753}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67521, 41.93959], [-87.67496, 41.93961]]}, "type": "Feature", "properties": {"num_passengers": 3754}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6358, 41.92504], [-87.63584, 41.92522]]}, "type": "Feature", "properties": {"num_passengers": 3760}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62051, 41.7146], [-87.62047, 41.71437]]}, "type": "Feature", "properties": {"num_passengers": 3766}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62637, 41.88572], [-87.62442, 41.8857]]}, "type": "Feature", "properties": {"num_passengers": 3766}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62415, 41.875], [-87.62415, 41.87519]]}, "type": "Feature", "properties": {"num_passengers": 3767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72728, 41.93912], [-87.72747, 41.93912]]}, "type": "Feature", "properties": {"num_passengers": 3770}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64681, 41.86524], [-87.64682, 41.86542]]}, "type": "Feature", "properties": {"num_passengers": 3772}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62052, 41.71479], [-87.62051, 41.7146]]}, "type": "Feature", "properties": {"num_passengers": 3774}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65557, 41.99472], [-87.65556, 41.99457]]}, "type": "Feature", "properties": {"num_passengers": 3776}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58503, 41.80197], [-87.58508, 41.80211]]}, "type": "Feature", "properties": {"num_passengers": 3779}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62494, 41.90527], [-87.62484, 41.90416]]}, "type": "Feature", "properties": {"num_passengers": 3783}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68744, 41.91495], [-87.68744, 41.91477]]}, "type": "Feature", "properties": {"num_passengers": 3784}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64366, 41.93017], [-87.64352, 41.93003]]}, "type": "Feature", "properties": {"num_passengers": 3785}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64384, 41.93048], [-87.64378, 41.93035]]}, "type": "Feature", "properties": {"num_passengers": 3785}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64265, 41.92918], [-87.64258, 41.92904]]}, "type": "Feature", "properties": {"num_passengers": 3785}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64435, 41.93138], [-87.64427, 41.93122]]}, "type": "Feature", "properties": {"num_passengers": 3785}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64139, 41.92702], [-87.6406, 41.92569]]}, "type": "Feature", "properties": {"num_passengers": 3785}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64443, 41.93154], [-87.64435, 41.93138]]}, "type": "Feature", "properties": {"num_passengers": 3785}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64464, 41.93182], [-87.64452, 41.93169]]}, "type": "Feature", "properties": {"num_passengers": 3785}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64378, 41.93035], [-87.6437, 41.93021]]}, "type": "Feature", "properties": {"num_passengers": 3785}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64392, 41.93062], [-87.64384, 41.93048]]}, "type": "Feature", "properties": {"num_passengers": 3785}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64401, 41.93078], [-87.64392, 41.93062]]}, "type": "Feature", "properties": {"num_passengers": 3785}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64419, 41.93107], [-87.64409, 41.93093]]}, "type": "Feature", "properties": {"num_passengers": 3785}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64258, 41.92904], [-87.6425, 41.92888]]}, "type": "Feature", "properties": {"num_passengers": 3785}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64288, 41.92961], [-87.64281, 41.92947]]}, "type": "Feature", "properties": {"num_passengers": 3785}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64302, 41.92971], [-87.64288, 41.92961]]}, "type": "Feature", "properties": {"num_passengers": 3785}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64452, 41.93169], [-87.64443, 41.93154]]}, "type": "Feature", "properties": {"num_passengers": 3785}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64145, 41.92714], [-87.64139, 41.92702]]}, "type": "Feature", "properties": {"num_passengers": 3785}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64281, 41.92947], [-87.64273, 41.92933]]}, "type": "Feature", "properties": {"num_passengers": 3785}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64273, 41.92933], [-87.64265, 41.92918]]}, "type": "Feature", "properties": {"num_passengers": 3785}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6425, 41.92888], [-87.64245, 41.92876]]}, "type": "Feature", "properties": {"num_passengers": 3785}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64245, 41.92876], [-87.64235, 41.92866]]}, "type": "Feature", "properties": {"num_passengers": 3785}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64235, 41.92866], [-87.64145, 41.92714]]}, "type": "Feature", "properties": {"num_passengers": 3785}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64338, 41.92994], [-87.6432, 41.92983]]}, "type": "Feature", "properties": {"num_passengers": 3785}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64409, 41.93093], [-87.64401, 41.93078]]}, "type": "Feature", "properties": {"num_passengers": 3785}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64427, 41.93122], [-87.64419, 41.93107]]}, "type": "Feature", "properties": {"num_passengers": 3785}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6437, 41.93021], [-87.64366, 41.93017]]}, "type": "Feature", "properties": {"num_passengers": 3785}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6432, 41.92983], [-87.64302, 41.92971]]}, "type": "Feature", "properties": {"num_passengers": 3785}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64352, 41.93003], [-87.64338, 41.92994]]}, "type": "Feature", "properties": {"num_passengers": 3785}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71872, 41.93927], [-87.71897, 41.93927]]}, "type": "Feature", "properties": {"num_passengers": 3787}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72007, 41.93924], [-87.72031, 41.93925]]}, "type": "Feature", "properties": {"num_passengers": 3787}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71576, 41.9393], [-87.71606, 41.93929]]}, "type": "Feature", "properties": {"num_passengers": 3787}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7218, 41.93927], [-87.72204, 41.93926]]}, "type": "Feature", "properties": {"num_passengers": 3787}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68744, 41.91477], [-87.68744, 41.91461]]}, "type": "Feature", "properties": {"num_passengers": 3787}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71818, 41.93927], [-87.71845, 41.93927]]}, "type": "Feature", "properties": {"num_passengers": 3787}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72142, 41.93924], [-87.72163, 41.93925]]}, "type": "Feature", "properties": {"num_passengers": 3787}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71942, 41.93925], [-87.71959, 41.93927]]}, "type": "Feature", "properties": {"num_passengers": 3787}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71724, 41.93931], [-87.71743, 41.9393]]}, "type": "Feature", "properties": {"num_passengers": 3787}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71632, 41.93929], [-87.7166, 41.93929]]}, "type": "Feature", "properties": {"num_passengers": 3787}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71969, 41.93927], [-87.71986, 41.93927]]}, "type": "Feature", "properties": {"num_passengers": 3787}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71549, 41.9393], [-87.71576, 41.9393]]}, "type": "Feature", "properties": {"num_passengers": 3787}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72163, 41.93925], [-87.7218, 41.93927]]}, "type": "Feature", "properties": {"num_passengers": 3787}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72204, 41.93926], [-87.72214, 41.93925]]}, "type": "Feature", "properties": {"num_passengers": 3787}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71792, 41.93927], [-87.71818, 41.93927]]}, "type": "Feature", "properties": {"num_passengers": 3787}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71606, 41.93929], [-87.71632, 41.93929]]}, "type": "Feature", "properties": {"num_passengers": 3787}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71923, 41.93925], [-87.71942, 41.93925]]}, "type": "Feature", "properties": {"num_passengers": 3787}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71743, 41.9393], [-87.71769, 41.93927]]}, "type": "Feature", "properties": {"num_passengers": 3787}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71769, 41.93927], [-87.71792, 41.93927]]}, "type": "Feature", "properties": {"num_passengers": 3787}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72367, 41.93917], [-87.72384, 41.93917]]}, "type": "Feature", "properties": {"num_passengers": 3787}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71845, 41.93927], [-87.71872, 41.93927]]}, "type": "Feature", "properties": {"num_passengers": 3787}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72214, 41.93925], [-87.7221, 41.93919]]}, "type": "Feature", "properties": {"num_passengers": 3787}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71959, 41.93927], [-87.71969, 41.93927]]}, "type": "Feature", "properties": {"num_passengers": 3787}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7221, 41.93919], [-87.72367, 41.93917]]}, "type": "Feature", "properties": {"num_passengers": 3787}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72099, 41.93924], [-87.72117, 41.93924]]}, "type": "Feature", "properties": {"num_passengers": 3787}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71702, 41.9393], [-87.71721, 41.93931]]}, "type": "Feature", "properties": {"num_passengers": 3787}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71897, 41.93927], [-87.71923, 41.93925]]}, "type": "Feature", "properties": {"num_passengers": 3787}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7166, 41.93929], [-87.71684, 41.93929]]}, "type": "Feature", "properties": {"num_passengers": 3787}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71684, 41.93929], [-87.71702, 41.9393]]}, "type": "Feature", "properties": {"num_passengers": 3787}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72117, 41.93924], [-87.72142, 41.93924]]}, "type": "Feature", "properties": {"num_passengers": 3787}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72077, 41.93924], [-87.72099, 41.93924]]}, "type": "Feature", "properties": {"num_passengers": 3787}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72031, 41.93925], [-87.72053, 41.93924]]}, "type": "Feature", "properties": {"num_passengers": 3787}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72053, 41.93924], [-87.72077, 41.93924]]}, "type": "Feature", "properties": {"num_passengers": 3787}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71721, 41.93931], [-87.71724, 41.93931]]}, "type": "Feature", "properties": {"num_passengers": 3787}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71986, 41.93927], [-87.72007, 41.93924]]}, "type": "Feature", "properties": {"num_passengers": 3787}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62054, 41.70493], [-87.62057, 41.7048]]}, "type": "Feature", "properties": {"num_passengers": 3791}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7256, 41.93915], [-87.72728, 41.93912]]}, "type": "Feature", "properties": {"num_passengers": 3793}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62057, 41.71498], [-87.62052, 41.71479]]}, "type": "Feature", "properties": {"num_passengers": 3799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58905, 41.80513], [-87.58899, 41.80495]]}, "type": "Feature", "properties": {"num_passengers": 3800}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68412, 41.89575], [-87.68359, 41.89576]]}, "type": "Feature", "properties": {"num_passengers": 3801}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68024, 41.89581], [-87.67966, 41.89583]]}, "type": "Feature", "properties": {"num_passengers": 3801}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67712, 41.89586], [-87.67653, 41.89588]]}, "type": "Feature", "properties": {"num_passengers": 3801}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68288, 41.89578], [-87.68212, 41.89579]]}, "type": "Feature", "properties": {"num_passengers": 3801}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67653, 41.89588], [-87.67593, 41.8959]]}, "type": "Feature", "properties": {"num_passengers": 3801}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67899, 41.89584], [-87.67834, 41.89585]]}, "type": "Feature", "properties": {"num_passengers": 3801}}, {"geometry": {"type": "LineString", "coordinates": [[-87.682, 41.89578], [-87.68147, 41.8958]]}, "type": "Feature", "properties": {"num_passengers": 3801}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68359, 41.89576], [-87.68288, 41.89578]]}, "type": "Feature", "properties": {"num_passengers": 3801}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68147, 41.8958], [-87.68081, 41.89581]]}, "type": "Feature", "properties": {"num_passengers": 3801}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67966, 41.89583], [-87.67953, 41.89583]]}, "type": "Feature", "properties": {"num_passengers": 3801}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67953, 41.89583], [-87.67899, 41.89584]]}, "type": "Feature", "properties": {"num_passengers": 3801}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67593, 41.8959], [-87.67537, 41.8959]]}, "type": "Feature", "properties": {"num_passengers": 3801}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68081, 41.89581], [-87.68024, 41.89581]]}, "type": "Feature", "properties": {"num_passengers": 3801}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67723, 41.89587], [-87.67712, 41.89586]]}, "type": "Feature", "properties": {"num_passengers": 3801}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67834, 41.89585], [-87.67772, 41.89586]]}, "type": "Feature", "properties": {"num_passengers": 3801}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67772, 41.89586], [-87.67723, 41.89587]]}, "type": "Feature", "properties": {"num_passengers": 3801}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68212, 41.89579], [-87.682, 41.89578]]}, "type": "Feature", "properties": {"num_passengers": 3801}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58475, 41.75152], [-87.58634, 41.75152]]}, "type": "Feature", "properties": {"num_passengers": 3810}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62059, 41.71649], [-87.62054, 41.71626]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62747, 41.86569], [-87.62748, 41.86559]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6206, 41.71678], [-87.6206, 41.71662]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62755, 41.86844], [-87.62752, 41.86807]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62066, 41.71949], [-87.62065, 41.71929]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62749, 41.86641], [-87.62747, 41.86569]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6206, 41.71698], [-87.6206, 41.71678]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6206, 41.71738], [-87.6206, 41.71719]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62065, 41.72047], [-87.62066, 41.72031]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62062, 41.71825], [-87.62062, 41.71808]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62065, 41.71892], [-87.62065, 41.71876]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6206, 41.71719], [-87.6206, 41.71698]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62749, 41.86786], [-87.62748, 41.86763]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62065, 41.72148], [-87.62065, 41.72133]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62748, 41.86753], [-87.62748, 41.86726]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62063, 41.71856], [-87.62063, 41.71842]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62066, 41.71997], [-87.62066, 41.71984]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62066, 41.72031], [-87.62066, 41.7202]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6206, 41.71662], [-87.62059, 41.71649]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62065, 41.72116], [-87.62065, 41.72098]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62749, 41.86689], [-87.62749, 41.86641]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62065, 41.7186], [-87.62063, 41.71856]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62062, 41.71777], [-87.6206, 41.71757]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6206, 41.71757], [-87.6206, 41.71738]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62068, 41.72183], [-87.62065, 41.72168]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62062, 41.71794], [-87.62062, 41.71777]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62748, 41.86559], [-87.62747, 41.86515]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62748, 41.86763], [-87.62748, 41.86763]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62063, 41.71842], [-87.62062, 41.71825]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62065, 41.7191], [-87.62065, 41.71892]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62748, 41.86726], [-87.62749, 41.86689]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62752, 41.86807], [-87.62749, 41.86786]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62066, 41.7202], [-87.62066, 41.71997]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62062, 41.71808], [-87.62062, 41.71794]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68308, 41.93954], [-87.68547, 41.93952]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62748, 41.86763], [-87.62748, 41.86753]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62065, 41.72098], [-87.62065, 41.7208]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62755, 41.86899], [-87.62755, 41.86844]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62065, 41.72168], [-87.62065, 41.72148]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62066, 41.71984], [-87.62066, 41.71967]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62065, 41.71876], [-87.62065, 41.7186]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62066, 41.71967], [-87.62066, 41.71949]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62059, 41.71649], [-87.62059, 41.71649]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62065, 41.7208], [-87.62065, 41.72062]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62065, 41.71929], [-87.62065, 41.7191]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62065, 41.72133], [-87.62065, 41.72116]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62065, 41.72062], [-87.62065, 41.72047]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62757, 41.8691], [-87.62755, 41.86899]]}, "type": "Feature", "properties": {"num_passengers": 3814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62054, 41.70519], [-87.62054, 41.70493]]}, "type": "Feature", "properties": {"num_passengers": 3819}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62445, 41.88666], [-87.62445, 41.88666]]}, "type": "Feature", "properties": {"num_passengers": 3820}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62923, 41.87795], [-87.62923, 41.8781]]}, "type": "Feature", "properties": {"num_passengers": 3822}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62931, 41.88051], [-87.62931, 41.88065]]}, "type": "Feature", "properties": {"num_passengers": 3822}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62928, 41.87975], [-87.62929, 41.87988]]}, "type": "Feature", "properties": {"num_passengers": 3822}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62928, 41.87949], [-87.62928, 41.87962]]}, "type": "Feature", "properties": {"num_passengers": 3822}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62923, 41.8781], [-87.62925, 41.87832]]}, "type": "Feature", "properties": {"num_passengers": 3822}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62931, 41.88065], [-87.62931, 41.88073]]}, "type": "Feature", "properties": {"num_passengers": 3822}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62925, 41.87864], [-87.62925, 41.8788]]}, "type": "Feature", "properties": {"num_passengers": 3822}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6293, 41.8809], [-87.6293, 41.88094]]}, "type": "Feature", "properties": {"num_passengers": 3822}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62929, 41.88003], [-87.6293, 41.88016]]}, "type": "Feature", "properties": {"num_passengers": 3822}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62931, 41.88033], [-87.62931, 41.88051]]}, "type": "Feature", "properties": {"num_passengers": 3822}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62929, 41.87988], [-87.62929, 41.88003]]}, "type": "Feature", "properties": {"num_passengers": 3822}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62925, 41.87832], [-87.62925, 41.87845]]}, "type": "Feature", "properties": {"num_passengers": 3822}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62927, 41.87915], [-87.62928, 41.87934]]}, "type": "Feature", "properties": {"num_passengers": 3822}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62928, 41.87962], [-87.62928, 41.87975]]}, "type": "Feature", "properties": {"num_passengers": 3822}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62928, 41.87934], [-87.62928, 41.87949]]}, "type": "Feature", "properties": {"num_passengers": 3822}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62931, 41.88073], [-87.6293, 41.8809]]}, "type": "Feature", "properties": {"num_passengers": 3822}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62925, 41.8788], [-87.62926, 41.87899]]}, "type": "Feature", "properties": {"num_passengers": 3822}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62925, 41.87845], [-87.62925, 41.87864]]}, "type": "Feature", "properties": {"num_passengers": 3822}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62926, 41.87899], [-87.62927, 41.87915]]}, "type": "Feature", "properties": {"num_passengers": 3822}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6293, 41.88016], [-87.62931, 41.88033]]}, "type": "Feature", "properties": {"num_passengers": 3822}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69496, 41.93936], [-87.69519, 41.93936]]}, "type": "Feature", "properties": {"num_passengers": 3824}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69003, 41.93927], [-87.69022, 41.93927]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65514, 41.97933], [-87.65512, 41.97912]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65527, 41.98183], [-87.65527, 41.98177]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69275, 41.93934], [-87.69297, 41.93934]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69054, 41.93934], [-87.69074, 41.93934]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65533, 41.98332], [-87.65531, 41.98315]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6553, 41.98243], [-87.65528, 41.9823]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65511, 41.97868], [-87.65511, 41.97848]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69154, 41.93933], [-87.69182, 41.93933]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69098, 41.93934], [-87.69127, 41.93933]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68958, 41.93925], [-87.68982, 41.93925]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69229, 41.93934], [-87.69254, 41.93934]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65511, 41.97814], [-87.65511, 41.97796]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69127, 41.93933], [-87.69154, 41.93933]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65512, 41.97912], [-87.65512, 41.9789]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65519, 41.98107], [-87.65519, 41.98082]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65535, 41.98387], [-87.65535, 41.98371]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68909, 41.93924], [-87.68935, 41.93925]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65531, 41.98298], [-87.65531, 41.98281]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69022, 41.93927], [-87.69033, 41.93928]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65517, 41.9798], [-87.65514, 41.97978]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68935, 41.93925], [-87.68958, 41.93925]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65514, 41.97978], [-87.65514, 41.97965]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68888, 41.93925], [-87.68909, 41.93924]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65511, 41.97848], [-87.65511, 41.97833]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65512, 41.9789], [-87.65511, 41.97868]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65535, 41.98371], [-87.65535, 41.9836]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69446, 41.93935], [-87.69465, 41.93936]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65509, 41.97789], [-87.65507, 41.97791]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69182, 41.93933], [-87.69206, 41.93933]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65514, 41.97965], [-87.65514, 41.9795]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65514, 41.9795], [-87.65514, 41.97933]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65535, 41.98418], [-87.65535, 41.98402]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65511, 41.97796], [-87.65509, 41.97789]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69465, 41.93936], [-87.69488, 41.93936]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6553, 41.98261], [-87.6553, 41.98243]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65536, 41.98463], [-87.65536, 41.98446]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65519, 41.98127], [-87.65519, 41.98107]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65517, 41.97995], [-87.65517, 41.9798]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65531, 41.98281], [-87.6553, 41.98261]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65527, 41.98199], [-87.65527, 41.98183]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69074, 41.93934], [-87.69098, 41.93934]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65535, 41.98432], [-87.65535, 41.98418]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69424, 41.93935], [-87.69446, 41.93935]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69488, 41.93936], [-87.69496, 41.93936]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68843, 41.9395], [-87.68888, 41.93925]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65527, 41.98213], [-87.65527, 41.98199]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65519, 41.98082], [-87.65517, 41.98058]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65531, 41.98315], [-87.65531, 41.98298]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65535, 41.9836], [-87.65535, 41.98346]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65507, 41.97791], [-87.65503, 41.97637]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65527, 41.98177], [-87.65519, 41.98127]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.694, 41.93935], [-87.69424, 41.93935]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65528, 41.9823], [-87.65527, 41.98213]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65535, 41.98346], [-87.65533, 41.98332]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6931, 41.93934], [-87.69333, 41.93935]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69206, 41.93933], [-87.69229, 41.93934]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69297, 41.93934], [-87.6931, 41.93934]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65517, 41.98011], [-87.65517, 41.97995]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65535, 41.98402], [-87.65535, 41.98387]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69353, 41.93935], [-87.69376, 41.93935]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68982, 41.93925], [-87.69003, 41.93927]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69033, 41.93928], [-87.69054, 41.93934]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65517, 41.98033], [-87.65517, 41.98011]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69254, 41.93934], [-87.69275, 41.93934]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65536, 41.98446], [-87.65535, 41.98432]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65511, 41.97833], [-87.65511, 41.97814]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69333, 41.93935], [-87.69353, 41.93935]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69376, 41.93935], [-87.694, 41.93935]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65517, 41.98058], [-87.65517, 41.98033]]}, "type": "Feature", "properties": {"num_passengers": 3827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62922, 41.87685], [-87.62922, 41.87706]]}, "type": "Feature", "properties": {"num_passengers": 3833}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62922, 41.87773], [-87.62923, 41.87785]]}, "type": "Feature", "properties": {"num_passengers": 3833}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6292, 41.87638], [-87.6292, 41.87652]]}, "type": "Feature", "properties": {"num_passengers": 3833}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6292, 41.87669], [-87.62922, 41.87685]]}, "type": "Feature", "properties": {"num_passengers": 3833}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62922, 41.87721], [-87.62922, 41.87735]]}, "type": "Feature", "properties": {"num_passengers": 3833}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62922, 41.87735], [-87.62922, 41.87756]]}, "type": "Feature", "properties": {"num_passengers": 3833}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62526, 41.88213], [-87.62551, 41.88212]]}, "type": "Feature", "properties": {"num_passengers": 3833}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62922, 41.87756], [-87.62922, 41.87773]]}, "type": "Feature", "properties": {"num_passengers": 3833}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6292, 41.87622], [-87.6292, 41.87638]]}, "type": "Feature", "properties": {"num_passengers": 3833}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6292, 41.87652], [-87.6292, 41.87669]]}, "type": "Feature", "properties": {"num_passengers": 3833}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62923, 41.87785], [-87.62923, 41.87795]]}, "type": "Feature", "properties": {"num_passengers": 3833}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62922, 41.87706], [-87.62922, 41.87721]]}, "type": "Feature", "properties": {"num_passengers": 3833}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62054, 41.70496], [-87.62052, 41.70511]]}, "type": "Feature", "properties": {"num_passengers": 3835}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64575, 41.86712], [-87.64552, 41.86713]]}, "type": "Feature", "properties": {"num_passengers": 3839}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64625, 41.86711], [-87.64601, 41.86711]]}, "type": "Feature", "properties": {"num_passengers": 3839}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64601, 41.86711], [-87.64575, 41.86712]]}, "type": "Feature", "properties": {"num_passengers": 3839}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64529, 41.86713], [-87.64505, 41.86712]]}, "type": "Feature", "properties": {"num_passengers": 3839}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64552, 41.86713], [-87.64529, 41.86713]]}, "type": "Feature", "properties": {"num_passengers": 3839}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58634, 41.75152], [-87.58662, 41.75153]]}, "type": "Feature", "properties": {"num_passengers": 3844}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58651, 41.78521], [-87.58651, 41.7854]]}, "type": "Feature", "properties": {"num_passengers": 3845}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62498, 41.90501], [-87.62498, 41.90487]]}, "type": "Feature", "properties": {"num_passengers": 3849}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67472, 41.93961], [-87.67448, 41.93961]]}, "type": "Feature", "properties": {"num_passengers": 3851}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68744, 41.91516], [-87.68744, 41.91495]]}, "type": "Feature", "properties": {"num_passengers": 3851}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58857, 41.80413], [-87.58851, 41.80399]]}, "type": "Feature", "properties": {"num_passengers": 3853}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58833, 41.80355], [-87.58826, 41.8034]]}, "type": "Feature", "properties": {"num_passengers": 3853}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58821, 41.80326], [-87.58818, 41.8032]]}, "type": "Feature", "properties": {"num_passengers": 3853}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58826, 41.8034], [-87.58821, 41.80326]]}, "type": "Feature", "properties": {"num_passengers": 3853}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58851, 41.80399], [-87.58846, 41.80386]]}, "type": "Feature", "properties": {"num_passengers": 3853}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58864, 41.80429], [-87.58857, 41.80413]]}, "type": "Feature", "properties": {"num_passengers": 3853}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58846, 41.80386], [-87.5884, 41.80373]]}, "type": "Feature", "properties": {"num_passengers": 3853}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5884, 41.80373], [-87.58833, 41.80355]]}, "type": "Feature", "properties": {"num_passengers": 3853}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72384, 41.93917], [-87.7256, 41.93915]]}, "type": "Feature", "properties": {"num_passengers": 3854}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67442, 41.89599], [-87.67456, 41.89599]]}, "type": "Feature", "properties": {"num_passengers": 3857}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66953, 41.89607], [-87.66961, 41.89604]]}, "type": "Feature", "properties": {"num_passengers": 3857}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67258, 41.89603], [-87.67442, 41.89599]]}, "type": "Feature", "properties": {"num_passengers": 3857}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66761, 41.89611], [-87.66818, 41.8961]]}, "type": "Feature", "properties": {"num_passengers": 3857}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66651, 41.89612], [-87.66705, 41.89611]]}, "type": "Feature", "properties": {"num_passengers": 3857}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66961, 41.89604], [-87.67246, 41.89603]]}, "type": "Feature", "properties": {"num_passengers": 3857}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66714, 41.89612], [-87.66761, 41.89611]]}, "type": "Feature", "properties": {"num_passengers": 3857}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6468, 41.86507], [-87.64681, 41.86524]]}, "type": "Feature", "properties": {"num_passengers": 3857}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66887, 41.89609], [-87.66953, 41.89607]]}, "type": "Feature", "properties": {"num_passengers": 3857}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67246, 41.89603], [-87.67258, 41.89603]]}, "type": "Feature", "properties": {"num_passengers": 3857}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66818, 41.8961], [-87.66887, 41.89609]]}, "type": "Feature", "properties": {"num_passengers": 3857}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66705, 41.89611], [-87.66714, 41.89612]]}, "type": "Feature", "properties": {"num_passengers": 3857}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64052, 41.92544], [-87.64037, 41.9255]]}, "type": "Feature", "properties": {"num_passengers": 3860}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68749, 41.9159], [-87.68744, 41.91575]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68749, 41.916], [-87.68749, 41.9159]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68766, 41.9223], [-87.68766, 41.92213]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68752, 41.91663], [-87.68752, 41.91648]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68758, 41.91933], [-87.68758, 41.91915]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68757, 41.92084], [-87.68755, 41.92068]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68758, 41.91882], [-87.68758, 41.91867]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68745, 41.91535], [-87.68744, 41.91516]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6876, 41.91993], [-87.68758, 41.91973]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68769, 41.92392], [-87.68769, 41.92371]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68758, 41.91867], [-87.68758, 41.91853]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68766, 41.92184], [-87.68766, 41.9218]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68758, 41.91777], [-87.68757, 41.91776]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68766, 41.92248], [-87.68766, 41.9223]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68758, 41.91792], [-87.68758, 41.91777]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68758, 41.91973], [-87.68758, 41.91953]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68771, 41.92303], [-87.68769, 41.92285]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68758, 41.91915], [-87.68758, 41.91897]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68755, 41.92068], [-87.68755, 41.92049]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68761, 41.92157], [-87.68758, 41.92142]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68758, 41.92123], [-87.68757, 41.92103]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68758, 41.9201], [-87.6876, 41.91993]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68752, 41.91632], [-87.68749, 41.91617]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68769, 41.92355], [-87.68769, 41.92346]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68749, 41.91739], [-87.68753, 41.91722]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68758, 41.91953], [-87.68758, 41.91933]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68766, 41.9218], [-87.68761, 41.92157]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68758, 41.92013], [-87.68758, 41.9201]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68753, 41.91692], [-87.68752, 41.91678]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68757, 41.91824], [-87.68755, 41.91807]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68745, 41.91554], [-87.68745, 41.91535]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68744, 41.91575], [-87.68745, 41.91554]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68768, 41.92415], [-87.68769, 41.92392]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68764, 41.922], [-87.68766, 41.92184]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68755, 41.9203], [-87.68758, 41.92013]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68757, 41.92103], [-87.68757, 41.92084]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68771, 41.92334], [-87.68771, 41.92318]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68757, 41.91776], [-87.68753, 41.91758]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68758, 41.92142], [-87.68758, 41.92123]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68768, 41.92267], [-87.68766, 41.92248]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68769, 41.92285], [-87.68768, 41.92267]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68749, 41.91617], [-87.68749, 41.916]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68771, 41.92318], [-87.68771, 41.92303]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68753, 41.91722], [-87.68753, 41.91711]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68758, 41.91853], [-87.68757, 41.91837]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68769, 41.92346], [-87.68771, 41.92334]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68758, 41.91897], [-87.68758, 41.91882]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68753, 41.91758], [-87.68749, 41.91739]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63738, 41.77991], [-87.63895, 41.77988]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68766, 41.92213], [-87.68764, 41.922]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68755, 41.92049], [-87.68755, 41.9203]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68752, 41.91648], [-87.68752, 41.91632]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68752, 41.91678], [-87.68752, 41.91663]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68757, 41.91837], [-87.68757, 41.91824]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68769, 41.92371], [-87.68769, 41.92355]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68753, 41.91711], [-87.68753, 41.91692]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68755, 41.91807], [-87.68758, 41.91792]]}, "type": "Feature", "properties": {"num_passengers": 3861}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58662, 41.75153], [-87.58681, 41.75153]]}, "type": "Feature", "properties": {"num_passengers": 3865}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68559, 41.93952], [-87.68843, 41.9395]]}, "type": "Feature", "properties": {"num_passengers": 3866}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63578, 41.92488], [-87.6358, 41.92504]]}, "type": "Feature", "properties": {"num_passengers": 3866}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64479, 41.86714], [-87.64457, 41.86714]]}, "type": "Feature", "properties": {"num_passengers": 3871}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68547, 41.93952], [-87.68559, 41.93952]]}, "type": "Feature", "properties": {"num_passengers": 3878}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62006, 41.71183], [-87.62001, 41.71157]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6199, 41.71011], [-87.6199, 41.70987]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62, 41.7083], [-87.62001, 41.70811]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6199, 41.70881], [-87.61993, 41.70864]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62004, 41.70798], [-87.62006, 41.70782]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62054, 41.70537], [-87.62054, 41.70519]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62038, 41.70622], [-87.62041, 41.70604]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62044, 41.70589], [-87.62047, 41.70575]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62038, 41.71381], [-87.62038, 41.71367]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62047, 41.70575], [-87.62049, 41.70561]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62032, 41.7067], [-87.62033, 41.70655]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62032, 41.71308], [-87.62028, 41.7129]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62019, 41.71227], [-87.62014, 41.71207]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62009, 41.70766], [-87.62016, 41.70749]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62001, 41.70811], [-87.62004, 41.70798]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61989, 41.70912], [-87.6199, 41.70894]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61989, 41.71057], [-87.61989, 41.71035]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62038, 41.71367], [-87.62036, 41.71353]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62028, 41.707], [-87.62028, 41.70685]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61998, 41.71103], [-87.6199, 41.71076]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62049, 41.70561], [-87.62051, 41.70554]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62044, 41.7141], [-87.62041, 41.71397]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61993, 41.70929], [-87.61995, 41.70916]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6199, 41.70987], [-87.6199, 41.70964]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62033, 41.71328], [-87.62032, 41.71308]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62025, 41.70719], [-87.62028, 41.707]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62014, 41.71207], [-87.62006, 41.71183]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6202, 41.71244], [-87.62019, 41.71227]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62001, 41.71134], [-87.62, 41.71116]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61993, 41.70864], [-87.61997, 41.70848]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62041, 41.70604], [-87.62044, 41.70589]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62036, 41.71353], [-87.62033, 41.71328]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62033, 41.70655], [-87.62036, 41.70638]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62041, 41.71397], [-87.62038, 41.71381]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6199, 41.70964], [-87.6199, 41.70944]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6199, 41.70894], [-87.6199, 41.70881]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62019, 41.70737], [-87.62025, 41.70719]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62, 41.71116], [-87.61998, 41.71103]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62028, 41.70685], [-87.62032, 41.7067]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6199, 41.70944], [-87.61993, 41.70929]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62025, 41.71274], [-87.62024, 41.71259]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62024, 41.71259], [-87.6202, 41.71244]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61997, 41.70848], [-87.62, 41.7083]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6202, 41.71244], [-87.6202, 41.71244]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62051, 41.70554], [-87.62054, 41.70537]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62006, 41.70782], [-87.62009, 41.70766]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62016, 41.70749], [-87.62019, 41.70737]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61989, 41.71035], [-87.6199, 41.71011]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62028, 41.7129], [-87.62025, 41.71274]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6199, 41.71076], [-87.61989, 41.71057]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62036, 41.70638], [-87.62038, 41.70622]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61995, 41.70914], [-87.61989, 41.70912]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62001, 41.71157], [-87.62001, 41.71134]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61995, 41.70916], [-87.61995, 41.70914]]}, "type": "Feature", "properties": {"num_passengers": 3884}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62079, 41.69543], [-87.62079, 41.69565]]}, "type": "Feature", "properties": {"num_passengers": 3889}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71525, 41.9393], [-87.71549, 41.9393]]}, "type": "Feature", "properties": {"num_passengers": 3891}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62047, 41.71437], [-87.62044, 41.7141]]}, "type": "Feature", "properties": {"num_passengers": 3892}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.8753], [-87.62418, 41.87545]]}, "type": "Feature", "properties": {"num_passengers": 3896}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62079, 41.69565], [-87.62081, 41.69586]]}, "type": "Feature", "properties": {"num_passengers": 3900}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62994, 41.78003], [-87.63005, 41.78002]]}, "type": "Feature", "properties": {"num_passengers": 3901}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62442, 41.8857], [-87.62444, 41.88661]]}, "type": "Feature", "properties": {"num_passengers": 3907}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62446, 41.8864], [-87.62445, 41.88666]]}, "type": "Feature", "properties": {"num_passengers": 3911}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63327, 41.86724], [-87.63226, 41.86725]]}, "type": "Feature", "properties": {"num_passengers": 3911}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64505, 41.86712], [-87.64479, 41.86714]]}, "type": "Feature", "properties": {"num_passengers": 3912}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62439, 41.88476], [-87.62441, 41.88503]]}, "type": "Feature", "properties": {"num_passengers": 3916}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64049, 41.9254], [-87.64052, 41.92544]]}, "type": "Feature", "properties": {"num_passengers": 3916}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63005, 41.78002], [-87.63086, 41.78]]}, "type": "Feature", "properties": {"num_passengers": 3917}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62444, 41.88603], [-87.62446, 41.8864]]}, "type": "Feature", "properties": {"num_passengers": 3922}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66595, 41.93976], [-87.66571, 41.93977]]}, "type": "Feature", "properties": {"num_passengers": 3924}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66781, 41.93974], [-87.66759, 41.93974]]}, "type": "Feature", "properties": {"num_passengers": 3924}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67127, 41.93964], [-87.67112, 41.93963]]}, "type": "Feature", "properties": {"num_passengers": 3924}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66546, 41.93976], [-87.6652, 41.93977]]}, "type": "Feature", "properties": {"num_passengers": 3924}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67358, 41.93961], [-87.6735, 41.93961]]}, "type": "Feature", "properties": {"num_passengers": 3924}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66612, 41.93975], [-87.66595, 41.93976]]}, "type": "Feature", "properties": {"num_passengers": 3924}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66571, 41.93977], [-87.66546, 41.93976]]}, "type": "Feature", "properties": {"num_passengers": 3924}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66736, 41.93974], [-87.66716, 41.93974]]}, "type": "Feature", "properties": {"num_passengers": 3924}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66695, 41.93973], [-87.66677, 41.93973]]}, "type": "Feature", "properties": {"num_passengers": 3924}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67402, 41.93961], [-87.67382, 41.93961]]}, "type": "Feature", "properties": {"num_passengers": 3924}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6735, 41.93961], [-87.67386, 41.93961]]}, "type": "Feature", "properties": {"num_passengers": 3924}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66716, 41.93974], [-87.66695, 41.93973]]}, "type": "Feature", "properties": {"num_passengers": 3924}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67112, 41.93963], [-87.66834, 41.93968]]}, "type": "Feature", "properties": {"num_passengers": 3924}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67382, 41.93961], [-87.67358, 41.93961]]}, "type": "Feature", "properties": {"num_passengers": 3924}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67448, 41.93961], [-87.67423, 41.93961]]}, "type": "Feature", "properties": {"num_passengers": 3924}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67386, 41.93961], [-87.67127, 41.93964]]}, "type": "Feature", "properties": {"num_passengers": 3924}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66759, 41.93974], [-87.66736, 41.93974]]}, "type": "Feature", "properties": {"num_passengers": 3924}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66655, 41.93973], [-87.66643, 41.93973]]}, "type": "Feature", "properties": {"num_passengers": 3924}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66643, 41.93973], [-87.66612, 41.93975]]}, "type": "Feature", "properties": {"num_passengers": 3924}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66677, 41.93973], [-87.66655, 41.93973]]}, "type": "Feature", "properties": {"num_passengers": 3924}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67423, 41.93961], [-87.67402, 41.93961]]}, "type": "Feature", "properties": {"num_passengers": 3924}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66834, 41.93968], [-87.66781, 41.93974]]}, "type": "Feature", "properties": {"num_passengers": 3924}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7637, 41.97126], [-87.76384, 41.9714]]}, "type": "Feature", "properties": {"num_passengers": 3935}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76362, 41.97115], [-87.7637, 41.97126]]}, "type": "Feature", "properties": {"num_passengers": 3935}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76384, 41.9714], [-87.76399, 41.97156]]}, "type": "Feature", "properties": {"num_passengers": 3935}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76399, 41.97156], [-87.76416, 41.97175]]}, "type": "Feature", "properties": {"num_passengers": 3935}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76448, 41.9721], [-87.76462, 41.97226]]}, "type": "Feature", "properties": {"num_passengers": 3935}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76462, 41.97226], [-87.76476, 41.97243]]}, "type": "Feature", "properties": {"num_passengers": 3935}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76432, 41.97192], [-87.76448, 41.9721]]}, "type": "Feature", "properties": {"num_passengers": 3935}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76416, 41.97175], [-87.76432, 41.97192]]}, "type": "Feature", "properties": {"num_passengers": 3935}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76476, 41.97243], [-87.76492, 41.97259]]}, "type": "Feature", "properties": {"num_passengers": 3935}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63582, 41.9239], [-87.63582, 41.92367]]}, "type": "Feature", "properties": {"num_passengers": 3936}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63574, 41.92127], [-87.63572, 41.92107]]}, "type": "Feature", "properties": {"num_passengers": 3936}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6358, 41.92284], [-87.63578, 41.92251]]}, "type": "Feature", "properties": {"num_passengers": 3936}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63582, 41.92416], [-87.63582, 41.9239]]}, "type": "Feature", "properties": {"num_passengers": 3936}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63528, 41.91964], [-87.63513, 41.91951]]}, "type": "Feature", "properties": {"num_passengers": 3936}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6358, 41.92313], [-87.6358, 41.92284]]}, "type": "Feature", "properties": {"num_passengers": 3936}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63582, 41.92438], [-87.63582, 41.92416]]}, "type": "Feature", "properties": {"num_passengers": 3936}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63577, 41.92196], [-87.63575, 41.9218]]}, "type": "Feature", "properties": {"num_passengers": 3936}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63585, 41.92488], [-87.63584, 41.92463]]}, "type": "Feature", "properties": {"num_passengers": 3936}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63575, 41.92165], [-87.63574, 41.92145]]}, "type": "Feature", "properties": {"num_passengers": 3936}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63575, 41.9218], [-87.63575, 41.92165]]}, "type": "Feature", "properties": {"num_passengers": 3936}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63571, 41.92088], [-87.63569, 41.92073]]}, "type": "Feature", "properties": {"num_passengers": 3936}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63513, 41.91951], [-87.635, 41.91938]]}, "type": "Feature", "properties": {"num_passengers": 3936}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63569, 41.92073], [-87.63567, 41.92049]]}, "type": "Feature", "properties": {"num_passengers": 3936}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63567, 41.92049], [-87.63565, 41.92035]]}, "type": "Feature", "properties": {"num_passengers": 3936}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63582, 41.92367], [-87.6358, 41.92337]]}, "type": "Feature", "properties": {"num_passengers": 3936}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63574, 41.92145], [-87.63574, 41.92127]]}, "type": "Feature", "properties": {"num_passengers": 3936}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63576, 41.92229], [-87.63576, 41.92215]]}, "type": "Feature", "properties": {"num_passengers": 3936}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63577, 41.92207], [-87.63577, 41.92196]]}, "type": "Feature", "properties": {"num_passengers": 3936}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6358, 41.92337], [-87.6358, 41.92313]]}, "type": "Feature", "properties": {"num_passengers": 3936}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63561, 41.92015], [-87.63554, 41.92002]]}, "type": "Feature", "properties": {"num_passengers": 3936}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63584, 41.92463], [-87.63582, 41.92438]]}, "type": "Feature", "properties": {"num_passengers": 3936}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63537, 41.91974], [-87.63528, 41.91964]]}, "type": "Feature", "properties": {"num_passengers": 3936}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63576, 41.92215], [-87.63577, 41.92207]]}, "type": "Feature", "properties": {"num_passengers": 3936}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63572, 41.92107], [-87.63571, 41.92088]]}, "type": "Feature", "properties": {"num_passengers": 3936}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63576, 41.92215], [-87.63576, 41.92215]]}, "type": "Feature", "properties": {"num_passengers": 3936}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63578, 41.92251], [-87.63576, 41.92229]]}, "type": "Feature", "properties": {"num_passengers": 3936}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63554, 41.92002], [-87.63547, 41.9199]]}, "type": "Feature", "properties": {"num_passengers": 3936}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63565, 41.92035], [-87.63564, 41.92026]]}, "type": "Feature", "properties": {"num_passengers": 3936}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63564, 41.92026], [-87.63561, 41.92015]]}, "type": "Feature", "properties": {"num_passengers": 3936}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63547, 41.9199], [-87.63537, 41.91974]]}, "type": "Feature", "properties": {"num_passengers": 3936}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65919, 41.93981], [-87.65913, 41.93981]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65891, 41.93984], [-87.65862, 41.93987]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65719, 41.93991], [-87.657, 41.93989]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66236, 41.93983], [-87.66215, 41.93983]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65743, 41.93989], [-87.65719, 41.93991]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66455, 41.93977], [-87.6643, 41.93975]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65816, 41.93987], [-87.65792, 41.93989]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66296, 41.93981], [-87.66277, 41.93981]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66377, 41.93975], [-87.66358, 41.93977]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66032, 41.93985], [-87.66005, 41.93985]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6598, 41.93985], [-87.65957, 41.93984]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6643, 41.93975], [-87.6641, 41.93974]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66081, 41.93985], [-87.66059, 41.93985]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6641, 41.93974], [-87.66396, 41.93974]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.657, 41.93989], [-87.65678, 41.93989]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65841, 41.93987], [-87.65816, 41.93987]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66123, 41.93981], [-87.66102, 41.93983]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65663, 41.93989], [-87.6566, 41.93985]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66174, 41.93983], [-87.6615, 41.93983]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65913, 41.93981], [-87.65891, 41.93984]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66005, 41.93985], [-87.6598, 41.93985]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66396, 41.93974], [-87.66377, 41.93975]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66215, 41.93983], [-87.66194, 41.93983]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66336, 41.93981], [-87.66314, 41.93981]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66194, 41.93983], [-87.66174, 41.93983]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65957, 41.93984], [-87.65938, 41.93983]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6615, 41.93983], [-87.66129, 41.93981]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65768, 41.93989], [-87.65743, 41.93989]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65862, 41.93987], [-87.65841, 41.93987]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66129, 41.93981], [-87.66123, 41.93981]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66314, 41.93981], [-87.66296, 41.93981]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66358, 41.93977], [-87.66336, 41.93981]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65938, 41.93983], [-87.65919, 41.93981]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66102, 41.93983], [-87.66081, 41.93985]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65678, 41.93989], [-87.65663, 41.93989]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66059, 41.93985], [-87.66032, 41.93985]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65792, 41.93989], [-87.65768, 41.93989]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66277, 41.93981], [-87.66258, 41.93983]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66258, 41.93983], [-87.66236, 41.93983]]}, "type": "Feature", "properties": {"num_passengers": 3938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68054, 41.93958], [-87.68066, 41.93958]]}, "type": "Feature", "properties": {"num_passengers": 3942}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68295, 41.93954], [-87.68308, 41.93954]]}, "type": "Feature", "properties": {"num_passengers": 3942}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68066, 41.93958], [-87.68295, 41.93954]]}, "type": "Feature", "properties": {"num_passengers": 3942}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67875, 41.9396], [-87.68054, 41.93958]]}, "type": "Feature", "properties": {"num_passengers": 3942}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58652, 41.78591], [-87.58652, 41.78605]]}, "type": "Feature", "properties": {"num_passengers": 3949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58649, 41.78678], [-87.58651, 41.787]]}, "type": "Feature", "properties": {"num_passengers": 3949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58663, 41.79006], [-87.58664, 41.79044]]}, "type": "Feature", "properties": {"num_passengers": 3949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58661, 41.78887], [-87.58662, 41.78925]]}, "type": "Feature", "properties": {"num_passengers": 3949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58651, 41.7872], [-87.58651, 41.7874]]}, "type": "Feature", "properties": {"num_passengers": 3949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58649, 41.7862], [-87.58649, 41.78638]]}, "type": "Feature", "properties": {"num_passengers": 3949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58664, 41.79044], [-87.58665, 41.79072]]}, "type": "Feature", "properties": {"num_passengers": 3949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58652, 41.78758], [-87.58654, 41.78775]]}, "type": "Feature", "properties": {"num_passengers": 3949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5866, 41.7885], [-87.58661, 41.78887]]}, "type": "Feature", "properties": {"num_passengers": 3949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58654, 41.78796], [-87.5866, 41.78814]]}, "type": "Feature", "properties": {"num_passengers": 3949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58649, 41.78638], [-87.58649, 41.78657]]}, "type": "Feature", "properties": {"num_passengers": 3949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58662, 41.78925], [-87.58662, 41.78959]]}, "type": "Feature", "properties": {"num_passengers": 3949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58654, 41.78775], [-87.58654, 41.78792]]}, "type": "Feature", "properties": {"num_passengers": 3949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58652, 41.78605], [-87.58652, 41.78606]]}, "type": "Feature", "properties": {"num_passengers": 3949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58649, 41.78657], [-87.58649, 41.78678]]}, "type": "Feature", "properties": {"num_passengers": 3949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5866, 41.78814], [-87.5866, 41.7885]]}, "type": "Feature", "properties": {"num_passengers": 3949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58651, 41.787], [-87.58651, 41.7872]]}, "type": "Feature", "properties": {"num_passengers": 3949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58652, 41.78606], [-87.58648, 41.78605]]}, "type": "Feature", "properties": {"num_passengers": 3949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58651, 41.78576], [-87.58652, 41.78591]]}, "type": "Feature", "properties": {"num_passengers": 3949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58665, 41.79072], [-87.58666, 41.79104]]}, "type": "Feature", "properties": {"num_passengers": 3949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58662, 41.78968], [-87.58663, 41.79006]]}, "type": "Feature", "properties": {"num_passengers": 3949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58648, 41.78605], [-87.58649, 41.7862]]}, "type": "Feature", "properties": {"num_passengers": 3949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58654, 41.78792], [-87.58654, 41.78796]]}, "type": "Feature", "properties": {"num_passengers": 3949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58662, 41.78959], [-87.58662, 41.78968]]}, "type": "Feature", "properties": {"num_passengers": 3949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58666, 41.79104], [-87.58666, 41.79132]]}, "type": "Feature", "properties": {"num_passengers": 3949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58651, 41.7874], [-87.58652, 41.78758]]}, "type": "Feature", "properties": {"num_passengers": 3949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6209, 41.69972], [-87.6209, 41.69988]]}, "type": "Feature", "properties": {"num_passengers": 3950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62073, 41.70282], [-87.62071, 41.70297]]}, "type": "Feature", "properties": {"num_passengers": 3950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62087, 41.69764], [-87.62084, 41.6978]]}, "type": "Feature", "properties": {"num_passengers": 3950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62081, 41.69641], [-87.62082, 41.69652]]}, "type": "Feature", "properties": {"num_passengers": 3950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62076, 41.70231], [-87.62076, 41.70247]]}, "type": "Feature", "properties": {"num_passengers": 3950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6209, 41.69988], [-87.6209, 41.70011]]}, "type": "Feature", "properties": {"num_passengers": 3950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62071, 41.70297], [-87.6207, 41.70317]]}, "type": "Feature", "properties": {"num_passengers": 3950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62079, 41.70198], [-87.62078, 41.70214]]}, "type": "Feature", "properties": {"num_passengers": 3950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62057, 41.70461], [-87.62057, 41.70477]]}, "type": "Feature", "properties": {"num_passengers": 3950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6206, 41.70398], [-87.6206, 41.70415]]}, "type": "Feature", "properties": {"num_passengers": 3950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62062, 41.7038], [-87.6206, 41.70398]]}, "type": "Feature", "properties": {"num_passengers": 3950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62084, 41.69667], [-87.62087, 41.69684]]}, "type": "Feature", "properties": {"num_passengers": 3950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62081, 41.69622], [-87.62081, 41.69641]]}, "type": "Feature", "properties": {"num_passengers": 3950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62076, 41.70163], [-87.62079, 41.70178]]}, "type": "Feature", "properties": {"num_passengers": 3950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62057, 41.70445], [-87.62057, 41.70461]]}, "type": "Feature", "properties": {"num_passengers": 3950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62084, 41.69811], [-87.6209, 41.69972]]}, "type": "Feature", "properties": {"num_passengers": 3950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62079, 41.70178], [-87.62079, 41.70198]]}, "type": "Feature", "properties": {"num_passengers": 3950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62057, 41.70477], [-87.62054, 41.70496]]}, "type": "Feature", "properties": {"num_passengers": 3950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62065, 41.70332], [-87.62065, 41.70344]]}, "type": "Feature", "properties": {"num_passengers": 3950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62081, 41.69607], [-87.62081, 41.69622]]}, "type": "Feature", "properties": {"num_passengers": 3950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6209, 41.70011], [-87.62076, 41.70163]]}, "type": "Feature", "properties": {"num_passengers": 3950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62082, 41.69652], [-87.62084, 41.69667]]}, "type": "Feature", "properties": {"num_passengers": 3950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6206, 41.70415], [-87.62057, 41.7043]]}, "type": "Feature", "properties": {"num_passengers": 3950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62078, 41.70214], [-87.62076, 41.70231]]}, "type": "Feature", "properties": {"num_passengers": 3950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62084, 41.69791], [-87.62084, 41.69811]]}, "type": "Feature", "properties": {"num_passengers": 3950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62065, 41.70344], [-87.62063, 41.70359]]}, "type": "Feature", "properties": {"num_passengers": 3950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62084, 41.6978], [-87.62084, 41.69791]]}, "type": "Feature", "properties": {"num_passengers": 3950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62087, 41.69705], [-87.62087, 41.69725]]}, "type": "Feature", "properties": {"num_passengers": 3950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62074, 41.70265], [-87.62073, 41.70282]]}, "type": "Feature", "properties": {"num_passengers": 3950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62057, 41.7043], [-87.62057, 41.70445]]}, "type": "Feature", "properties": {"num_passengers": 3950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62063, 41.70359], [-87.62062, 41.7038]]}, "type": "Feature", "properties": {"num_passengers": 3950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62076, 41.70247], [-87.62074, 41.70265]]}, "type": "Feature", "properties": {"num_passengers": 3950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62087, 41.69725], [-87.62089, 41.69745]]}, "type": "Feature", "properties": {"num_passengers": 3950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62089, 41.69745], [-87.62087, 41.69764]]}, "type": "Feature", "properties": {"num_passengers": 3950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62087, 41.69684], [-87.62087, 41.69705]]}, "type": "Feature", "properties": {"num_passengers": 3950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6207, 41.70317], [-87.62065, 41.70332]]}, "type": "Feature", "properties": {"num_passengers": 3950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62081, 41.69586], [-87.62081, 41.69607]]}, "type": "Feature", "properties": {"num_passengers": 3950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76492, 41.97259], [-87.76505, 41.97273]]}, "type": "Feature", "properties": {"num_passengers": 3951}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58681, 41.75153], [-87.5871, 41.75152]]}, "type": "Feature", "properties": {"num_passengers": 3957}}, {"geometry": {"type": "LineString", "coordinates": [[-87.625, 41.89675], [-87.62559, 41.89674]]}, "type": "Feature", "properties": {"num_passengers": 3963}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62441, 41.88569], [-87.62444, 41.88603]]}, "type": "Feature", "properties": {"num_passengers": 3966}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67537, 41.8959], [-87.6748, 41.89591]]}, "type": "Feature", "properties": {"num_passengers": 3969}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58651, 41.78559], [-87.58651, 41.78576]]}, "type": "Feature", "properties": {"num_passengers": 3972}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62661, 41.8675], [-87.62674, 41.8675]]}, "type": "Feature", "properties": {"num_passengers": 3975}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63228, 41.88059], [-87.63229, 41.88082]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63237, 41.88461], [-87.63235, 41.88478]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63224, 41.87916], [-87.63224, 41.87932]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63232, 41.8824], [-87.63233, 41.8826]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63236, 41.883], [-87.63234, 41.88326]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63368, 41.87809], [-87.63319, 41.8781]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63417, 41.87809], [-87.63368, 41.87809]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63232, 41.88221], [-87.63232, 41.8824]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63223, 41.87869], [-87.63223, 41.87879]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6323, 41.88123], [-87.6323, 41.88142]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63237, 41.88441], [-87.63237, 41.88461]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63229, 41.88082], [-87.6323, 41.88104]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63227, 41.88004], [-87.63227, 41.88022]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63227, 41.87985], [-87.63227, 41.88004]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63222, 41.87842], [-87.63223, 41.87869]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63267, 41.8781], [-87.6322, 41.87811]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63235, 41.88345], [-87.63236, 41.88364]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63236, 41.88395], [-87.63236, 41.88411]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63223, 41.87895], [-87.63224, 41.87916]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63227, 41.88022], [-87.63228, 41.88042]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63236, 41.88411], [-87.63237, 41.88427]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63319, 41.8781], [-87.63267, 41.8781]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63236, 41.88364], [-87.63236, 41.88381]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63231, 41.8819], [-87.6323, 41.88205]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63231, 41.8818], [-87.63231, 41.8819]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63234, 41.88326], [-87.63235, 41.88345]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63237, 41.88427], [-87.63237, 41.88441]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63225, 41.87951], [-87.63226, 41.87967]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6322, 41.87811], [-87.63222, 41.87842]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6323, 41.88142], [-87.6323, 41.88157]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6323, 41.88205], [-87.63232, 41.88221]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63236, 41.88381], [-87.63236, 41.88395]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6323, 41.88104], [-87.6323, 41.88123]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6323, 41.88157], [-87.63231, 41.88171]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63231, 41.88171], [-87.63231, 41.8818]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63235, 41.8828], [-87.63236, 41.883]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63235, 41.88478], [-87.63234, 41.88496]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63223, 41.87879], [-87.63223, 41.87895]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63224, 41.87932], [-87.63225, 41.87951]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63228, 41.88042], [-87.63228, 41.88059]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63226, 41.87967], [-87.63227, 41.87985]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63233, 41.8826], [-87.63235, 41.8828]]}, "type": "Feature", "properties": {"num_passengers": 3978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63943, 41.93534], [-87.63939, 41.93424]]}, "type": "Feature", "properties": {"num_passengers": 3981}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63495, 41.77994], [-87.6373, 41.77991]]}, "type": "Feature", "properties": {"num_passengers": 3984}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6373, 41.77991], [-87.63738, 41.77991]]}, "type": "Feature", "properties": {"num_passengers": 3986}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62441, 41.88503], [-87.6244, 41.88536]]}, "type": "Feature", "properties": {"num_passengers": 3991}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58651, 41.7854], [-87.58651, 41.78559]]}, "type": "Feature", "properties": {"num_passengers": 3992}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71505, 41.9393], [-87.71525, 41.9393]]}, "type": "Feature", "properties": {"num_passengers": 3994}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65515, 41.98381], [-87.65516, 41.98398]]}, "type": "Feature", "properties": {"num_passengers": 3997}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65509, 41.9802], [-87.6551, 41.98167]]}, "type": "Feature", "properties": {"num_passengers": 3997}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65514, 41.98339], [-87.65514, 41.98354]]}, "type": "Feature", "properties": {"num_passengers": 3997}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65516, 41.98398], [-87.65517, 41.98413]]}, "type": "Feature", "properties": {"num_passengers": 3997}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65511, 41.982], [-87.65511, 41.98213]]}, "type": "Feature", "properties": {"num_passengers": 3997}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65514, 41.98363], [-87.65515, 41.98381]]}, "type": "Feature", "properties": {"num_passengers": 3997}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65517, 41.98431], [-87.65517, 41.98451]]}, "type": "Feature", "properties": {"num_passengers": 3997}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65517, 41.98413], [-87.65517, 41.98431]]}, "type": "Feature", "properties": {"num_passengers": 3997}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65512, 41.98271], [-87.65513, 41.98285]]}, "type": "Feature", "properties": {"num_passengers": 3997}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65517, 41.98451], [-87.65517, 41.98466]]}, "type": "Feature", "properties": {"num_passengers": 3997}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65511, 41.98227], [-87.65511, 41.98242]]}, "type": "Feature", "properties": {"num_passengers": 3997}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65511, 41.98242], [-87.65512, 41.98257]]}, "type": "Feature", "properties": {"num_passengers": 3997}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6551, 41.98186], [-87.65511, 41.982]]}, "type": "Feature", "properties": {"num_passengers": 3997}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65511, 41.98213], [-87.65511, 41.98227]]}, "type": "Feature", "properties": {"num_passengers": 3997}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65518, 41.9848], [-87.65519, 41.98495]]}, "type": "Feature", "properties": {"num_passengers": 3997}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65517, 41.98466], [-87.65518, 41.9848]]}, "type": "Feature", "properties": {"num_passengers": 3997}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6551, 41.98167], [-87.6551, 41.98186]]}, "type": "Feature", "properties": {"num_passengers": 3997}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65513, 41.98301], [-87.65513, 41.98319]]}, "type": "Feature", "properties": {"num_passengers": 3997}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65512, 41.98257], [-87.65512, 41.98271]]}, "type": "Feature", "properties": {"num_passengers": 3997}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65513, 41.98285], [-87.65513, 41.98301]]}, "type": "Feature", "properties": {"num_passengers": 3997}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65514, 41.98354], [-87.65514, 41.98363]]}, "type": "Feature", "properties": {"num_passengers": 3997}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65513, 41.98319], [-87.65514, 41.98339]]}, "type": "Feature", "properties": {"num_passengers": 3997}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6652, 41.93977], [-87.66498, 41.93977]]}, "type": "Feature", "properties": {"num_passengers": 4000}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62444, 41.88661], [-87.62444, 41.88679]]}, "type": "Feature", "properties": {"num_passengers": 4001}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6244, 41.88536], [-87.62441, 41.88569]]}, "type": "Feature", "properties": {"num_passengers": 4001}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63191, 41.77999], [-87.63201, 41.77999]]}, "type": "Feature", "properties": {"num_passengers": 4003}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6334, 41.77996], [-87.6335, 41.77996]]}, "type": "Feature", "properties": {"num_passengers": 4003}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63086, 41.78], [-87.63097, 41.78]]}, "type": "Feature", "properties": {"num_passengers": 4003}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63097, 41.78], [-87.63191, 41.77999]]}, "type": "Feature", "properties": {"num_passengers": 4003}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63485, 41.77994], [-87.63495, 41.77994]]}, "type": "Feature", "properties": {"num_passengers": 4003}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6335, 41.77996], [-87.63485, 41.77994]]}, "type": "Feature", "properties": {"num_passengers": 4003}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6334, 41.77996], [-87.6334, 41.77996]]}, "type": "Feature", "properties": {"num_passengers": 4003}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63201, 41.77999], [-87.6334, 41.77996]]}, "type": "Feature", "properties": {"num_passengers": 4003}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5907, 41.75147], [-87.59096, 41.75147]]}, "type": "Feature", "properties": {"num_passengers": 4007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59425, 41.75143], [-87.59447, 41.75144]]}, "type": "Feature", "properties": {"num_passengers": 4007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58865, 41.75152], [-87.58884, 41.75149]]}, "type": "Feature", "properties": {"num_passengers": 4007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59263, 41.75146], [-87.59283, 41.75146]]}, "type": "Feature", "properties": {"num_passengers": 4007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59383, 41.75142], [-87.59404, 41.75142]]}, "type": "Feature", "properties": {"num_passengers": 4007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58835, 41.75149], [-87.58854, 41.7515]]}, "type": "Feature", "properties": {"num_passengers": 4007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58884, 41.75149], [-87.58913, 41.75147]]}, "type": "Feature", "properties": {"num_passengers": 4007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58962, 41.75145], [-87.58986, 41.75145]]}, "type": "Feature", "properties": {"num_passengers": 4007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59159, 41.75146], [-87.59172, 41.75146]]}, "type": "Feature", "properties": {"num_passengers": 4007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5871, 41.75152], [-87.58741, 41.75152]]}, "type": "Feature", "properties": {"num_passengers": 4007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59172, 41.75146], [-87.59198, 41.75146]]}, "type": "Feature", "properties": {"num_passengers": 4007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59293, 41.75146], [-87.59315, 41.75145]]}, "type": "Feature", "properties": {"num_passengers": 4007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58986, 41.75145], [-87.59012, 41.75146]]}, "type": "Feature", "properties": {"num_passengers": 4007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59032, 41.75147], [-87.5905, 41.75147]]}, "type": "Feature", "properties": {"num_passengers": 4007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5907, 41.75147], [-87.5907, 41.75147]]}, "type": "Feature", "properties": {"num_passengers": 4007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59217, 41.75146], [-87.59239, 41.75146]]}, "type": "Feature", "properties": {"num_passengers": 4007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59283, 41.75146], [-87.59293, 41.75146]]}, "type": "Feature", "properties": {"num_passengers": 4007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59404, 41.75142], [-87.59425, 41.75143]]}, "type": "Feature", "properties": {"num_passengers": 4007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59447, 41.75144], [-87.59469, 41.75144]]}, "type": "Feature", "properties": {"num_passengers": 4007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58913, 41.75147], [-87.58937, 41.75146]]}, "type": "Feature", "properties": {"num_passengers": 4007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59315, 41.75145], [-87.59336, 41.75144]]}, "type": "Feature", "properties": {"num_passengers": 4007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5905, 41.75147], [-87.5907, 41.75147]]}, "type": "Feature", "properties": {"num_passengers": 4007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58741, 41.75152], [-87.58775, 41.75152]]}, "type": "Feature", "properties": {"num_passengers": 4007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58807, 41.75152], [-87.58835, 41.75149]]}, "type": "Feature", "properties": {"num_passengers": 4007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58854, 41.7515], [-87.58865, 41.75152]]}, "type": "Feature", "properties": {"num_passengers": 4007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59198, 41.75146], [-87.59217, 41.75146]]}, "type": "Feature", "properties": {"num_passengers": 4007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59116, 41.75147], [-87.59136, 41.75146]]}, "type": "Feature", "properties": {"num_passengers": 4007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58775, 41.75152], [-87.58807, 41.75152]]}, "type": "Feature", "properties": {"num_passengers": 4007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59358, 41.75143], [-87.59383, 41.75142]]}, "type": "Feature", "properties": {"num_passengers": 4007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59239, 41.75146], [-87.59263, 41.75146]]}, "type": "Feature", "properties": {"num_passengers": 4007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59469, 41.75144], [-87.59488, 41.75144]]}, "type": "Feature", "properties": {"num_passengers": 4007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59336, 41.75144], [-87.59358, 41.75143]]}, "type": "Feature", "properties": {"num_passengers": 4007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59012, 41.75146], [-87.59032, 41.75147]]}, "type": "Feature", "properties": {"num_passengers": 4007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58937, 41.75146], [-87.58962, 41.75145]]}, "type": "Feature", "properties": {"num_passengers": 4007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59136, 41.75146], [-87.59159, 41.75146]]}, "type": "Feature", "properties": {"num_passengers": 4007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59096, 41.75147], [-87.59116, 41.75147]]}, "type": "Feature", "properties": {"num_passengers": 4007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5895, 41.80616], [-87.58942, 41.80602]]}, "type": "Feature", "properties": {"num_passengers": 4009}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59043, 41.80762], [-87.59031, 41.80747]]}, "type": "Feature", "properties": {"num_passengers": 4009}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58997, 41.80697], [-87.58986, 41.80682]]}, "type": "Feature", "properties": {"num_passengers": 4009}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5905, 41.80772], [-87.59056, 41.80775]]}, "type": "Feature", "properties": {"num_passengers": 4009}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59018, 41.8073], [-87.59007, 41.80713]]}, "type": "Feature", "properties": {"num_passengers": 4009}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59007, 41.80713], [-87.58997, 41.80697]]}, "type": "Feature", "properties": {"num_passengers": 4009}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58934, 41.80588], [-87.58929, 41.80561]]}, "type": "Feature", "properties": {"num_passengers": 4009}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58959, 41.80631], [-87.5895, 41.80616]]}, "type": "Feature", "properties": {"num_passengers": 4009}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59056, 41.80775], [-87.59043, 41.80762]]}, "type": "Feature", "properties": {"num_passengers": 4009}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59031, 41.80747], [-87.59018, 41.8073]]}, "type": "Feature", "properties": {"num_passengers": 4009}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58986, 41.80682], [-87.58977, 41.80666]]}, "type": "Feature", "properties": {"num_passengers": 4009}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58967, 41.8065], [-87.58959, 41.80631]]}, "type": "Feature", "properties": {"num_passengers": 4009}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58977, 41.80666], [-87.58967, 41.8065]]}, "type": "Feature", "properties": {"num_passengers": 4009}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58942, 41.80602], [-87.58934, 41.80588]]}, "type": "Feature", "properties": {"num_passengers": 4009}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58921, 41.80547], [-87.58916, 41.80531]]}, "type": "Feature", "properties": {"num_passengers": 4009}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58929, 41.80561], [-87.58921, 41.80547]]}, "type": "Feature", "properties": {"num_passengers": 4009}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58934, 41.80588], [-87.58934, 41.80588]]}, "type": "Feature", "properties": {"num_passengers": 4009}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58916, 41.80531], [-87.58905, 41.80513]]}, "type": "Feature", "properties": {"num_passengers": 4009}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65531, 41.75056], [-87.65551, 41.75056]]}, "type": "Feature", "properties": {"num_passengers": 4013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6268, 41.88728], [-87.62694, 41.88722]]}, "type": "Feature", "properties": {"num_passengers": 4014}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6271, 41.88715], [-87.6273, 41.88708]]}, "type": "Feature", "properties": {"num_passengers": 4014}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62645, 41.88742], [-87.62661, 41.88733]]}, "type": "Feature", "properties": {"num_passengers": 4014}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62801, 41.88603], [-87.628, 41.88589]]}, "type": "Feature", "properties": {"num_passengers": 4014}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62801, 41.88637], [-87.62801, 41.88619]]}, "type": "Feature", "properties": {"num_passengers": 4014}}, {"geometry": {"type": "LineString", "coordinates": [[-87.628, 41.88588], [-87.62802, 41.88581]]}, "type": "Feature", "properties": {"num_passengers": 4014}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6273, 41.88708], [-87.62751, 41.887]]}, "type": "Feature", "properties": {"num_passengers": 4014}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62791, 41.88683], [-87.62802, 41.88671]]}, "type": "Feature", "properties": {"num_passengers": 4014}}, {"geometry": {"type": "LineString", "coordinates": [[-87.628, 41.88589], [-87.628, 41.88588]]}, "type": "Feature", "properties": {"num_passengers": 4014}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62802, 41.88671], [-87.62803, 41.88656]]}, "type": "Feature", "properties": {"num_passengers": 4014}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62694, 41.88722], [-87.6271, 41.88715]]}, "type": "Feature", "properties": {"num_passengers": 4014}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62751, 41.887], [-87.62791, 41.88683]]}, "type": "Feature", "properties": {"num_passengers": 4014}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62661, 41.88733], [-87.6268, 41.88728]]}, "type": "Feature", "properties": {"num_passengers": 4014}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62803, 41.88656], [-87.62801, 41.88637]]}, "type": "Feature", "properties": {"num_passengers": 4014}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62801, 41.88619], [-87.62801, 41.88603]]}, "type": "Feature", "properties": {"num_passengers": 4014}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62632, 41.88749], [-87.62645, 41.88742]]}, "type": "Feature", "properties": {"num_passengers": 4014}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63302, 41.89656], [-87.63284, 41.89659]]}, "type": "Feature", "properties": {"num_passengers": 4015}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63993, 41.94236], [-87.63993, 41.94236]]}, "type": "Feature", "properties": {"num_passengers": 4025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63954, 41.94121], [-87.63955, 41.94135]]}, "type": "Feature", "properties": {"num_passengers": 4025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63993, 41.94236], [-87.63998, 41.94246]]}, "type": "Feature", "properties": {"num_passengers": 4025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63954, 41.94105], [-87.63954, 41.94121]]}, "type": "Feature", "properties": {"num_passengers": 4025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63961, 41.94156], [-87.63969, 41.94176]]}, "type": "Feature", "properties": {"num_passengers": 4025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63952, 41.94042], [-87.63952, 41.94058]]}, "type": "Feature", "properties": {"num_passengers": 4025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63952, 41.94058], [-87.63954, 41.94075]]}, "type": "Feature", "properties": {"num_passengers": 4025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63954, 41.94075], [-87.63954, 41.94091]]}, "type": "Feature", "properties": {"num_passengers": 4025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63975, 41.94196], [-87.63983, 41.94217]]}, "type": "Feature", "properties": {"num_passengers": 4025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63983, 41.94217], [-87.63993, 41.94236]]}, "type": "Feature", "properties": {"num_passengers": 4025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63954, 41.94091], [-87.63954, 41.94105]]}, "type": "Feature", "properties": {"num_passengers": 4025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63969, 41.94176], [-87.63975, 41.94196]]}, "type": "Feature", "properties": {"num_passengers": 4025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63955, 41.94135], [-87.63961, 41.94156]]}, "type": "Feature", "properties": {"num_passengers": 4025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63192, 41.93164], [-87.63191, 41.93186]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6319, 41.93292], [-87.63191, 41.93312]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6246, 41.90524], [-87.62466, 41.90546]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63123, 41.92638], [-87.63129, 41.92659]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62906, 41.91909], [-87.62913, 41.91932]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63006, 41.9227], [-87.63013, 41.92291]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62984, 41.92204], [-87.62991, 41.92226]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63077, 41.9249], [-87.63084, 41.92513]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63055, 41.92423], [-87.63062, 41.92446]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63428, 41.93718], [-87.63448, 41.93734]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62753, 41.91553], [-87.62765, 41.91575]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6319, 41.93272], [-87.6319, 41.93292]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63243, 41.93498], [-87.63254, 41.93519]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63069, 41.92468], [-87.63077, 41.9249]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.626, 41.91223], [-87.62608, 41.91244]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63194, 41.93097], [-87.63193, 41.93119]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62969, 41.92159], [-87.62977, 41.92181]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62643, 41.91339], [-87.62654, 41.91359]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62466, 41.90546], [-87.62473, 41.90567]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62543, 41.90836], [-87.6255, 41.90857]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62698, 41.91444], [-87.62708, 41.91466]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62473, 41.90567], [-87.62479, 41.9059]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6315, 41.92724], [-87.63157, 41.92746]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62406, 41.90086], [-87.62402, 41.90102]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63194, 41.93029], [-87.63194, 41.93052]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63171, 41.9279], [-87.63177, 41.92812]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62396, 41.90345], [-87.62405, 41.90363]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63193, 41.92921], [-87.63194, 41.92943]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6243, 41.90415], [-87.62437, 41.90434]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63194, 41.93074], [-87.63194, 41.93097]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62369, 41.90265], [-87.62371, 41.90281]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63157, 41.92746], [-87.63164, 41.92768]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63194, 41.93333], [-87.63197, 41.93353]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62809, 41.91663], [-87.62817, 41.91682]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62686, 41.91423], [-87.62698, 41.91444]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62405, 41.89862], [-87.62406, 41.89877]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62798, 41.9164], [-87.62809, 41.91663]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63164, 41.92768], [-87.63171, 41.9279]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62388, 41.90329], [-87.62396, 41.90345]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62406, 41.89923], [-87.62408, 41.89938]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6302, 41.92313], [-87.63027, 41.92335]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62838, 41.91727], [-87.62848, 41.91749]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63191, 41.92899], [-87.63193, 41.92921]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62948, 41.9207], [-87.62953, 41.92093]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63048, 41.92401], [-87.63055, 41.92423]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6332, 41.93615], [-87.63335, 41.93633]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62516, 41.90723], [-87.62522, 41.90746]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62577, 41.91041], [-87.62579, 41.91064]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6238, 41.90313], [-87.62388, 41.90329]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62381, 41.9018], [-87.62377, 41.90196]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6272, 41.91488], [-87.6273, 41.91509]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63091, 41.92534], [-87.63098, 41.92556]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62537, 41.90813], [-87.62543, 41.90836]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62633, 41.91318], [-87.62643, 41.91339]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63369, 41.93668], [-87.63388, 41.93685]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6304, 41.92379], [-87.63048, 41.92401]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62883, 41.9184], [-87.62891, 41.91862]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63352, 41.9365], [-87.63369, 41.93668]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62675, 41.91401], [-87.62686, 41.91423]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6319, 41.93251], [-87.6319, 41.93272]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63448, 41.93734], [-87.63469, 41.93749]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62408, 41.90008], [-87.62409, 41.90031]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6237, 41.9023], [-87.62368, 41.90247]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63084, 41.92513], [-87.63091, 41.92534]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62373, 41.90213], [-87.6237, 41.9023]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62899, 41.91885], [-87.62906, 41.91909]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62386, 41.90164], [-87.62381, 41.9018]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62375, 41.90297], [-87.6238, 41.90313]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62532, 41.90791], [-87.62537, 41.90813]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62405, 41.89892], [-87.62405, 41.89907]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62828, 41.91705], [-87.62838, 41.91727]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62608, 41.91244], [-87.62601, 41.91257]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62765, 41.91575], [-87.62775, 41.91597]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63103, 41.92575], [-87.6311, 41.92596]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62044, 41.71554], [-87.62044, 41.71576]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62575, 41.90994], [-87.62576, 41.91018]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62959, 41.92116], [-87.62962, 41.92136]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6321, 41.93416], [-87.63216, 41.93435]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63306, 41.93597], [-87.6332, 41.93615]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63335, 41.93633], [-87.63352, 41.9365]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62579, 41.91064], [-87.62579, 41.91088]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63116, 41.92617], [-87.63123, 41.92638]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62937, 41.92024], [-87.62943, 41.92047]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63194, 41.93007], [-87.63194, 41.93029]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62492, 41.90633], [-87.62498, 41.90656]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63027, 41.92335], [-87.63033, 41.92357]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62451, 41.90474], [-87.62457, 41.90493]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63062, 41.92446], [-87.63069, 41.92468]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62573, 41.90971], [-87.62575, 41.90994]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63254, 41.93519], [-87.63265, 41.93539]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63197, 41.93353], [-87.632, 41.93374]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63013, 41.92291], [-87.6302, 41.92313]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6257, 41.90948], [-87.62573, 41.90971]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62464, 41.90514], [-87.6246, 41.90524]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62457, 41.90493], [-87.62464, 41.90514]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63194, 41.92988], [-87.63194, 41.93007]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62622, 41.91298], [-87.62633, 41.91318]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63408, 41.93702], [-87.63428, 41.93718]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63193, 41.93142], [-87.63192, 41.93164]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63136, 41.92681], [-87.63143, 41.92702]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62848, 41.91749], [-87.62857, 41.91771]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62563, 41.90902], [-87.62567, 41.90925]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62505, 41.90678], [-87.62511, 41.90701]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62403, 41.8981], [-87.62404, 41.89828]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63193, 41.93119], [-87.63193, 41.93142]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62368, 41.90247], [-87.62369, 41.90265]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63224, 41.93456], [-87.63233, 41.93477]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63278, 41.93559], [-87.63292, 41.93578]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62601, 41.91257], [-87.62612, 41.91278]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62408, 41.90053], [-87.62407, 41.90069]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62579, 41.91088], [-87.6258, 41.91111]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62405, 41.90363], [-87.62414, 41.9038]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62437, 41.90434], [-87.62444, 41.90453]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62953, 41.92093], [-87.62959, 41.92116]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62404, 41.89828], [-87.62404, 41.89844]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63191, 41.93312], [-87.63194, 41.93333]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62913, 41.91932], [-87.6292, 41.91954]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62522, 41.90746], [-87.62528, 41.90768]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63143, 41.92702], [-87.6315, 41.92724]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62775, 41.91597], [-87.62787, 41.91618]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63186, 41.92855], [-87.63189, 41.92877]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62926, 41.91978], [-87.62932, 41.92001]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62589, 41.91179], [-87.62594, 41.91201]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62408, 41.89938], [-87.62406, 41.8999]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62665, 41.9138], [-87.62675, 41.91401]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62891, 41.91862], [-87.62899, 41.91885]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6292, 41.91954], [-87.62926, 41.91978]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62817, 41.91682], [-87.62828, 41.91705]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62422, 41.90397], [-87.6243, 41.90415]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62399, 41.89799], [-87.62403, 41.8981]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6255, 41.90857], [-87.62557, 41.90879]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63098, 41.92556], [-87.63103, 41.92575]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62414, 41.9038], [-87.62422, 41.90397]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63205, 41.93394], [-87.6321, 41.93416]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62389, 41.9015], [-87.62386, 41.90164]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.90102], [-87.62396, 41.90123]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62557, 41.90879], [-87.62563, 41.90902]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62396, 41.90123], [-87.62389, 41.9015]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62371, 41.90281], [-87.62375, 41.90297]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62866, 41.91794], [-87.62875, 41.91817]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63292, 41.93578], [-87.63306, 41.93597]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63177, 41.92812], [-87.63181, 41.92834]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63033, 41.92357], [-87.6304, 41.92379]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63181, 41.92834], [-87.63186, 41.92855]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6258, 41.91111], [-87.62582, 41.91134]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62582, 41.91134], [-87.62585, 41.91156]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62405, 41.89907], [-87.62406, 41.89923]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62875, 41.91817], [-87.62883, 41.9184]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63191, 41.93208], [-87.6319, 41.9323]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62406, 41.89877], [-87.62405, 41.89892]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62742, 41.91531], [-87.62753, 41.91553]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63265, 41.93539], [-87.63278, 41.93559]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62654, 41.91359], [-87.62665, 41.9138]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62404, 41.89844], [-87.62405, 41.89862]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62576, 41.91018], [-87.62577, 41.91041]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62932, 41.92001], [-87.62937, 41.92024]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62377, 41.90196], [-87.62373, 41.90213]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62594, 41.91201], [-87.626, 41.91223]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63216, 41.93435], [-87.63224, 41.93456]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62479, 41.9059], [-87.62486, 41.90612]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62857, 41.91771], [-87.62866, 41.91794]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.632, 41.93374], [-87.63205, 41.93394]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63194, 41.92943], [-87.63194, 41.92965]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62991, 41.92226], [-87.62999, 41.92248]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62943, 41.92047], [-87.62948, 41.9207]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63191, 41.93186], [-87.63191, 41.93208]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63129, 41.92659], [-87.63136, 41.92681]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62409, 41.90031], [-87.62408, 41.90053]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63388, 41.93685], [-87.63408, 41.93702]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62708, 41.91466], [-87.6272, 41.91488]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63189, 41.92877], [-87.63191, 41.92899]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62407, 41.90069], [-87.62406, 41.90086]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62528, 41.90768], [-87.62532, 41.90791]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62787, 41.91618], [-87.62798, 41.9164]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63233, 41.93477], [-87.63243, 41.93498]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62999, 41.92248], [-87.63006, 41.9227]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6311, 41.92596], [-87.63116, 41.92617]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62406, 41.8999], [-87.62408, 41.90008]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63194, 41.92965], [-87.63194, 41.92988]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62444, 41.90453], [-87.62451, 41.90474]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62567, 41.90925], [-87.6257, 41.90948]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62511, 41.90701], [-87.62516, 41.90723]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62977, 41.92181], [-87.62984, 41.92204]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62498, 41.90656], [-87.62505, 41.90678]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62612, 41.91278], [-87.62622, 41.91298]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63194, 41.93052], [-87.63194, 41.93074]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6319, 41.9323], [-87.6319, 41.93251]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6273, 41.91509], [-87.62742, 41.91531]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62585, 41.91156], [-87.62589, 41.91179]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62962, 41.92136], [-87.62969, 41.92159]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63469, 41.93749], [-87.6349, 41.93763]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62486, 41.90612], [-87.62492, 41.90633]]}, "type": "Feature", "properties": {"num_passengers": 4030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6274, 41.8692], [-87.6274, 41.86934]]}, "type": "Feature", "properties": {"num_passengers": 4041}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6274, 41.86934], [-87.62739, 41.86955]]}, "type": "Feature", "properties": {"num_passengers": 4041}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62741, 41.86995], [-87.62741, 41.87016]]}, "type": "Feature", "properties": {"num_passengers": 4041}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62741, 41.86976], [-87.62741, 41.86995]]}, "type": "Feature", "properties": {"num_passengers": 4041}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62741, 41.87016], [-87.62743, 41.87037]]}, "type": "Feature", "properties": {"num_passengers": 4041}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62739, 41.86955], [-87.62741, 41.86976]]}, "type": "Feature", "properties": {"num_passengers": 4041}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70561, 41.93938], [-87.70583, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 4044}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66474, 41.93977], [-87.66455, 41.93977]]}, "type": "Feature", "properties": {"num_passengers": 4045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64923, 41.97493], [-87.64926, 41.97512]]}, "type": "Feature", "properties": {"num_passengers": 4047}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66498, 41.93977], [-87.66474, 41.93977]]}, "type": "Feature", "properties": {"num_passengers": 4050}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71487, 41.93929], [-87.71505, 41.9393]]}, "type": "Feature", "properties": {"num_passengers": 4066}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67866, 41.9396], [-87.67875, 41.9396]]}, "type": "Feature", "properties": {"num_passengers": 4078}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.8751], [-87.62418, 41.8753]]}, "type": "Feature", "properties": {"num_passengers": 4082}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76505, 41.97273], [-87.76513, 41.97282]]}, "type": "Feature", "properties": {"num_passengers": 4092}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62674, 41.8675], [-87.62779, 41.86749]]}, "type": "Feature", "properties": {"num_passengers": 4097}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63571, 41.92247], [-87.6357, 41.92265]]}, "type": "Feature", "properties": {"num_passengers": 4098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63575, 41.92415], [-87.63576, 41.92433]]}, "type": "Feature", "properties": {"num_passengers": 4098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63565, 41.92144], [-87.63567, 41.92167]]}, "type": "Feature", "properties": {"num_passengers": 4098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63568, 41.92186], [-87.63568, 41.92197]]}, "type": "Feature", "properties": {"num_passengers": 4098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63574, 41.92396], [-87.63575, 41.92415]]}, "type": "Feature", "properties": {"num_passengers": 4098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63576, 41.9247], [-87.63578, 41.92488]]}, "type": "Feature", "properties": {"num_passengers": 4098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63559, 41.92049], [-87.63562, 41.92065]]}, "type": "Feature", "properties": {"num_passengers": 4098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63569, 41.92213], [-87.63569, 41.92228]]}, "type": "Feature", "properties": {"num_passengers": 4098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63571, 41.92305], [-87.63573, 41.92324]]}, "type": "Feature", "properties": {"num_passengers": 4098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63554, 41.9202], [-87.63559, 41.92049]]}, "type": "Feature", "properties": {"num_passengers": 4098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63574, 41.92342], [-87.63574, 41.92359]]}, "type": "Feature", "properties": {"num_passengers": 4098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6357, 41.92265], [-87.63572, 41.92283]]}, "type": "Feature", "properties": {"num_passengers": 4098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63572, 41.92283], [-87.63571, 41.92305]]}, "type": "Feature", "properties": {"num_passengers": 4098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63563, 41.92082], [-87.63564, 41.92099]]}, "type": "Feature", "properties": {"num_passengers": 4098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63568, 41.92197], [-87.63569, 41.92213]]}, "type": "Feature", "properties": {"num_passengers": 4098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63532, 41.91981], [-87.6354, 41.91991]]}, "type": "Feature", "properties": {"num_passengers": 4098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63569, 41.92228], [-87.63571, 41.92247]]}, "type": "Feature", "properties": {"num_passengers": 4098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63504, 41.91951], [-87.63515, 41.91962]]}, "type": "Feature", "properties": {"num_passengers": 4098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63545, 41.92001], [-87.6355, 41.92011]]}, "type": "Feature", "properties": {"num_passengers": 4098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6355, 41.92011], [-87.63554, 41.9202]]}, "type": "Feature", "properties": {"num_passengers": 4098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63576, 41.92452], [-87.63576, 41.9247]]}, "type": "Feature", "properties": {"num_passengers": 4098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63567, 41.92167], [-87.63568, 41.92186]]}, "type": "Feature", "properties": {"num_passengers": 4098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6354, 41.91991], [-87.63545, 41.92001]]}, "type": "Feature", "properties": {"num_passengers": 4098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63574, 41.92359], [-87.63574, 41.92379]]}, "type": "Feature", "properties": {"num_passengers": 4098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63576, 41.92433], [-87.63576, 41.92452]]}, "type": "Feature", "properties": {"num_passengers": 4098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63564, 41.92099], [-87.63565, 41.92124]]}, "type": "Feature", "properties": {"num_passengers": 4098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63524, 41.91971], [-87.63532, 41.91981]]}, "type": "Feature", "properties": {"num_passengers": 4098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63562, 41.92065], [-87.63563, 41.92082]]}, "type": "Feature", "properties": {"num_passengers": 4098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63568, 41.92186], [-87.63568, 41.92186]]}, "type": "Feature", "properties": {"num_passengers": 4098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63573, 41.92324], [-87.63574, 41.92342]]}, "type": "Feature", "properties": {"num_passengers": 4098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63574, 41.92379], [-87.63574, 41.92396]]}, "type": "Feature", "properties": {"num_passengers": 4098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63565, 41.92124], [-87.63565, 41.92144]]}, "type": "Feature", "properties": {"num_passengers": 4098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63515, 41.91962], [-87.63524, 41.91971]]}, "type": "Feature", "properties": {"num_passengers": 4098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64037, 41.9255], [-87.64119, 41.92686]]}, "type": "Feature", "properties": {"num_passengers": 4099}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66592, 41.89613], [-87.66651, 41.89612]]}, "type": "Feature", "properties": {"num_passengers": 4099}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63091, 41.86744], [-87.63313, 41.86742]]}, "type": "Feature", "properties": {"num_passengers": 4107}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62793, 41.86748], [-87.6293, 41.86747]]}, "type": "Feature", "properties": {"num_passengers": 4107}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63313, 41.86742], [-87.63227, 41.86741]]}, "type": "Feature", "properties": {"num_passengers": 4107}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63076, 41.86744], [-87.63091, 41.86744]]}, "type": "Feature", "properties": {"num_passengers": 4107}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62779, 41.86749], [-87.62793, 41.86748]]}, "type": "Feature", "properties": {"num_passengers": 4107}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6293, 41.86747], [-87.63076, 41.86744]]}, "type": "Feature", "properties": {"num_passengers": 4107}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6478, 41.84672], [-87.64761, 41.84684]]}, "type": "Feature", "properties": {"num_passengers": 4108}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64761, 41.84684], [-87.6474, 41.84691]]}, "type": "Feature", "properties": {"num_passengers": 4108}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64709, 41.84708], [-87.647, 41.84708]]}, "type": "Feature", "properties": {"num_passengers": 4108}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64726, 41.84698], [-87.64709, 41.84708]]}, "type": "Feature", "properties": {"num_passengers": 4108}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6474, 41.84691], [-87.64726, 41.84698]]}, "type": "Feature", "properties": {"num_passengers": 4108}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64042, 41.92526], [-87.64049, 41.9254]]}, "type": "Feature", "properties": {"num_passengers": 4114}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71444, 41.93928], [-87.7147, 41.93929]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70669, 41.93939], [-87.70688, 41.9394]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70626, 41.93939], [-87.70646, 41.93939]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71207, 41.93908], [-87.7122, 41.93901]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70996, 41.93938], [-87.70999, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70778, 41.93942], [-87.70799, 41.93942]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71068, 41.93934], [-87.71088, 41.93934]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70815, 41.93942], [-87.70815, 41.93942]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71165, 41.93931], [-87.71187, 41.9393]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71425, 41.93928], [-87.71444, 41.93928]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71049, 41.93934], [-87.71068, 41.93934]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70754, 41.93942], [-87.70778, 41.93942]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71228, 41.93901], [-87.71249, 41.93904]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71249, 41.93904], [-87.71252, 41.93921]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70913, 41.93938], [-87.70934, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71487, 41.93929], [-87.71487, 41.93929]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71362, 41.93929], [-87.71379, 41.93929]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70952, 41.93938], [-87.70977, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70977, 41.93938], [-87.70996, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71343, 41.93929], [-87.71362, 41.93929]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70605, 41.93939], [-87.70626, 41.93939]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71204, 41.93922], [-87.71207, 41.93908]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7071, 41.93941], [-87.70732, 41.93942]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7147, 41.93929], [-87.71487, 41.93929]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71109, 41.93933], [-87.71126, 41.93933]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71314, 41.9393], [-87.71343, 41.93929]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71268, 41.93931], [-87.71295, 41.93931]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71379, 41.93929], [-87.71406, 41.93928]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71187, 41.9393], [-87.71204, 41.93922]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70799, 41.93942], [-87.70815, 41.93942]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71252, 41.93921], [-87.71268, 41.93931]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7087, 41.93939], [-87.70896, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70688, 41.9394], [-87.7071, 41.93941]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71406, 41.93928], [-87.71425, 41.93928]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70999, 41.93938], [-87.71018, 41.93936]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70646, 41.93939], [-87.70669, 41.93939]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71295, 41.93931], [-87.71314, 41.9393]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70815, 41.93942], [-87.7085, 41.93941]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71088, 41.93934], [-87.71109, 41.93933]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70583, 41.93938], [-87.70605, 41.93939]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7122, 41.93901], [-87.71228, 41.93901]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70934, 41.93938], [-87.70952, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70732, 41.93942], [-87.70754, 41.93942]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71145, 41.93931], [-87.71165, 41.93931]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71126, 41.93933], [-87.71145, 41.93931]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71018, 41.93936], [-87.71049, 41.93934]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70896, 41.93938], [-87.70913, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7085, 41.93941], [-87.7087, 41.93939]]}, "type": "Feature", "properties": {"num_passengers": 4125}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65543, 41.9901], [-87.65541, 41.98994]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65541, 41.98987], [-87.65541, 41.98971]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65537, 41.9885], [-87.65537, 41.98831]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6555, 41.99286], [-87.6555, 41.99267]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65548, 41.99159], [-87.65546, 41.99142]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65539, 41.98891], [-87.65537, 41.98871]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65556, 41.99444], [-87.65555, 41.99437]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65544, 41.99094], [-87.65544, 41.9908]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65537, 41.98871], [-87.65537, 41.9885]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65548, 41.99212], [-87.65548, 41.99193]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6554, 41.98933], [-87.65538, 41.98913]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65537, 41.98812], [-87.65536, 41.98793]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65549, 41.99218], [-87.65548, 41.99212]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65548, 41.99193], [-87.65548, 41.99173]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65555, 41.99387], [-87.65554, 41.99369]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65555, 41.99437], [-87.65555, 41.99422]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65545, 41.99112], [-87.65544, 41.99094]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65536, 41.98793], [-87.65535, 41.98774]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65544, 41.99045], [-87.65543, 41.99026]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65554, 41.99369], [-87.65552, 41.99353]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65552, 41.99353], [-87.65552, 41.99336]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65552, 41.99319], [-87.65552, 41.993]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65537, 41.98831], [-87.65537, 41.98812]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65544, 41.9908], [-87.65544, 41.9906]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65555, 41.99406], [-87.65555, 41.99387]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65535, 41.98774], [-87.65534, 41.98749]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65549, 41.99234], [-87.65549, 41.99218]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65543, 41.99026], [-87.65543, 41.9901]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65546, 41.99142], [-87.65546, 41.99127]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65555, 41.99422], [-87.65555, 41.99406]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65544, 41.9906], [-87.65544, 41.99045]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65552, 41.99336], [-87.65552, 41.99319]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6554, 41.98954], [-87.6554, 41.98933]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65538, 41.98913], [-87.65539, 41.98891]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65548, 41.99173], [-87.65548, 41.99159]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65549, 41.99252], [-87.65549, 41.99234]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65556, 41.99457], [-87.65556, 41.99444]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65552, 41.993], [-87.6555, 41.99286]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65546, 41.99127], [-87.65545, 41.99112]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65541, 41.98994], [-87.65541, 41.98987]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65541, 41.98971], [-87.6554, 41.98954]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6555, 41.99267], [-87.65549, 41.99252]]}, "type": "Feature", "properties": {"num_passengers": 4126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65509, 41.75056], [-87.65531, 41.75056]]}, "type": "Feature", "properties": {"num_passengers": 4128}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64145, 41.94518], [-87.64154, 41.94535]]}, "type": "Feature", "properties": {"num_passengers": 4128}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64262, 41.92926], [-87.64265, 41.92932]]}, "type": "Feature", "properties": {"num_passengers": 4129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64425, 41.93141], [-87.64432, 41.93156]]}, "type": "Feature", "properties": {"num_passengers": 4129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64119, 41.92686], [-87.64128, 41.92702]]}, "type": "Feature", "properties": {"num_passengers": 4129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64368, 41.93041], [-87.64376, 41.93055]]}, "type": "Feature", "properties": {"num_passengers": 4129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64233, 41.92871], [-87.64241, 41.92885]]}, "type": "Feature", "properties": {"num_passengers": 4129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64328, 41.92979], [-87.64343, 41.92995]]}, "type": "Feature", "properties": {"num_passengers": 4129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64295, 41.92955], [-87.64312, 41.92966]]}, "type": "Feature", "properties": {"num_passengers": 4129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64384, 41.93069], [-87.64392, 41.93083]]}, "type": "Feature", "properties": {"num_passengers": 4129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64401, 41.93097], [-87.64409, 41.93111]]}, "type": "Feature", "properties": {"num_passengers": 4129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64241, 41.92885], [-87.64249, 41.92898]]}, "type": "Feature", "properties": {"num_passengers": 4129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64219, 41.92857], [-87.64223, 41.92855]]}, "type": "Feature", "properties": {"num_passengers": 4129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64417, 41.93125], [-87.64425, 41.93141]]}, "type": "Feature", "properties": {"num_passengers": 4129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6748, 41.89591], [-87.67466, 41.89591]]}, "type": "Feature", "properties": {"num_passengers": 4129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64376, 41.93055], [-87.64384, 41.93069]]}, "type": "Feature", "properties": {"num_passengers": 4129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64312, 41.92966], [-87.64328, 41.92979]]}, "type": "Feature", "properties": {"num_passengers": 4129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64254, 41.92912], [-87.64262, 41.92926]]}, "type": "Feature", "properties": {"num_passengers": 4129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64354, 41.93013], [-87.64362, 41.93027]]}, "type": "Feature", "properties": {"num_passengers": 4129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64265, 41.92932], [-87.64277, 41.92944]]}, "type": "Feature", "properties": {"num_passengers": 4129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64249, 41.92898], [-87.64254, 41.92912]]}, "type": "Feature", "properties": {"num_passengers": 4129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64223, 41.92855], [-87.64233, 41.92871]]}, "type": "Feature", "properties": {"num_passengers": 4129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64432, 41.93156], [-87.64438, 41.93168]]}, "type": "Feature", "properties": {"num_passengers": 4129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64409, 41.93111], [-87.64417, 41.93125]]}, "type": "Feature", "properties": {"num_passengers": 4129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64362, 41.93027], [-87.64368, 41.93041]]}, "type": "Feature", "properties": {"num_passengers": 4129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64277, 41.92944], [-87.64295, 41.92955]]}, "type": "Feature", "properties": {"num_passengers": 4129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64128, 41.92702], [-87.64219, 41.92857]]}, "type": "Feature", "properties": {"num_passengers": 4129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64392, 41.93083], [-87.64401, 41.93097]]}, "type": "Feature", "properties": {"num_passengers": 4129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64343, 41.92995], [-87.64354, 41.93013]]}, "type": "Feature", "properties": {"num_passengers": 4129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65503, 41.97637], [-87.65483, 41.97637]]}, "type": "Feature", "properties": {"num_passengers": 4139}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62946, 41.88611], [-87.62946, 41.88627]]}, "type": "Feature", "properties": {"num_passengers": 4149}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58667, 41.78595], [-87.58667, 41.78582]]}, "type": "Feature", "properties": {"num_passengers": 4153}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58668, 41.78932], [-87.58668, 41.78932]]}, "type": "Feature", "properties": {"num_passengers": 4153}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58668, 41.78714], [-87.58668, 41.78691]]}, "type": "Feature", "properties": {"num_passengers": 4153}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58668, 41.78961], [-87.58668, 41.78947]]}, "type": "Feature", "properties": {"num_passengers": 4153}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5867, 41.78756], [-87.5867, 41.78736]]}, "type": "Feature", "properties": {"num_passengers": 4153}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58659, 41.78788], [-87.58671, 41.78786]]}, "type": "Feature", "properties": {"num_passengers": 4153}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5866, 41.78867], [-87.5866, 41.7885]]}, "type": "Feature", "properties": {"num_passengers": 4153}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5866, 41.78801], [-87.58659, 41.78788]]}, "type": "Feature", "properties": {"num_passengers": 4153}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58665, 41.78548], [-87.58665, 41.78528]]}, "type": "Feature", "properties": {"num_passengers": 4153}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58659, 41.78832], [-87.58659, 41.78816]]}, "type": "Feature", "properties": {"num_passengers": 4153}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58668, 41.79067], [-87.58668, 41.7905]]}, "type": "Feature", "properties": {"num_passengers": 4153}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58665, 41.78528], [-87.58665, 41.78507]]}, "type": "Feature", "properties": {"num_passengers": 4153}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58667, 41.78627], [-87.58667, 41.78611]]}, "type": "Feature", "properties": {"num_passengers": 4153}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58668, 41.78947], [-87.58668, 41.78932]]}, "type": "Feature", "properties": {"num_passengers": 4153}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58668, 41.7903], [-87.58667, 41.7901]]}, "type": "Feature", "properties": {"num_passengers": 4153}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58668, 41.78691], [-87.58668, 41.78669]]}, "type": "Feature", "properties": {"num_passengers": 4153}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58667, 41.78582], [-87.58667, 41.78563]]}, "type": "Feature", "properties": {"num_passengers": 4153}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58667, 41.7899], [-87.58667, 41.78974]]}, "type": "Feature", "properties": {"num_passengers": 4153}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58667, 41.78916], [-87.58663, 41.78899]]}, "type": "Feature", "properties": {"num_passengers": 4153}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58667, 41.78563], [-87.58665, 41.78548]]}, "type": "Feature", "properties": {"num_passengers": 4153}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5866, 41.7885], [-87.58659, 41.78832]]}, "type": "Feature", "properties": {"num_passengers": 4153}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58667, 41.78611], [-87.58667, 41.78595]]}, "type": "Feature", "properties": {"num_passengers": 4153}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5867, 41.78736], [-87.58668, 41.78714]]}, "type": "Feature", "properties": {"num_passengers": 4153}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58667, 41.78974], [-87.58668, 41.78961]]}, "type": "Feature", "properties": {"num_passengers": 4153}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5867, 41.79088], [-87.58668, 41.79067]]}, "type": "Feature", "properties": {"num_passengers": 4153}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58668, 41.78669], [-87.58668, 41.78647]]}, "type": "Feature", "properties": {"num_passengers": 4153}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58659, 41.78816], [-87.5866, 41.78801]]}, "type": "Feature", "properties": {"num_passengers": 4153}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58663, 41.78899], [-87.5866, 41.78883]]}, "type": "Feature", "properties": {"num_passengers": 4153}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58668, 41.78647], [-87.58667, 41.78627]]}, "type": "Feature", "properties": {"num_passengers": 4153}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58668, 41.7905], [-87.58668, 41.7903]]}, "type": "Feature", "properties": {"num_passengers": 4153}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58668, 41.78932], [-87.58667, 41.78916]]}, "type": "Feature", "properties": {"num_passengers": 4153}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5867, 41.78772], [-87.5867, 41.78756]]}, "type": "Feature", "properties": {"num_passengers": 4153}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58671, 41.78786], [-87.5867, 41.78772]]}, "type": "Feature", "properties": {"num_passengers": 4153}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58667, 41.7901], [-87.58667, 41.7899]]}, "type": "Feature", "properties": {"num_passengers": 4153}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5866, 41.78883], [-87.5866, 41.78867]]}, "type": "Feature", "properties": {"num_passengers": 4153}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67567, 41.93962], [-87.67866, 41.9396]]}, "type": "Feature", "properties": {"num_passengers": 4161}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58663, 41.78487], [-87.58663, 41.78467]]}, "type": "Feature", "properties": {"num_passengers": 4165}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58665, 41.78507], [-87.58663, 41.78487]]}, "type": "Feature", "properties": {"num_passengers": 4171}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59488, 41.75144], [-87.59514, 41.75144]]}, "type": "Feature", "properties": {"num_passengers": 4172}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63948, 41.87716], [-87.63952, 41.87901]]}, "type": "Feature", "properties": {"num_passengers": 4175}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63395, 41.91487], [-87.6339, 41.91478]]}, "type": "Feature", "properties": {"num_passengers": 4178}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58508, 41.80211], [-87.58517, 41.80228]]}, "type": "Feature", "properties": {"num_passengers": 4182}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62609, 41.91128], [-87.62609, 41.91111]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6251, 41.90558], [-87.62507, 41.90543]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62921, 41.91846], [-87.62914, 41.91828]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62605, 41.91019], [-87.62605, 41.91004]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62549, 41.90713], [-87.62545, 41.90697]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62584, 41.90855], [-87.6258, 41.90838]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63296, 41.93517], [-87.63286, 41.935]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62514, 41.90573], [-87.6251, 41.90558]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63083, 41.92406], [-87.63078, 41.92391]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62605, 41.91034], [-87.62605, 41.91019]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62872, 41.91723], [-87.62863, 41.91705]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62607, 41.91081], [-87.62607, 41.91065]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6323, 41.92992], [-87.63231, 41.92974]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63017, 41.92194], [-87.63011, 41.92178]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62592, 41.90889], [-87.62589, 41.90873]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62553, 41.90728], [-87.62549, 41.90713]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6299, 41.9211], [-87.62986, 41.92092]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63705, 41.93891], [-87.63689, 41.9388]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63231, 41.9312], [-87.63227, 41.93104]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63078, 41.92391], [-87.63074, 41.92376]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62521, 41.90603], [-87.62518, 41.90588]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63193, 41.92747], [-87.63187, 41.92728]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6296, 41.91979], [-87.62955, 41.9196]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63169, 41.92673], [-87.63163, 41.92654]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63247, 41.93412], [-87.63242, 41.93393]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63, 41.92146], [-87.62994, 41.92128]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63231, 41.92955], [-87.63231, 41.92936]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63829, 41.93969], [-87.63816, 41.93959]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63396, 41.93648], [-87.63379, 41.93635]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63055, 41.92318], [-87.63051, 41.92303]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62829, 41.91632], [-87.62819, 41.91615]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62545, 41.90697], [-87.62541, 41.90682]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62982, 41.92073], [-87.62978, 41.92055]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63088, 41.92424], [-87.63083, 41.92406]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63228, 41.93085], [-87.63228, 41.93067]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62708, 41.91406], [-87.627, 41.91389]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62572, 41.90805], [-87.62567, 41.90789]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63022, 41.92211], [-87.63017, 41.92194]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62942, 41.8848], [-87.62946, 41.88611]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63518, 41.93752], [-87.63499, 41.93737]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62518, 41.90588], [-87.62514, 41.90573]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63365, 41.93618], [-87.63351, 41.93602]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63069, 41.9236], [-87.63065, 41.92346]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62978, 41.92055], [-87.62974, 41.92036]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63116, 41.92513], [-87.63111, 41.92495]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62533, 41.90651], [-87.62529, 41.90635]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62791, 41.91562], [-87.62781, 41.91544]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62846, 41.91669], [-87.62838, 41.91651]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63229, 41.93048], [-87.63229, 41.9303]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63146, 41.926], [-87.63141, 41.92582]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63379, 41.93635], [-87.63365, 41.93618]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6261, 41.91161], [-87.6261, 41.91145]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63225, 41.9288], [-87.63223, 41.92861]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63229, 41.93176], [-87.63229, 41.93157]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62819, 41.91615], [-87.6281, 41.91597]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63537, 41.93766], [-87.63518, 41.93752]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62617, 41.9121], [-87.62614, 41.91194]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6321, 41.92804], [-87.63204, 41.92785]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6256, 41.90759], [-87.62556, 41.90744]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6323, 41.93011], [-87.6323, 41.92992]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62606, 41.9105], [-87.62605, 41.91034]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63816, 41.93959], [-87.63802, 41.93949]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62908, 41.9181], [-87.62901, 41.91796]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63885, 41.94038], [-87.63876, 41.94025]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63094, 41.92441], [-87.63088, 41.92424]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62589, 41.90873], [-87.62584, 41.90855]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62838, 41.91651], [-87.62829, 41.91632]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63158, 41.92636], [-87.63152, 41.92618]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63259, 41.93449], [-87.63253, 41.9343]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63267, 41.93467], [-87.63259, 41.93449]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63074, 41.92376], [-87.63069, 41.9236]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62628, 41.91242], [-87.62622, 41.91227]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62609, 41.91111], [-87.62608, 41.91097]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.631, 41.92459], [-87.63094, 41.92441]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63277, 41.93482], [-87.63267, 41.93467]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63229, 41.93157], [-87.6323, 41.93139]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62563, 41.90774], [-87.6256, 41.90759]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63802, 41.93949], [-87.63786, 41.9394]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62567, 41.90789], [-87.62563, 41.90774]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63593, 41.93805], [-87.63575, 41.93791]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63229, 41.92897], [-87.63225, 41.9288]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63223, 41.92861], [-87.63219, 41.92842]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62726, 41.91437], [-87.62717, 41.91423]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6281, 41.91597], [-87.628, 41.91579]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63894, 41.94052], [-87.63885, 41.94038]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63198, 41.92765], [-87.63193, 41.92747]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63226, 41.93249], [-87.63226, 41.93231]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62986, 41.92092], [-87.62982, 41.92073]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63181, 41.92709], [-87.63175, 41.92691]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63575, 41.93791], [-87.63555, 41.93779]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.628, 41.91579], [-87.62791, 41.91562]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63659, 41.93856], [-87.63642, 41.93843]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62762, 41.91508], [-87.62753, 41.91491]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62605, 41.91004], [-87.62605, 41.90988]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62684, 41.91356], [-87.62675, 41.91339]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63141, 41.92582], [-87.63136, 41.92564]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6323, 41.93139], [-87.63231, 41.9312]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62879, 41.91741], [-87.62872, 41.91723]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62507, 41.90543], [-87.62504, 41.90529]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63032, 41.92243], [-87.63027, 41.92227]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63411, 41.93663], [-87.63396, 41.93648]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6361, 41.93818], [-87.63593, 41.93805]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63754, 41.93922], [-87.63737, 41.93912]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63253, 41.9343], [-87.63247, 41.93412]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63626, 41.9383], [-87.6361, 41.93818]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63231, 41.92974], [-87.63231, 41.92955]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62608, 41.91097], [-87.62607, 41.91081]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62994, 41.92128], [-87.6299, 41.9211]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63338, 41.93585], [-87.63327, 41.93569]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63037, 41.92259], [-87.63032, 41.92243]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62863, 41.91705], [-87.62855, 41.91687]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63124, 41.92528], [-87.63116, 41.92513]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63227, 41.93213], [-87.63228, 41.93194]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62595, 41.90906], [-87.62592, 41.90889]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6306, 41.92331], [-87.63055, 41.92318]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62717, 41.91423], [-87.62708, 41.91406]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62611, 41.91177], [-87.6261, 41.91161]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62603, 41.90956], [-87.62601, 41.90939]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62675, 41.91339], [-87.62667, 41.91322]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63011, 41.92178], [-87.63005, 41.92163]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63046, 41.92289], [-87.63042, 41.92274]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63225, 41.93286], [-87.63225, 41.93267]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62601, 41.90939], [-87.62598, 41.90923]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6377, 41.93931], [-87.63754, 41.93922]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62529, 41.90635], [-87.62525, 41.90619]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63042, 41.92274], [-87.63037, 41.92259]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63027, 41.92227], [-87.63022, 41.92211]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62933, 41.91883], [-87.62927, 41.91865]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62894, 41.91778], [-87.62887, 41.91759]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63163, 41.92654], [-87.63158, 41.92636]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62607, 41.91065], [-87.62606, 41.9105]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63327, 41.93569], [-87.63316, 41.93552]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62614, 41.91194], [-87.62611, 41.91177]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62659, 41.91306], [-87.62651, 41.91289]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62772, 41.91526], [-87.62762, 41.91508]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6323, 41.93302], [-87.63225, 41.93286]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6385, 41.93989], [-87.63829, 41.93969]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63227, 41.93104], [-87.63228, 41.93085]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63351, 41.93602], [-87.63338, 41.93585]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62643, 41.91273], [-87.62636, 41.91258]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62743, 41.91473], [-87.62735, 41.91455]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62735, 41.91455], [-87.62726, 41.91437]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6348, 41.93723], [-87.63462, 41.93708]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6261, 41.91145], [-87.62609, 41.91128]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62525, 41.90619], [-87.62521, 41.90603]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63462, 41.93708], [-87.63445, 41.93694]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63228, 41.93194], [-87.63229, 41.93176]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63229, 41.9303], [-87.6323, 41.93011]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63305, 41.93534], [-87.63296, 41.93517]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63231, 41.9332], [-87.6323, 41.93302]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62927, 41.91865], [-87.62921, 41.91846]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63111, 41.92495], [-87.63105, 41.92477]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63226, 41.93231], [-87.63227, 41.93213]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63187, 41.92728], [-87.63181, 41.92709]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62576, 41.90821], [-87.62572, 41.90805]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63231, 41.92936], [-87.63231, 41.92916]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62887, 41.91759], [-87.62879, 41.91741]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63866, 41.94009], [-87.6385, 41.93989]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63175, 41.92691], [-87.63169, 41.92673]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62501, 41.90515], [-87.62498, 41.90501]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62955, 41.9196], [-87.6295, 41.91941]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62914, 41.91828], [-87.62908, 41.9181]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63721, 41.93903], [-87.63705, 41.93891]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62541, 41.90682], [-87.62537, 41.90667]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62901, 41.91796], [-87.62894, 41.91778]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62622, 41.91227], [-87.62617, 41.9121]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63232, 41.93339], [-87.63231, 41.9332]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62667, 41.91322], [-87.62659, 41.91306]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63642, 41.93843], [-87.63626, 41.9383]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63316, 41.93552], [-87.63305, 41.93534]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63235, 41.93357], [-87.63232, 41.93339]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6297, 41.92017], [-87.62965, 41.91998]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62651, 41.91289], [-87.62643, 41.91273]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62537, 41.90667], [-87.62533, 41.90651]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63674, 41.93868], [-87.63659, 41.93856]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63065, 41.92346], [-87.6306, 41.92331]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63876, 41.94025], [-87.63866, 41.94009]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62945, 41.91922], [-87.62939, 41.91903]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62753, 41.91491], [-87.62743, 41.91473]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62781, 41.91544], [-87.62772, 41.91526]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6258, 41.90838], [-87.62576, 41.90821]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62556, 41.90744], [-87.62553, 41.90728]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63499, 41.93737], [-87.6348, 41.93723]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63152, 41.92618], [-87.63146, 41.926]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62504, 41.90529], [-87.62501, 41.90515]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63231, 41.92916], [-87.63229, 41.92897]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63286, 41.935], [-87.63277, 41.93482]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6313, 41.92546], [-87.63124, 41.92528]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62939, 41.91903], [-87.62933, 41.91883]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63204, 41.92785], [-87.63198, 41.92765]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63689, 41.9388], [-87.63674, 41.93868]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63225, 41.93267], [-87.63226, 41.93249]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63786, 41.9394], [-87.6377, 41.93931]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63555, 41.93779], [-87.63537, 41.93766]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62605, 41.90988], [-87.62604, 41.90972]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63214, 41.92823], [-87.6321, 41.92804]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62598, 41.90923], [-87.62595, 41.90906]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63219, 41.92842], [-87.63214, 41.92823]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62636, 41.91258], [-87.62628, 41.91242]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6295, 41.91941], [-87.62945, 41.91922]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62604, 41.90972], [-87.62603, 41.90956]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63005, 41.92163], [-87.63, 41.92146]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63427, 41.93679], [-87.63411, 41.93663]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62855, 41.91687], [-87.62846, 41.91669]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.627, 41.91389], [-87.62692, 41.91372]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63228, 41.93067], [-87.63229, 41.93048]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63737, 41.93912], [-87.63721, 41.93903]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63051, 41.92303], [-87.63046, 41.92289]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63242, 41.93393], [-87.63239, 41.93375]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63136, 41.92564], [-87.6313, 41.92546]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63239, 41.93375], [-87.63235, 41.93357]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62974, 41.92036], [-87.6297, 41.92017]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63445, 41.93694], [-87.63427, 41.93679]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62965, 41.91998], [-87.6296, 41.91979]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62692, 41.91372], [-87.62684, 41.91356]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63105, 41.92477], [-87.631, 41.92459]]}, "type": "Feature", "properties": {"num_passengers": 4184}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59514, 41.75144], [-87.59531, 41.75144]]}, "type": "Feature", "properties": {"num_passengers": 4196}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63133, 41.90012], [-87.63131, 41.90026]]}, "type": "Feature", "properties": {"num_passengers": 4198}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63099, 41.89987], [-87.63118, 41.89986]]}, "type": "Feature", "properties": {"num_passengers": 4198}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63079, 41.89988], [-87.63099, 41.89987]]}, "type": "Feature", "properties": {"num_passengers": 4198}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63134, 41.89993], [-87.63133, 41.90012]]}, "type": "Feature", "properties": {"num_passengers": 4198}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63059, 41.89989], [-87.63079, 41.89988]]}, "type": "Feature", "properties": {"num_passengers": 4198}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63129, 41.90042], [-87.63129, 41.90046]]}, "type": "Feature", "properties": {"num_passengers": 4198}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63131, 41.90026], [-87.63129, 41.90042]]}, "type": "Feature", "properties": {"num_passengers": 4198}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63118, 41.89986], [-87.63134, 41.89993]]}, "type": "Feature", "properties": {"num_passengers": 4198}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58657, 41.8026], [-87.58684, 41.80259]]}, "type": "Feature", "properties": {"num_passengers": 4202}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58595, 41.8026], [-87.58616, 41.8026]]}, "type": "Feature", "properties": {"num_passengers": 4202}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58517, 41.80228], [-87.58523, 41.80242]]}, "type": "Feature", "properties": {"num_passengers": 4202}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58537, 41.80256], [-87.58558, 41.80261]]}, "type": "Feature", "properties": {"num_passengers": 4202}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58767, 41.80259], [-87.58772, 41.80274]]}, "type": "Feature", "properties": {"num_passengers": 4202}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58616, 41.8026], [-87.58635, 41.8026]]}, "type": "Feature", "properties": {"num_passengers": 4202}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58523, 41.80242], [-87.58537, 41.80256]]}, "type": "Feature", "properties": {"num_passengers": 4202}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58776, 41.80288], [-87.58783, 41.80302]]}, "type": "Feature", "properties": {"num_passengers": 4202}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58772, 41.80274], [-87.58776, 41.80288]]}, "type": "Feature", "properties": {"num_passengers": 4202}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58706, 41.80258], [-87.58725, 41.80258]]}, "type": "Feature", "properties": {"num_passengers": 4202}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58746, 41.80258], [-87.58767, 41.80259]]}, "type": "Feature", "properties": {"num_passengers": 4202}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58578, 41.80262], [-87.58589, 41.80261]]}, "type": "Feature", "properties": {"num_passengers": 4202}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58783, 41.80302], [-87.58784, 41.80304]]}, "type": "Feature", "properties": {"num_passengers": 4202}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58576, 41.8026], [-87.58595, 41.8026]]}, "type": "Feature", "properties": {"num_passengers": 4202}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58784, 41.80304], [-87.58803, 41.80306]]}, "type": "Feature", "properties": {"num_passengers": 4202}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58654, 41.8026], [-87.58657, 41.8026]]}, "type": "Feature", "properties": {"num_passengers": 4202}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58635, 41.8026], [-87.58654, 41.8026]]}, "type": "Feature", "properties": {"num_passengers": 4202}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58684, 41.80259], [-87.58706, 41.80258]]}, "type": "Feature", "properties": {"num_passengers": 4202}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58725, 41.80258], [-87.58746, 41.80258]]}, "type": "Feature", "properties": {"num_passengers": 4202}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58558, 41.80261], [-87.58578, 41.80262]]}, "type": "Feature", "properties": {"num_passengers": 4202}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58589, 41.80261], [-87.58576, 41.8026]]}, "type": "Feature", "properties": {"num_passengers": 4202}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63646, 41.86735], [-87.63675, 41.86734]]}, "type": "Feature", "properties": {"num_passengers": 4203}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63732, 41.86733], [-87.63756, 41.86732]]}, "type": "Feature", "properties": {"num_passengers": 4203}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6384, 41.86732], [-87.6387, 41.86732]]}, "type": "Feature", "properties": {"num_passengers": 4203}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63797, 41.86732], [-87.63821, 41.86732]]}, "type": "Feature", "properties": {"num_passengers": 4203}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63911, 41.86731], [-87.64047, 41.86729]]}, "type": "Feature", "properties": {"num_passengers": 4203}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6387, 41.86732], [-87.63899, 41.86732]]}, "type": "Feature", "properties": {"num_passengers": 4203}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63675, 41.86734], [-87.63704, 41.86733]]}, "type": "Feature", "properties": {"num_passengers": 4203}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63704, 41.86733], [-87.63732, 41.86733]]}, "type": "Feature", "properties": {"num_passengers": 4203}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6378, 41.86732], [-87.63797, 41.86732]]}, "type": "Feature", "properties": {"num_passengers": 4203}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63756, 41.86732], [-87.6378, 41.86732]]}, "type": "Feature", "properties": {"num_passengers": 4203}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63591, 41.86735], [-87.63621, 41.86735]]}, "type": "Feature", "properties": {"num_passengers": 4203}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63821, 41.86732], [-87.6384, 41.86732]]}, "type": "Feature", "properties": {"num_passengers": 4203}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63899, 41.86732], [-87.63899, 41.86732]]}, "type": "Feature", "properties": {"num_passengers": 4203}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63621, 41.86735], [-87.63646, 41.86735]]}, "type": "Feature", "properties": {"num_passengers": 4203}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64065, 41.8673], [-87.64196, 41.86728]]}, "type": "Feature", "properties": {"num_passengers": 4203}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63899, 41.86732], [-87.63911, 41.86731]]}, "type": "Feature", "properties": {"num_passengers": 4203}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64047, 41.86729], [-87.64065, 41.8673]]}, "type": "Feature", "properties": {"num_passengers": 4203}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66634, 41.89605], [-87.66562, 41.89606]]}, "type": "Feature", "properties": {"num_passengers": 4205}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67255, 41.89594], [-87.67191, 41.89596]]}, "type": "Feature", "properties": {"num_passengers": 4205}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66935, 41.896], [-87.66753, 41.89603]]}, "type": "Feature", "properties": {"num_passengers": 4205}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66753, 41.89603], [-87.66741, 41.89603]]}, "type": "Feature", "properties": {"num_passengers": 4205}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66945, 41.896], [-87.66935, 41.896]]}, "type": "Feature", "properties": {"num_passengers": 4205}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6718, 41.89596], [-87.66945, 41.896]]}, "type": "Feature", "properties": {"num_passengers": 4205}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67397, 41.89592], [-87.67326, 41.89593]]}, "type": "Feature", "properties": {"num_passengers": 4205}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67191, 41.89596], [-87.6718, 41.89596]]}, "type": "Feature", "properties": {"num_passengers": 4205}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67326, 41.89593], [-87.67255, 41.89594]]}, "type": "Feature", "properties": {"num_passengers": 4205}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66741, 41.89603], [-87.66705, 41.89604]]}, "type": "Feature", "properties": {"num_passengers": 4205}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66705, 41.89604], [-87.66634, 41.89605]]}, "type": "Feature", "properties": {"num_passengers": 4205}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64036, 41.92512], [-87.64042, 41.92526]]}, "type": "Feature", "properties": {"num_passengers": 4207}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67466, 41.89591], [-87.67397, 41.89592]]}, "type": "Feature", "properties": {"num_passengers": 4214}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67385, 41.93966], [-87.67567, 41.93962]]}, "type": "Feature", "properties": {"num_passengers": 4214}}, {"geometry": {"type": "LineString", "coordinates": [[-87.635, 41.91938], [-87.63487, 41.91928]]}, "type": "Feature", "properties": {"num_passengers": 4219}}, {"geometry": {"type": "LineString", "coordinates": [[-87.634, 41.91496], [-87.63395, 41.91487]]}, "type": "Feature", "properties": {"num_passengers": 4232}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63436, 41.89655], [-87.63302, 41.89656]]}, "type": "Feature", "properties": {"num_passengers": 4235}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64105, 41.87629], [-87.64105, 41.87611]]}, "type": "Feature", "properties": {"num_passengers": 4247}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64103, 41.87555], [-87.64103, 41.87538]]}, "type": "Feature", "properties": {"num_passengers": 4247}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64104, 41.87648], [-87.64105, 41.87629]]}, "type": "Feature", "properties": {"num_passengers": 4247}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64104, 41.87593], [-87.64103, 41.87572]]}, "type": "Feature", "properties": {"num_passengers": 4247}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64107, 41.87691], [-87.64104, 41.87648]]}, "type": "Feature", "properties": {"num_passengers": 4247}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64103, 41.87538], [-87.64103, 41.87528]]}, "type": "Feature", "properties": {"num_passengers": 4247}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64105, 41.87611], [-87.64104, 41.87593]]}, "type": "Feature", "properties": {"num_passengers": 4247}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64103, 41.87572], [-87.64103, 41.87555]]}, "type": "Feature", "properties": {"num_passengers": 4247}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68324, 41.76763], [-87.68324, 41.76783]]}, "type": "Feature", "properties": {"num_passengers": 4250}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68323, 41.76813], [-87.68324, 41.7682]]}, "type": "Feature", "properties": {"num_passengers": 4250}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68324, 41.76797], [-87.68323, 41.76813]]}, "type": "Feature", "properties": {"num_passengers": 4250}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68324, 41.76739], [-87.68324, 41.76763]]}, "type": "Feature", "properties": {"num_passengers": 4250}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68321, 41.76693], [-87.68321, 41.76716]]}, "type": "Feature", "properties": {"num_passengers": 4250}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63551, 41.86724], [-87.63327, 41.86724]]}, "type": "Feature", "properties": {"num_passengers": 4250}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68319, 41.76656], [-87.68321, 41.76672]]}, "type": "Feature", "properties": {"num_passengers": 4250}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68324, 41.76783], [-87.68324, 41.76797]]}, "type": "Feature", "properties": {"num_passengers": 4250}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68321, 41.76716], [-87.68324, 41.76739]]}, "type": "Feature", "properties": {"num_passengers": 4250}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68321, 41.76672], [-87.68321, 41.76693]]}, "type": "Feature", "properties": {"num_passengers": 4250}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66532, 41.89614], [-87.66592, 41.89613]]}, "type": "Feature", "properties": {"num_passengers": 4252}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63619, 41.9185], [-87.63514, 41.91678]]}, "type": "Feature", "properties": {"num_passengers": 4264}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63831, 41.92194], [-87.6382, 41.92175]]}, "type": "Feature", "properties": {"num_passengers": 4264}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63744, 41.92051], [-87.63735, 41.92036]]}, "type": "Feature", "properties": {"num_passengers": 4264}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63779, 41.9211], [-87.6377, 41.92093]]}, "type": "Feature", "properties": {"num_passengers": 4264}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6373, 41.92025], [-87.63729, 41.92021]]}, "type": "Feature", "properties": {"num_passengers": 4264}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63735, 41.92036], [-87.6373, 41.92025]]}, "type": "Feature", "properties": {"num_passengers": 4264}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63758, 41.92076], [-87.63751, 41.92063]]}, "type": "Feature", "properties": {"num_passengers": 4264}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6382, 41.92175], [-87.63811, 41.92162]]}, "type": "Feature", "properties": {"num_passengers": 4264}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63751, 41.92063], [-87.63744, 41.92051]]}, "type": "Feature", "properties": {"num_passengers": 4264}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63811, 41.92162], [-87.63801, 41.92145]]}, "type": "Feature", "properties": {"num_passengers": 4264}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63514, 41.91678], [-87.63509, 41.91671]]}, "type": "Feature", "properties": {"num_passengers": 4264}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63801, 41.92145], [-87.63792, 41.92129]]}, "type": "Feature", "properties": {"num_passengers": 4264}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6377, 41.92093], [-87.63758, 41.92076]]}, "type": "Feature", "properties": {"num_passengers": 4264}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63729, 41.92021], [-87.63628, 41.91864]]}, "type": "Feature", "properties": {"num_passengers": 4264}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63628, 41.91864], [-87.63619, 41.9185]]}, "type": "Feature", "properties": {"num_passengers": 4264}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63792, 41.92129], [-87.63779, 41.9211]]}, "type": "Feature", "properties": {"num_passengers": 4264}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62946, 41.88627], [-87.62947, 41.88802]]}, "type": "Feature", "properties": {"num_passengers": 4266}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62583, 41.87309], [-87.6256, 41.8731]]}, "type": "Feature", "properties": {"num_passengers": 4267}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62737, 41.87307], [-87.62722, 41.87307]]}, "type": "Feature", "properties": {"num_passengers": 4267}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62606, 41.8731], [-87.62583, 41.87309]]}, "type": "Feature", "properties": {"num_passengers": 4267}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62678, 41.87307], [-87.62652, 41.87309]]}, "type": "Feature", "properties": {"num_passengers": 4267}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6253, 41.87311], [-87.62508, 41.87311]]}, "type": "Feature", "properties": {"num_passengers": 4267}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62652, 41.87309], [-87.62627, 41.8731]]}, "type": "Feature", "properties": {"num_passengers": 4267}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6256, 41.8731], [-87.6253, 41.87311]]}, "type": "Feature", "properties": {"num_passengers": 4267}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62627, 41.8731], [-87.62606, 41.8731]]}, "type": "Feature", "properties": {"num_passengers": 4267}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62702, 41.87307], [-87.62678, 41.87307]]}, "type": "Feature", "properties": {"num_passengers": 4267}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62722, 41.87307], [-87.62702, 41.87307]]}, "type": "Feature", "properties": {"num_passengers": 4267}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65485, 41.75056], [-87.65509, 41.75056]]}, "type": "Feature", "properties": {"num_passengers": 4270}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62765, 41.87275], [-87.62758, 41.87041]]}, "type": "Feature", "properties": {"num_passengers": 4280}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63495, 41.91942], [-87.63504, 41.91951]]}, "type": "Feature", "properties": {"num_passengers": 4284}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63564, 41.86736], [-87.63591, 41.86735]]}, "type": "Feature", "properties": {"num_passengers": 4284}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64394, 41.86714], [-87.64368, 41.86714]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64057, 41.8672], [-87.64055, 41.86718]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64055, 41.86718], [-87.64043, 41.86719]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64205, 41.86717], [-87.64184, 41.86718]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64319, 41.86714], [-87.64296, 41.86715]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64435, 41.86714], [-87.64414, 41.86714]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63877, 41.86719], [-87.63855, 41.86719]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64184, 41.86718], [-87.64165, 41.86718]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63831, 41.8672], [-87.63807, 41.8672]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63855, 41.86719], [-87.63831, 41.8672]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64346, 41.86715], [-87.64319, 41.86714]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63782, 41.8672], [-87.63758, 41.8672]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64145, 41.86718], [-87.64124, 41.86718]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6389, 41.86719], [-87.6389, 41.86719]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63563, 41.86723], [-87.63551, 41.86724]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63726, 41.8672], [-87.63696, 41.86721]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64257, 41.86715], [-87.64238, 41.86715]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63664, 41.86721], [-87.63638, 41.86721]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63758, 41.8672], [-87.63726, 41.8672]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6389, 41.86719], [-87.63877, 41.86719]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64165, 41.86718], [-87.64145, 41.86718]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63696, 41.86721], [-87.63664, 41.86721]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63917, 41.86719], [-87.6389, 41.86719]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63996, 41.8672], [-87.63971, 41.8672]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64224, 41.86718], [-87.64205, 41.86717]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63588, 41.86722], [-87.63563, 41.86723]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64043, 41.86719], [-87.64021, 41.86719]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64414, 41.86714], [-87.64394, 41.86714]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63807, 41.8672], [-87.63782, 41.8672]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64124, 41.86718], [-87.64103, 41.86718]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64238, 41.86715], [-87.64224, 41.86718]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64103, 41.86718], [-87.64079, 41.86718]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63942, 41.86721], [-87.63917, 41.86719]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63611, 41.86722], [-87.63588, 41.86722]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64021, 41.86719], [-87.63996, 41.8672]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64368, 41.86714], [-87.64346, 41.86715]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63638, 41.86721], [-87.63611, 41.86722]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64278, 41.86715], [-87.64257, 41.86715]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64296, 41.86715], [-87.64278, 41.86715]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63971, 41.8672], [-87.63942, 41.86721]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64079, 41.86718], [-87.64057, 41.8672]]}, "type": "Feature", "properties": {"num_passengers": 4293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62508, 41.87311], [-87.62481, 41.87312]]}, "type": "Feature", "properties": {"num_passengers": 4295}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62481, 41.87312], [-87.62456, 41.87314]]}, "type": "Feature", "properties": {"num_passengers": 4297}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64457, 41.86714], [-87.64435, 41.86714]]}, "type": "Feature", "properties": {"num_passengers": 4300}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63551, 41.86736], [-87.63564, 41.86736]]}, "type": "Feature", "properties": {"num_passengers": 4309}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65106, 41.97622], [-87.6508, 41.97596]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63427, 41.93696], [-87.63353, 41.93629]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64463, 41.95104], [-87.64445, 41.95062]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64497, 41.95543], [-87.64483, 41.95461]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63082, 41.92444], [-87.62995, 41.92176]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64943, 41.97389], [-87.64902, 41.97279]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64613, 41.95884], [-87.64576, 41.95755]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65466, 41.97638], [-87.65235, 41.97642]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64478, 41.95165], [-87.64463, 41.95104]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63512, 41.93766], [-87.63427, 41.93696]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63204, 41.92836], [-87.63082, 41.92444]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64576, 41.95755], [-87.64514, 41.95597]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65483, 41.97637], [-87.65466, 41.97638]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65216, 41.97642], [-87.65144, 41.97639]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62925, 41.919], [-87.62874, 41.91754]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62783, 41.91567], [-87.62627, 41.91261]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62594, 41.90966], [-87.62592, 41.90927]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62995, 41.92176], [-87.62925, 41.919]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63216, 41.92969], [-87.63215, 41.92908]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64483, 41.95461], [-87.64475, 41.954]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63921, 41.94143], [-87.63874, 41.94078]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63353, 41.93629], [-87.63303, 41.93567]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64632, 41.95988], [-87.64613, 41.95884]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64991, 41.97472], [-87.64943, 41.97389]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64743, 41.96616], [-87.64647, 41.96195]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63264, 41.93501], [-87.63232, 41.93421]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6261, 41.91222], [-87.62598, 41.91163]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63232, 41.93421], [-87.63211, 41.93302]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62598, 41.91163], [-87.62594, 41.90966]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63211, 41.93302], [-87.63216, 41.92969]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63215, 41.92908], [-87.63204, 41.92836]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64445, 41.95062], [-87.6415, 41.94558]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65144, 41.97639], [-87.65106, 41.97622]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63874, 41.94078], [-87.63798, 41.93987]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63303, 41.93567], [-87.63264, 41.93501]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64475, 41.954], [-87.64478, 41.95165]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.637, 41.939], [-87.63512, 41.93766]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6415, 41.94558], [-87.63964, 41.94213]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62874, 41.91754], [-87.62783, 41.91567]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62592, 41.90927], [-87.62494, 41.90527]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6508, 41.97596], [-87.64991, 41.97472]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65235, 41.97642], [-87.65216, 41.97642]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64647, 41.96195], [-87.64633, 41.96133]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64902, 41.97279], [-87.64856, 41.97108]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64856, 41.97108], [-87.64743, 41.96616]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64633, 41.96133], [-87.64632, 41.95988]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63798, 41.93987], [-87.637, 41.939]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62627, 41.91261], [-87.6261, 41.91222]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63964, 41.94213], [-87.63921, 41.94143]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64514, 41.95597], [-87.64497, 41.95543]]}, "type": "Feature", "properties": {"num_passengers": 4314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67132, 41.93967], [-87.67147, 41.93967]]}, "type": "Feature", "properties": {"num_passengers": 4318}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67147, 41.93967], [-87.6737, 41.93965]]}, "type": "Feature", "properties": {"num_passengers": 4318}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6737, 41.93965], [-87.67385, 41.93966]]}, "type": "Feature", "properties": {"num_passengers": 4318}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6692, 41.93972], [-87.67132, 41.93967]]}, "type": "Feature", "properties": {"num_passengers": 4318}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.87493], [-87.62418, 41.8751]]}, "type": "Feature", "properties": {"num_passengers": 4319}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63582, 41.89653], [-87.63436, 41.89655]]}, "type": "Feature", "properties": {"num_passengers": 4320}}, {"geometry": {"type": "LineString", "coordinates": [[-87.666, 41.93977], [-87.66908, 41.93972]]}, "type": "Feature", "properties": {"num_passengers": 4325}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62041, 41.71533], [-87.62044, 41.71554]]}, "type": "Feature", "properties": {"num_passengers": 4326}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6325, 41.88511], [-87.63249, 41.88495]]}, "type": "Feature", "properties": {"num_passengers": 4327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63461, 41.91883], [-87.63461, 41.91883]]}, "type": "Feature", "properties": {"num_passengers": 4336}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63428, 41.91739], [-87.63418, 41.91709]]}, "type": "Feature", "properties": {"num_passengers": 4336}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63487, 41.91928], [-87.6348, 41.91918]]}, "type": "Feature", "properties": {"num_passengers": 4336}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63324, 41.91593], [-87.6331, 41.91577]]}, "type": "Feature", "properties": {"num_passengers": 4336}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63401, 41.91674], [-87.6339, 41.91659]]}, "type": "Feature", "properties": {"num_passengers": 4336}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6328, 41.91529], [-87.63275, 41.91518]]}, "type": "Feature", "properties": {"num_passengers": 4336}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66908, 41.93972], [-87.6692, 41.93972]]}, "type": "Feature", "properties": {"num_passengers": 4336}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63285, 41.9154], [-87.6328, 41.91529]]}, "type": "Feature", "properties": {"num_passengers": 4336}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66562, 41.89606], [-87.66489, 41.89607]]}, "type": "Feature", "properties": {"num_passengers": 4336}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63472, 41.91907], [-87.63466, 41.91894]]}, "type": "Feature", "properties": {"num_passengers": 4336}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63458, 41.91875], [-87.63452, 41.91855]]}, "type": "Feature", "properties": {"num_passengers": 4336}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63442, 41.91811], [-87.63436, 41.91779]]}, "type": "Feature", "properties": {"num_passengers": 4336}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63294, 41.91557], [-87.63285, 41.9154]]}, "type": "Feature", "properties": {"num_passengers": 4336}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63337, 41.91607], [-87.63324, 41.91593]]}, "type": "Feature", "properties": {"num_passengers": 4336}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63466, 41.91894], [-87.63461, 41.91883]]}, "type": "Feature", "properties": {"num_passengers": 4336}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63436, 41.91779], [-87.63428, 41.91739]]}, "type": "Feature", "properties": {"num_passengers": 4336}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63418, 41.91709], [-87.63409, 41.91688]]}, "type": "Feature", "properties": {"num_passengers": 4336}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63409, 41.91688], [-87.63401, 41.91674]]}, "type": "Feature", "properties": {"num_passengers": 4336}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6331, 41.91577], [-87.63304, 41.9157]]}, "type": "Feature", "properties": {"num_passengers": 4336}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63304, 41.9157], [-87.63294, 41.91557]]}, "type": "Feature", "properties": {"num_passengers": 4336}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63358, 41.91625], [-87.63337, 41.91607]]}, "type": "Feature", "properties": {"num_passengers": 4336}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63461, 41.91883], [-87.63458, 41.91875]]}, "type": "Feature", "properties": {"num_passengers": 4336}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63452, 41.91855], [-87.63447, 41.91836]]}, "type": "Feature", "properties": {"num_passengers": 4336}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63373, 41.91642], [-87.63358, 41.91625]]}, "type": "Feature", "properties": {"num_passengers": 4336}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63447, 41.91836], [-87.63442, 41.91811]]}, "type": "Feature", "properties": {"num_passengers": 4336}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63275, 41.91518], [-87.63269, 41.91505]]}, "type": "Feature", "properties": {"num_passengers": 4336}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62041, 41.7151], [-87.62041, 41.71533]]}, "type": "Feature", "properties": {"num_passengers": 4336}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6339, 41.91659], [-87.63373, 41.91642]]}, "type": "Feature", "properties": {"num_passengers": 4336}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6348, 41.91918], [-87.63472, 41.91907]]}, "type": "Feature", "properties": {"num_passengers": 4336}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64137, 41.94504], [-87.64145, 41.94518]]}, "type": "Feature", "properties": {"num_passengers": 4337}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65361, 41.75059], [-87.65382, 41.75059]]}, "type": "Feature", "properties": {"num_passengers": 4343}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65338, 41.7506], [-87.65361, 41.75059]]}, "type": "Feature", "properties": {"num_passengers": 4343}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65442, 41.75056], [-87.65465, 41.75056]]}, "type": "Feature", "properties": {"num_passengers": 4343}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65382, 41.75059], [-87.65395, 41.75059]]}, "type": "Feature", "properties": {"num_passengers": 4343}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65168, 41.75059], [-87.65196, 41.75059]]}, "type": "Feature", "properties": {"num_passengers": 4343}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65395, 41.75059], [-87.65417, 41.75058]]}, "type": "Feature", "properties": {"num_passengers": 4343}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65116, 41.75054], [-87.65099, 41.75059]]}, "type": "Feature", "properties": {"num_passengers": 4343}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65228, 41.75058], [-87.65258, 41.75056]]}, "type": "Feature", "properties": {"num_passengers": 4343}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65196, 41.75059], [-87.65228, 41.75058]]}, "type": "Feature", "properties": {"num_passengers": 4343}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6491, 41.75059], [-87.64927, 41.7506]]}, "type": "Feature", "properties": {"num_passengers": 4343}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65465, 41.75056], [-87.65485, 41.75056]]}, "type": "Feature", "properties": {"num_passengers": 4343}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65121, 41.75059], [-87.65144, 41.75059]]}, "type": "Feature", "properties": {"num_passengers": 4343}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65099, 41.75059], [-87.65121, 41.75059]]}, "type": "Feature", "properties": {"num_passengers": 4343}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65144, 41.75059], [-87.65168, 41.75059]]}, "type": "Feature", "properties": {"num_passengers": 4343}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64927, 41.7506], [-87.65116, 41.75054]]}, "type": "Feature", "properties": {"num_passengers": 4343}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65258, 41.75056], [-87.6529, 41.75058]]}, "type": "Feature", "properties": {"num_passengers": 4343}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65314, 41.75059], [-87.65338, 41.7506]]}, "type": "Feature", "properties": {"num_passengers": 4343}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65417, 41.75058], [-87.65442, 41.75056]]}, "type": "Feature", "properties": {"num_passengers": 4343}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6529, 41.75058], [-87.65314, 41.75059]]}, "type": "Feature", "properties": {"num_passengers": 4343}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59531, 41.75144], [-87.59533, 41.75144]]}, "type": "Feature", "properties": {"num_passengers": 4345}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62766, 41.87286], [-87.62765, 41.87275]]}, "type": "Feature", "properties": {"num_passengers": 4352}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6339, 41.91478], [-87.63384, 41.91468]]}, "type": "Feature", "properties": {"num_passengers": 4363}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66474, 41.89615], [-87.66532, 41.89614]]}, "type": "Feature", "properties": {"num_passengers": 4366}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64028, 41.92499], [-87.64036, 41.92512]]}, "type": "Feature", "properties": {"num_passengers": 4369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61954, 41.7511], [-87.6196, 41.7511]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61885, 41.75107], [-87.61909, 41.75107]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61841, 41.7511], [-87.61861, 41.75109]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62303, 41.75103], [-87.62329, 41.75103]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62349, 41.75103], [-87.62367, 41.75103]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62074, 41.75105], [-87.62095, 41.75107]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61931, 41.75107], [-87.61954, 41.7511]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62206, 41.75105], [-87.62227, 41.75105]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62124, 41.75107], [-87.62144, 41.75107]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61623, 41.75114], [-87.61639, 41.75114]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61861, 41.75109], [-87.61885, 41.75107]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61639, 41.75114], [-87.6166, 41.75114]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62367, 41.75103], [-87.62391, 41.75104]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62429, 41.7511], [-87.62445, 41.75112]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62445, 41.75112], [-87.62465, 41.75113]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61701, 41.75111], [-87.61725, 41.75111]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6166, 41.75114], [-87.61679, 41.75112]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62391, 41.75104], [-87.62413, 41.75107]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62003, 41.75108], [-87.62032, 41.75107]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61909, 41.75107], [-87.61931, 41.75107]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61602, 41.75114], [-87.61623, 41.75114]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62227, 41.75105], [-87.62248, 41.75105]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62117, 41.75107], [-87.62124, 41.75107]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62144, 41.75107], [-87.62163, 41.75107]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62329, 41.75103], [-87.62349, 41.75103]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62163, 41.75107], [-87.62184, 41.75107]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61679, 41.75112], [-87.61701, 41.75111]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62051, 41.75105], [-87.62074, 41.75105]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61822, 41.75111], [-87.61841, 41.7511]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61769, 41.75112], [-87.61792, 41.75112]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62184, 41.75107], [-87.62206, 41.75105]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62272, 41.75104], [-87.62286, 41.75104]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6196, 41.7511], [-87.61982, 41.75109]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61749, 41.75112], [-87.61769, 41.75112]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62095, 41.75107], [-87.62117, 41.75107]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61792, 41.75112], [-87.61798, 41.75112]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61982, 41.75109], [-87.62003, 41.75108]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62465, 41.75113], [-87.62492, 41.75113]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62248, 41.75105], [-87.62272, 41.75104]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61798, 41.75112], [-87.61822, 41.75111]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62032, 41.75107], [-87.62051, 41.75105]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62413, 41.75107], [-87.62429, 41.7511]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62286, 41.75104], [-87.62303, 41.75103]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61725, 41.75111], [-87.61749, 41.75112]]}, "type": "Feature", "properties": {"num_passengers": 4370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65619, 41.89629], [-87.65679, 41.89628]]}, "type": "Feature", "properties": {"num_passengers": 4378}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65968, 41.89623], [-87.66016, 41.89622]]}, "type": "Feature", "properties": {"num_passengers": 4378}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66177, 41.8962], [-87.66225, 41.89619]]}, "type": "Feature", "properties": {"num_passengers": 4378}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6607, 41.89621], [-87.66125, 41.89621]]}, "type": "Feature", "properties": {"num_passengers": 4378}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66416, 41.89616], [-87.66466, 41.89616]]}, "type": "Feature", "properties": {"num_passengers": 4378}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66345, 41.89617], [-87.66416, 41.89616]]}, "type": "Feature", "properties": {"num_passengers": 4378}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66125, 41.89621], [-87.66177, 41.8962]]}, "type": "Feature", "properties": {"num_passengers": 4378}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65737, 41.89627], [-87.65747, 41.89627]]}, "type": "Feature", "properties": {"num_passengers": 4378}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66289, 41.89618], [-87.66345, 41.89617]]}, "type": "Feature", "properties": {"num_passengers": 4378}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66225, 41.89619], [-87.66235, 41.89619]]}, "type": "Feature", "properties": {"num_passengers": 4378}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65857, 41.89625], [-87.65911, 41.89623]]}, "type": "Feature", "properties": {"num_passengers": 4378}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65801, 41.89625], [-87.65857, 41.89625]]}, "type": "Feature", "properties": {"num_passengers": 4378}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66016, 41.89622], [-87.66025, 41.89622]]}, "type": "Feature", "properties": {"num_passengers": 4378}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65679, 41.89628], [-87.65737, 41.89627]]}, "type": "Feature", "properties": {"num_passengers": 4378}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65911, 41.89623], [-87.65968, 41.89623]]}, "type": "Feature", "properties": {"num_passengers": 4378}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65747, 41.89627], [-87.65801, 41.89625]]}, "type": "Feature", "properties": {"num_passengers": 4378}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66025, 41.89622], [-87.6607, 41.89621]]}, "type": "Feature", "properties": {"num_passengers": 4378}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66466, 41.89616], [-87.66474, 41.89615]]}, "type": "Feature", "properties": {"num_passengers": 4378}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66235, 41.89619], [-87.66289, 41.89618]]}, "type": "Feature", "properties": {"num_passengers": 4378}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62001, 41.71191], [-87.62001, 41.71212]]}, "type": "Feature", "properties": {"num_passengers": 4385}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61985, 41.71021], [-87.61985, 41.7104]]}, "type": "Feature", "properties": {"num_passengers": 4385}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61987, 41.7096], [-87.61987, 41.7098]]}, "type": "Feature", "properties": {"num_passengers": 4385}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61985, 41.71055], [-87.61985, 41.71069]]}, "type": "Feature", "properties": {"num_passengers": 4385}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61987, 41.71088], [-87.6199, 41.7111]]}, "type": "Feature", "properties": {"num_passengers": 4385}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61985, 41.71069], [-87.61985, 41.71074]]}, "type": "Feature", "properties": {"num_passengers": 4385}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62004, 41.71244], [-87.62004, 41.71254]]}, "type": "Feature", "properties": {"num_passengers": 4385}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6199, 41.7111], [-87.61993, 41.71129]]}, "type": "Feature", "properties": {"num_passengers": 4385}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61989, 41.70922], [-87.61989, 41.7094]]}, "type": "Feature", "properties": {"num_passengers": 4385}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62004, 41.71254], [-87.62006, 41.71274]]}, "type": "Feature", "properties": {"num_passengers": 4385}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62016, 41.71353], [-87.62019, 41.71374]]}, "type": "Feature", "properties": {"num_passengers": 4385}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62, 41.7117], [-87.62001, 41.71191]]}, "type": "Feature", "properties": {"num_passengers": 4385}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61995, 41.71149], [-87.62, 41.7117]]}, "type": "Feature", "properties": {"num_passengers": 4385}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62028, 41.71443], [-87.62028, 41.71445]]}, "type": "Feature", "properties": {"num_passengers": 4385}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62025, 41.71427], [-87.62028, 41.71443]]}, "type": "Feature", "properties": {"num_passengers": 4385}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62019, 41.71374], [-87.62022, 41.71394]]}, "type": "Feature", "properties": {"num_passengers": 4385}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62001, 41.71212], [-87.62003, 41.71231]]}, "type": "Feature", "properties": {"num_passengers": 4385}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61993, 41.71129], [-87.61995, 41.71149]]}, "type": "Feature", "properties": {"num_passengers": 4385}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6199, 41.70908], [-87.61989, 41.70922]]}, "type": "Feature", "properties": {"num_passengers": 4385}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61985, 41.7104], [-87.61985, 41.71055]]}, "type": "Feature", "properties": {"num_passengers": 4385}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62033, 41.71474], [-87.62038, 41.71491]]}, "type": "Feature", "properties": {"num_passengers": 4385}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62028, 41.71445], [-87.62033, 41.7146]]}, "type": "Feature", "properties": {"num_passengers": 4385}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61985, 41.71], [-87.61985, 41.71021]]}, "type": "Feature", "properties": {"num_passengers": 4385}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62024, 41.71413], [-87.62025, 41.71427]]}, "type": "Feature", "properties": {"num_passengers": 4385}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61989, 41.7094], [-87.61987, 41.7096]]}, "type": "Feature", "properties": {"num_passengers": 4385}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62033, 41.7146], [-87.62033, 41.71474]]}, "type": "Feature", "properties": {"num_passengers": 4385}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62011, 41.71305], [-87.62012, 41.7132]]}, "type": "Feature", "properties": {"num_passengers": 4385}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62003, 41.71231], [-87.62004, 41.71244]]}, "type": "Feature", "properties": {"num_passengers": 4385}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62022, 41.71394], [-87.62024, 41.71413]]}, "type": "Feature", "properties": {"num_passengers": 4385}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62009, 41.7129], [-87.62011, 41.71305]]}, "type": "Feature", "properties": {"num_passengers": 4385}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62006, 41.71274], [-87.62009, 41.7129]]}, "type": "Feature", "properties": {"num_passengers": 4385}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62014, 41.71336], [-87.62016, 41.71353]]}, "type": "Feature", "properties": {"num_passengers": 4385}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61987, 41.7098], [-87.61985, 41.71]]}, "type": "Feature", "properties": {"num_passengers": 4385}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62012, 41.7132], [-87.62014, 41.71336]]}, "type": "Feature", "properties": {"num_passengers": 4385}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61985, 41.71074], [-87.61987, 41.71088]]}, "type": "Feature", "properties": {"num_passengers": 4385}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62382, 41.85477], [-87.62382, 41.85491]]}, "type": "Feature", "properties": {"num_passengers": 4388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62381, 41.85463], [-87.62382, 41.85477]]}, "type": "Feature", "properties": {"num_passengers": 4388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62038, 41.71491], [-87.62041, 41.7151]]}, "type": "Feature", "properties": {"num_passengers": 4391}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64198, 41.94711], [-87.64209, 41.9473]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64603, 41.96004], [-87.64603, 41.96025]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64754, 41.96818], [-87.64759, 41.96838]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62645, 41.91346], [-87.62656, 41.91366]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64749, 41.96797], [-87.64754, 41.96818]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64823, 41.97118], [-87.64826, 41.9714]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64556, 41.95789], [-87.64564, 41.95807]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64327, 41.94935], [-87.64338, 41.94953]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64608, 41.96122], [-87.6461, 41.96141]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63192, 41.9301], [-87.63192, 41.93032]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64145, 41.9462], [-87.64155, 41.94639]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63462, 41.93757], [-87.63483, 41.93771]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62556, 41.90923], [-87.62558, 41.90942]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63192, 41.9297], [-87.63192, 41.9299]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62558, 41.90942], [-87.62561, 41.90962]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63052, 41.92432], [-87.63055, 41.92452]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62361, 41.90256], [-87.62362, 41.90269]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63215, 41.93449], [-87.63224, 41.93469]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64886, 41.97368], [-87.64893, 41.97386]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64447, 41.95157], [-87.64452, 41.95177]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63001, 41.92271], [-87.63007, 41.92291]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64089, 41.94505], [-87.641, 41.94524]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64447, 41.95378], [-87.64447, 41.95396]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62834, 41.9172], [-87.62844, 41.91742]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63192, 41.93032], [-87.63192, 41.93052]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64708, 41.96622], [-87.64715, 41.96641]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64449, 41.95279], [-87.64449, 41.95298]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6255, 41.90883], [-87.62553, 41.90903]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63185, 41.93294], [-87.63185, 41.93314]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62744, 41.91542], [-87.62755, 41.91561]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62531, 41.90804], [-87.62537, 41.90824]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62391, 41.90118], [-87.62381, 41.90147]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64165, 41.94657], [-87.64176, 41.94674]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63519, 41.93799], [-87.63538, 41.93813]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64451, 41.95258], [-87.64449, 41.95279]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64176, 41.94674], [-87.64187, 41.94693]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63425, 41.93728], [-87.63445, 41.93743]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62863, 41.91782], [-87.62869, 41.91803]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64656, 41.96387], [-87.64659, 41.96405]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64241, 41.94786], [-87.6425, 41.94805]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63192, 41.92949], [-87.63192, 41.9297]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64759, 41.96838], [-87.64765, 41.96859]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64447, 41.95396], [-87.64447, 41.95416]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6321, 41.93429], [-87.63215, 41.93449]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64371, 41.95007], [-87.64384, 41.95025]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62869, 41.91803], [-87.62879, 41.91825]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64452, 41.95197], [-87.64452, 41.95218]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6492, 41.97476], [-87.64923, 41.97493]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63967, 41.94275], [-87.63976, 41.94294]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62899, 41.91889], [-87.62907, 41.91909]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64783, 41.96937], [-87.64786, 41.96956]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62462, 41.90552], [-87.6247, 41.9057]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63038, 41.92392], [-87.63046, 41.92412]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62401, 41.89896], [-87.62401, 41.89906]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62607, 41.91267], [-87.62616, 41.91286]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62403, 41.89966], [-87.62405, 41.89987]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62362, 41.90269], [-87.62365, 41.90282]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64187, 41.94693], [-87.64198, 41.94711]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63185, 41.93274], [-87.63185, 41.93294]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62796, 41.91639], [-87.62807, 41.9166]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62359, 41.90215], [-87.62359, 41.90229]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62405, 41.90003], [-87.62406, 41.9002]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64873, 41.9733], [-87.64878, 41.97349]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63824, 41.94057], [-87.63836, 41.94074]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62616, 41.91286], [-87.62626, 41.91307]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6244, 41.90464], [-87.62445, 41.90481]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64791, 41.96976], [-87.64796, 41.96995]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6464, 41.96311], [-87.64643, 41.9633]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64048, 41.94428], [-87.64059, 41.94447]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6474, 41.96757], [-87.64745, 41.96776]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64564, 41.95807], [-87.64568, 41.95826]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64899, 41.97404], [-87.64905, 41.97422]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64494, 41.95634], [-87.64502, 41.95653]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62947, 41.92061], [-87.62952, 41.92084]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64799, 41.97016], [-87.64804, 41.97035]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64443, 41.95138], [-87.64447, 41.95157]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62429, 41.90431], [-87.62434, 41.90446]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64595, 41.95944], [-87.646, 41.95964]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63019, 41.92331], [-87.63025, 41.92351]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63976, 41.94294], [-87.63986, 41.94313]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64826, 41.9714], [-87.64831, 41.97159]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64831, 41.97159], [-87.64835, 41.97179]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62852, 41.91763], [-87.62863, 41.91782]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6238, 41.90325], [-87.62386, 41.90338]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63135, 41.92695], [-87.63139, 41.92714]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62526, 41.90783], [-87.62531, 41.90804]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63445, 41.93743], [-87.63462, 41.93757]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62995, 41.9225], [-87.63001, 41.92271]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64905, 41.97422], [-87.6491, 41.97438]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62376, 41.9016], [-87.62372, 41.90174]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62844, 41.91742], [-87.62852, 41.91763]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62721, 41.91503], [-87.62734, 41.91522]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64853, 41.97255], [-87.64858, 41.97273]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63197, 41.93393], [-87.63204, 41.93409]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64517, 41.95692], [-87.64527, 41.95712]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64686, 41.96513], [-87.64687, 41.96532]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63689, 41.93922], [-87.63707, 41.93937]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64317, 41.94917], [-87.64327, 41.94935]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64648, 41.9635], [-87.64653, 41.96368]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62656, 41.91366], [-87.62664, 41.91385]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63372, 41.93686], [-87.63389, 41.93698]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63189, 41.93353], [-87.63192, 41.93373]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64114, 41.94563], [-87.64125, 41.94581]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63128, 41.92677], [-87.63135, 41.92695]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.90415], [-87.62429, 41.90431]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64454, 41.95495], [-87.64457, 41.95514]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63182, 41.92868], [-87.63189, 41.92888]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64447, 41.95435], [-87.64449, 41.95454]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62766, 41.9158], [-87.62775, 41.916]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62702, 41.91464], [-87.62712, 41.91484]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64808, 41.97056], [-87.64813, 41.97077]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64616, 41.96197], [-87.64619, 41.96215]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64274, 41.94843], [-87.64282, 41.94861]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63192, 41.9299], [-87.63192, 41.9301]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63189, 41.93214], [-87.63187, 41.93234]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63189, 41.93195], [-87.63189, 41.93214]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64449, 41.95454], [-87.64451, 41.95475]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62907, 41.91909], [-87.62912, 41.91931]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.641, 41.94524], [-87.64106, 41.94543]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63117, 41.92642], [-87.63123, 41.9266]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62521, 41.90763], [-87.62526, 41.90783]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64624, 41.96234], [-87.64627, 41.96252]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64296, 41.9488], [-87.64306, 41.94899]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6331, 41.93618], [-87.63324, 41.93635]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64703, 41.96605], [-87.64708, 41.96622]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6319, 41.93072], [-87.6319, 41.93093]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62491, 41.90645], [-87.62496, 41.90664]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64449, 41.95319], [-87.64447, 41.95339]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63274, 41.93564], [-87.63286, 41.93582]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64835, 41.97179], [-87.6484, 41.97198]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6425, 41.94805], [-87.64262, 41.94824]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64583, 41.95885], [-87.64587, 41.95904]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62363, 41.90202], [-87.62359, 41.90215]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63082, 41.92529], [-87.63087, 41.92549]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63101, 41.92587], [-87.63106, 41.92606]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64687, 41.96532], [-87.64692, 41.96549]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64479, 41.95595], [-87.64487, 41.95615]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64603, 41.96025], [-87.64603, 41.96044]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63146, 41.92733], [-87.6315, 41.92751]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63957, 41.94256], [-87.63967, 41.94275]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63007, 41.92291], [-87.63012, 41.92312]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62926, 41.91975], [-87.62933, 41.91996]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6319, 41.93133], [-87.6319, 41.93154]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6324, 41.93508], [-87.6325, 41.93527]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6319, 41.93093], [-87.6319, 41.93113]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63502, 41.93785], [-87.63519, 41.93799]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63808, 41.94038], [-87.63824, 41.94057]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6463, 41.96272], [-87.64635, 41.96292]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62572, 41.91106], [-87.62572, 41.91127]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.89879], [-87.62401, 41.89896]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62933, 41.91996], [-87.62938, 41.92018]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63575, 41.93841], [-87.63592, 41.93853]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62401, 41.89922], [-87.62402, 41.89936]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63836, 41.94074], [-87.63851, 41.94091]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64745, 41.96776], [-87.64749, 41.96797]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64449, 41.95298], [-87.64449, 41.95319]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64362, 41.94988], [-87.64371, 41.95007]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64016, 41.9437], [-87.64029, 41.94389]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64457, 41.95514], [-87.64463, 41.95534]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64796, 41.96995], [-87.64799, 41.97016]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62636, 41.91327], [-87.62645, 41.91346]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63231, 41.93489], [-87.6324, 41.93508]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64702, 41.96586], [-87.64703, 41.96605]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63299, 41.936], [-87.6331, 41.93618]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6245, 41.90498], [-87.62453, 41.90516]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64262, 41.94824], [-87.64274, 41.94843]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63185, 41.93314], [-87.63187, 41.93333]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6423, 41.94767], [-87.64241, 41.94786]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63165, 41.92789], [-87.6317, 41.92809]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6248, 41.90606], [-87.62485, 41.90625]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62938, 41.92018], [-87.62942, 41.9204]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64487, 41.95615], [-87.64494, 41.95634]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62359, 41.90229], [-87.62359, 41.90242]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63025, 41.92351], [-87.63033, 41.92371]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63074, 41.9251], [-87.63082, 41.92529]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64804, 41.97035], [-87.64808, 41.97056]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62694, 41.91444], [-87.62702, 41.91464]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64392, 41.95043], [-87.64405, 41.95061]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64511, 41.95673], [-87.64517, 41.95692]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62396, 41.90095], [-87.62391, 41.90118]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62969, 41.92169], [-87.62974, 41.92191]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63557, 41.93826], [-87.63575, 41.93841]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63792, 41.94022], [-87.63808, 41.94038]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6317, 41.92809], [-87.63176, 41.92829]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62408, 41.90382], [-87.62418, 41.90398]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64473, 41.95575], [-87.64479, 41.95595]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63176, 41.92829], [-87.63181, 41.92849]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64818, 41.97097], [-87.64823, 41.97118]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62988, 41.92231], [-87.62995, 41.9225]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64668, 41.96441], [-87.64672, 41.96459]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62566, 41.91023], [-87.62567, 41.91043]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6461, 41.96141], [-87.64611, 41.96159]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64915, 41.97457], [-87.6492, 41.97476]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64541, 41.9575], [-87.64549, 41.95769]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64672, 41.96459], [-87.64676, 41.96477]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63762, 41.9399], [-87.63776, 41.94005]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62755, 41.91561], [-87.62766, 41.9158]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63224, 41.93469], [-87.63231, 41.93489]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62626, 41.91307], [-87.62636, 41.91327]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63123, 41.9266], [-87.63128, 41.92677]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64155, 41.94639], [-87.64165, 41.94657]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62589, 41.91229], [-87.62597, 41.91248]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6296, 41.92126], [-87.62963, 41.92148]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64867, 41.97311], [-87.64873, 41.9733]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64619, 41.96215], [-87.64624, 41.96234]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64008, 41.9435], [-87.64016, 41.9437]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62817, 41.9168], [-87.62826, 41.917]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.89863], [-87.62402, 41.89879]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64038, 41.94408], [-87.64048, 41.94428]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64447, 41.95358], [-87.64447, 41.95378]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63106, 41.92606], [-87.63112, 41.92624]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64427, 41.95098], [-87.64435, 41.95118]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6325, 41.93527], [-87.63261, 41.93546]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62561, 41.90962], [-87.62562, 41.90983]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64219, 41.94748], [-87.6423, 41.94767]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62564, 41.91002], [-87.62566, 41.91023]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63261, 41.93546], [-87.63274, 41.93564]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63986, 41.94313], [-87.63995, 41.94331]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63069, 41.9249], [-87.63074, 41.9251]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62887, 41.91845], [-87.62893, 41.91867]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62942, 41.9204], [-87.62947, 41.92061]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64452, 41.95239], [-87.64451, 41.95258]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63903, 41.94161], [-87.63914, 41.9418]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64653, 41.96368], [-87.64656, 41.96387]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62807, 41.9166], [-87.62817, 41.9168]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64861, 41.97292], [-87.64867, 41.97311]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63851, 41.94091], [-87.63865, 41.94108]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63865, 41.94108], [-87.63879, 41.94126]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62974, 41.92191], [-87.62984, 41.9221]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.90398], [-87.62423, 41.90415]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63632, 41.93882], [-87.63649, 41.93893]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6251, 41.90722], [-87.62515, 41.90743]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.90367], [-87.62408, 41.90382]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64029, 41.94389], [-87.64038, 41.94408]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64451, 41.95475], [-87.64454, 41.95495]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63776, 41.94005], [-87.63792, 41.94022]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62577, 41.91189], [-87.62585, 41.91209]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63406, 41.93714], [-87.63425, 41.93728]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62664, 41.91385], [-87.62675, 41.91405]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64447, 41.95416], [-87.64447, 41.95435]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63189, 41.92888], [-87.6319, 41.92909]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64306, 41.94899], [-87.64317, 41.94917]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62785, 41.91619], [-87.62796, 41.91639]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62553, 41.90903], [-87.62556, 41.90923]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64692, 41.96549], [-87.64699, 41.96568]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64611, 41.96159], [-87.64613, 41.96178]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62485, 41.90625], [-87.62491, 41.90645]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62562, 41.90983], [-87.62564, 41.91002]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64858, 41.97273], [-87.64861, 41.97292]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64848, 41.97237], [-87.64853, 41.97255]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64676, 41.96477], [-87.6468, 41.96495]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64447, 41.95339], [-87.64447, 41.95358]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62515, 41.90743], [-87.62521, 41.90763]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64549, 41.95769], [-87.64556, 41.95789]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62365, 41.90282], [-87.62369, 41.90298]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62401, 41.90075], [-87.62396, 41.90095]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64452, 41.95177], [-87.64452, 41.95197]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63324, 41.93635], [-87.6334, 41.93652]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6491, 41.97438], [-87.64915, 41.97457]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62546, 41.90864], [-87.6255, 41.90883]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64845, 41.97217], [-87.64848, 41.97237]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62372, 41.90174], [-87.62367, 41.90188]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63204, 41.93409], [-87.6321, 41.93429]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64878, 41.97349], [-87.64886, 41.97368]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63187, 41.93234], [-87.63187, 41.93254]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62537, 41.90824], [-87.62542, 41.90844]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64417, 41.9508], [-87.64427, 41.95098]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62399, 41.89799], [-87.624, 41.89825]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62952, 41.92084], [-87.62955, 41.92105]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64527, 41.95712], [-87.64533, 41.95731]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64718, 41.9666], [-87.64722, 41.96679]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62405, 41.89987], [-87.62405, 41.90003]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63046, 41.92412], [-87.63052, 41.92432]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62496, 41.90664], [-87.625, 41.90683]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63192, 41.93052], [-87.6319, 41.93072]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64715, 41.96641], [-87.64718, 41.9666]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63055, 41.92452], [-87.63063, 41.92471]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64209, 41.9473], [-87.64219, 41.94748]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6247, 41.9057], [-87.62473, 41.90588]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62734, 41.91522], [-87.62744, 41.91542]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62404, 41.90056], [-87.62401, 41.90075]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63157, 41.9277], [-87.63165, 41.92789]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62712, 41.91484], [-87.62721, 41.91503]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64778, 41.96917], [-87.64783, 41.96937]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62367, 41.90188], [-87.62363, 41.90202]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64587, 41.95904], [-87.64592, 41.95924]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62572, 41.91127], [-87.62572, 41.91148]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63538, 41.93813], [-87.63557, 41.93826]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63927, 41.942], [-87.63935, 41.94219]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64699, 41.96568], [-87.64702, 41.96586]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64134, 41.94601], [-87.64145, 41.9462]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62912, 41.91931], [-87.6292, 41.91953]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64613, 41.96178], [-87.64616, 41.96197]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64452, 41.95218], [-87.64452, 41.95239]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62406, 41.90037], [-87.62404, 41.90056]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62775, 41.916], [-87.62785, 41.91619]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62574, 41.91168], [-87.62577, 41.91189]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64059, 41.94447], [-87.64068, 41.94467]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64533, 41.95731], [-87.64541, 41.9575]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63727, 41.93958], [-87.63744, 41.93973]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64643, 41.9633], [-87.64648, 41.9635]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62394, 41.90352], [-87.62402, 41.90367]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62373, 41.90312], [-87.6238, 41.90325]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6292, 41.91953], [-87.62926, 41.91975]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64592, 41.95924], [-87.64595, 41.95944]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63995, 41.94331], [-87.64008, 41.9435]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63012, 41.92312], [-87.63019, 41.92331]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64603, 41.96044], [-87.64605, 41.96064]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63189, 41.93174], [-87.63189, 41.93195]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64727, 41.96699], [-87.6473, 41.96717]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63033, 41.92371], [-87.63038, 41.92392]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64068, 41.94467], [-87.64078, 41.94485]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62569, 41.91085], [-87.62572, 41.91106]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64767, 41.96878], [-87.64772, 41.96898]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64735, 41.96737], [-87.6474, 41.96757]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6315, 41.92751], [-87.63157, 41.9277]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64605, 41.96064], [-87.64605, 41.96083]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62473, 41.90588], [-87.6248, 41.90606]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64772, 41.96898], [-87.64778, 41.96917]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63087, 41.92549], [-87.63093, 41.92568]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63187, 41.93333], [-87.63189, 41.93353]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6319, 41.93154], [-87.63189, 41.93174]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62445, 41.90481], [-87.6245, 41.90498]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6367, 41.93908], [-87.63689, 41.93922]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.89948], [-87.62403, 41.89966]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6473, 41.96717], [-87.64735, 41.96737]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62984, 41.9221], [-87.62988, 41.92231]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64338, 41.94953], [-87.64349, 41.94971]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6484, 41.97198], [-87.64845, 41.97217]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63592, 41.93853], [-87.63613, 41.93868]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64349, 41.94971], [-87.64362, 41.94988]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64078, 41.94485], [-87.64089, 41.94505]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62369, 41.90298], [-87.62373, 41.90312]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62826, 41.917], [-87.62834, 41.9172]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64579, 41.95865], [-87.64583, 41.95885]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.646, 41.95984], [-87.64603, 41.96004]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63707, 41.93937], [-87.63727, 41.93958]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62406, 41.9002], [-87.62406, 41.90037]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63879, 41.94126], [-87.63892, 41.94143]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62401, 41.89843], [-87.62402, 41.89863]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.646, 41.95964], [-87.646, 41.95984]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63613, 41.93868], [-87.63632, 41.93882]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6334, 41.93652], [-87.63356, 41.93669]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62879, 41.91825], [-87.62887, 41.91845]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64765, 41.96859], [-87.64767, 41.96878]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64664, 41.96424], [-87.64668, 41.96441]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64575, 41.95845], [-87.64579, 41.95865]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62434, 41.90446], [-87.6244, 41.90464]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64435, 41.95118], [-87.64443, 41.95138]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63892, 41.94143], [-87.63903, 41.94161]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62585, 41.91209], [-87.62589, 41.91229]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64384, 41.95025], [-87.64392, 41.95043]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64605, 41.96083], [-87.64608, 41.96102]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.624, 41.89825], [-87.62401, 41.89843]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63483, 41.93771], [-87.63502, 41.93785]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63389, 41.93698], [-87.63406, 41.93714]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62685, 41.91426], [-87.62694, 41.91444]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63192, 41.92928], [-87.63192, 41.92949]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62567, 41.91043], [-87.62567, 41.91064]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62675, 41.91405], [-87.62685, 41.91426]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64635, 41.96292], [-87.6464, 41.96311]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63914, 41.9418], [-87.63927, 41.942]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62459, 41.90534], [-87.62462, 41.90552]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63187, 41.93254], [-87.63185, 41.93274]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64125, 41.94581], [-87.64134, 41.94601]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63356, 41.93669], [-87.63372, 41.93686]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62572, 41.91148], [-87.62574, 41.91168]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62597, 41.91248], [-87.62607, 41.91267]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64722, 41.96679], [-87.64727, 41.96699]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64786, 41.96956], [-87.64791, 41.96976]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63286, 41.93582], [-87.63299, 41.936]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64405, 41.95061], [-87.64417, 41.9508]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63744, 41.93973], [-87.63762, 41.9399]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6319, 41.93113], [-87.6319, 41.93133]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64282, 41.94861], [-87.64296, 41.9488]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63181, 41.92849], [-87.63182, 41.92868]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.625, 41.90683], [-87.62505, 41.90702]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64106, 41.94543], [-87.64114, 41.94563]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64502, 41.95653], [-87.64511, 41.95673]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62893, 41.91867], [-87.62899, 41.91889]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63944, 41.94237], [-87.63957, 41.94256]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63649, 41.93893], [-87.6367, 41.93908]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.89936], [-87.62402, 41.89948]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63192, 41.93373], [-87.63197, 41.93393]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64659, 41.96405], [-87.64664, 41.96424]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62401, 41.89906], [-87.62401, 41.89922]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64463, 41.95534], [-87.64468, 41.95555]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64468, 41.95555], [-87.64473, 41.95575]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63063, 41.92471], [-87.63069, 41.9249]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6319, 41.92909], [-87.63192, 41.92928]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62505, 41.90702], [-87.6251, 41.90722]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63935, 41.94219], [-87.63944, 41.94237]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62386, 41.90338], [-87.62394, 41.90352]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62542, 41.90844], [-87.62546, 41.90864]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63093, 41.92568], [-87.63101, 41.92587]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64608, 41.96102], [-87.64608, 41.96122]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64627, 41.96252], [-87.6463, 41.96272]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64813, 41.97077], [-87.64818, 41.97097]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63139, 41.92714], [-87.63146, 41.92733]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63112, 41.92624], [-87.63117, 41.92642]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62381, 41.90147], [-87.62376, 41.9016]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62453, 41.90516], [-87.62459, 41.90534]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62963, 41.92148], [-87.62969, 41.92169]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62567, 41.91064], [-87.62569, 41.91085]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64893, 41.97386], [-87.64899, 41.97404]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64568, 41.95826], [-87.64575, 41.95845]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62359, 41.90242], [-87.62361, 41.90256]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6468, 41.96495], [-87.64686, 41.96513]]}, "type": "Feature", "properties": {"num_passengers": 4400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63409, 41.91509], [-87.634, 41.91496]]}, "type": "Feature", "properties": {"num_passengers": 4403}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64145, 41.89644], [-87.64086, 41.89645]]}, "type": "Feature", "properties": {"num_passengers": 4406}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63727, 41.8965], [-87.63601, 41.89653]]}, "type": "Feature", "properties": {"num_passengers": 4406}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64215, 41.89644], [-87.64145, 41.89644]]}, "type": "Feature", "properties": {"num_passengers": 4406}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63742, 41.8965], [-87.63727, 41.8965]]}, "type": "Feature", "properties": {"num_passengers": 4406}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64086, 41.89645], [-87.64027, 41.89646]]}, "type": "Feature", "properties": {"num_passengers": 4406}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64279, 41.89643], [-87.64267, 41.89644]]}, "type": "Feature", "properties": {"num_passengers": 4406}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64267, 41.89644], [-87.64215, 41.89644]]}, "type": "Feature", "properties": {"num_passengers": 4406}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6434, 41.89643], [-87.64279, 41.89643]]}, "type": "Feature", "properties": {"num_passengers": 4406}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64017, 41.89645], [-87.63742, 41.8965]]}, "type": "Feature", "properties": {"num_passengers": 4406}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64027, 41.89646], [-87.64017, 41.89645]]}, "type": "Feature", "properties": {"num_passengers": 4406}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66377, 41.93979], [-87.666, 41.93977]]}, "type": "Feature", "properties": {"num_passengers": 4406}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63601, 41.89653], [-87.63582, 41.89653]]}, "type": "Feature", "properties": {"num_passengers": 4406}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62209, 41.87316], [-87.62187, 41.87315]]}, "type": "Feature", "properties": {"num_passengers": 4413}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62164, 41.87316], [-87.62138, 41.87317]]}, "type": "Feature", "properties": {"num_passengers": 4413}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62092, 41.87318], [-87.62073, 41.87319]]}, "type": "Feature", "properties": {"num_passengers": 4413}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62187, 41.87315], [-87.62164, 41.87316]]}, "type": "Feature", "properties": {"num_passengers": 4413}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6237, 41.87313], [-87.62342, 41.87314]]}, "type": "Feature", "properties": {"num_passengers": 4413}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62437, 41.87315], [-87.62412, 41.87313]]}, "type": "Feature", "properties": {"num_passengers": 4413}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62389, 41.87313], [-87.6237, 41.87313]]}, "type": "Feature", "properties": {"num_passengers": 4413}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62258, 41.87315], [-87.62232, 41.87315]]}, "type": "Feature", "properties": {"num_passengers": 4413}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62412, 41.87313], [-87.62389, 41.87313]]}, "type": "Feature", "properties": {"num_passengers": 4413}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62232, 41.87315], [-87.62209, 41.87316]]}, "type": "Feature", "properties": {"num_passengers": 4413}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62138, 41.87317], [-87.62116, 41.87318]]}, "type": "Feature", "properties": {"num_passengers": 4413}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62116, 41.87318], [-87.62092, 41.87318]]}, "type": "Feature", "properties": {"num_passengers": 4413}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62289, 41.87314], [-87.62258, 41.87315]]}, "type": "Feature", "properties": {"num_passengers": 4413}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62456, 41.87314], [-87.62437, 41.87315]]}, "type": "Feature", "properties": {"num_passengers": 4413}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62342, 41.87314], [-87.62316, 41.87314]]}, "type": "Feature", "properties": {"num_passengers": 4413}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62316, 41.87314], [-87.62289, 41.87314]]}, "type": "Feature", "properties": {"num_passengers": 4413}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64634, 41.75061], [-87.6491, 41.75059]]}, "type": "Feature", "properties": {"num_passengers": 4414}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63484, 41.91629], [-87.63474, 41.91615]]}, "type": "Feature", "properties": {"num_passengers": 4419}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63509, 41.91671], [-87.635, 41.91655]]}, "type": "Feature", "properties": {"num_passengers": 4419}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63466, 41.91602], [-87.63456, 41.91585]]}, "type": "Feature", "properties": {"num_passengers": 4419}}, {"geometry": {"type": "LineString", "coordinates": [[-87.635, 41.91655], [-87.63491, 41.91642]]}, "type": "Feature", "properties": {"num_passengers": 4419}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63456, 41.91585], [-87.63447, 41.91571]]}, "type": "Feature", "properties": {"num_passengers": 4419}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63417, 41.91523], [-87.63409, 41.91509]]}, "type": "Feature", "properties": {"num_passengers": 4419}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63425, 41.91539], [-87.63417, 41.91523]]}, "type": "Feature", "properties": {"num_passengers": 4419}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63439, 41.91557], [-87.63425, 41.91539]]}, "type": "Feature", "properties": {"num_passengers": 4419}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63447, 41.91571], [-87.63439, 41.91557]]}, "type": "Feature", "properties": {"num_passengers": 4419}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63491, 41.91642], [-87.63484, 41.91629]]}, "type": "Feature", "properties": {"num_passengers": 4419}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63474, 41.91615], [-87.63466, 41.91602]]}, "type": "Feature", "properties": {"num_passengers": 4419}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6277, 41.87499], [-87.62766, 41.87286]]}, "type": "Feature", "properties": {"num_passengers": 4431}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61977, 41.86606], [-87.61984, 41.86627]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62051, 41.87194], [-87.62052, 41.87218]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62036, 41.86934], [-87.62036, 41.86947]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62011, 41.86717], [-87.62016, 41.8674]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6197, 41.86586], [-87.61977, 41.86606]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62033, 41.86892], [-87.62036, 41.86909]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62036, 41.86909], [-87.62036, 41.86923]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62024, 41.86784], [-87.62028, 41.86807]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6199, 41.86648], [-87.61997, 41.86671]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62016, 41.8674], [-87.6202, 41.86763]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61965, 41.86567], [-87.6197, 41.86586]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62033, 41.86852], [-87.62033, 41.86872]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62041, 41.86981], [-87.62041, 41.87]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61984, 41.86627], [-87.6199, 41.86648]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62032, 41.86829], [-87.62033, 41.86852]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62052, 41.87218], [-87.62052, 41.87241]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61997, 41.86671], [-87.62004, 41.86694]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62051, 41.87171], [-87.62051, 41.87194]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62004, 41.86694], [-87.62011, 41.86717]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62044, 41.87021], [-87.62046, 41.87044]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62052, 41.87241], [-87.62054, 41.87264]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62038, 41.86965], [-87.62041, 41.86981]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62041, 41.87], [-87.62044, 41.87021]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62085, 41.87326], [-87.62102, 41.87326]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62047, 41.87092], [-87.62049, 41.87118]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61946, 41.86519], [-87.6195, 41.86532]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62054, 41.87282], [-87.62054, 41.87296]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6195, 41.86532], [-87.61955, 41.86548]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62028, 41.86807], [-87.62032, 41.86829]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61955, 41.86548], [-87.61965, 41.86567]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62054, 41.8731], [-87.62066, 41.87322]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62049, 41.87118], [-87.62051, 41.87144]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62051, 41.87144], [-87.62051, 41.87171]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62033, 41.86872], [-87.62033, 41.86892]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62046, 41.87044], [-87.62046, 41.87067]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62066, 41.87322], [-87.62085, 41.87326]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62054, 41.87264], [-87.62054, 41.87282]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62046, 41.87067], [-87.62047, 41.87092]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62102, 41.87326], [-87.62105, 41.87326]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62036, 41.86947], [-87.62038, 41.86965]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62036, 41.86923], [-87.62036, 41.86934]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6202, 41.86763], [-87.62024, 41.86784]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62054, 41.87296], [-87.62054, 41.8731]]}, "type": "Feature", "properties": {"num_passengers": 4440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63448, 41.91868], [-87.63451, 41.91877]]}, "type": "Feature", "properties": {"num_passengers": 4441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63471, 41.91916], [-87.63476, 41.91925]]}, "type": "Feature", "properties": {"num_passengers": 4441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63439, 41.91836], [-87.63443, 41.91852]]}, "type": "Feature", "properties": {"num_passengers": 4441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6331, 41.91585], [-87.63324, 41.91602]]}, "type": "Feature", "properties": {"num_passengers": 4441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63269, 41.9151], [-87.63273, 41.91522]]}, "type": "Feature", "properties": {"num_passengers": 4441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63451, 41.91877], [-87.63456, 41.91887]]}, "type": "Feature", "properties": {"num_passengers": 4441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63416, 41.91722], [-87.63421, 41.91739]]}, "type": "Feature", "properties": {"num_passengers": 4441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6339, 41.91671], [-87.63402, 41.9169]]}, "type": "Feature", "properties": {"num_passengers": 4441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63458, 41.91895], [-87.63464, 41.91906]]}, "type": "Feature", "properties": {"num_passengers": 4441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63346, 41.91622], [-87.63364, 41.91639]]}, "type": "Feature", "properties": {"num_passengers": 4441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63402, 41.9169], [-87.63411, 41.91706]]}, "type": "Feature", "properties": {"num_passengers": 4441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63464, 41.91906], [-87.63471, 41.91916]]}, "type": "Feature", "properties": {"num_passengers": 4441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63332, 41.91609], [-87.63346, 41.91622]]}, "type": "Feature", "properties": {"num_passengers": 4441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63273, 41.91522], [-87.63277, 41.91536]]}, "type": "Feature", "properties": {"num_passengers": 4441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63421, 41.91739], [-87.63423, 41.91755]]}, "type": "Feature", "properties": {"num_passengers": 4441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63487, 41.91934], [-87.63495, 41.91942]]}, "type": "Feature", "properties": {"num_passengers": 4441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63429, 41.91785], [-87.63433, 41.91798]]}, "type": "Feature", "properties": {"num_passengers": 4441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63435, 41.91816], [-87.63439, 41.91836]]}, "type": "Feature", "properties": {"num_passengers": 4441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63411, 41.91706], [-87.63416, 41.91722]]}, "type": "Feature", "properties": {"num_passengers": 4441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63476, 41.91925], [-87.63487, 41.91934]]}, "type": "Feature", "properties": {"num_passengers": 4441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63364, 41.91639], [-87.63379, 41.91658]]}, "type": "Feature", "properties": {"num_passengers": 4441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63324, 41.91602], [-87.63332, 41.91609]]}, "type": "Feature", "properties": {"num_passengers": 4441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63426, 41.9177], [-87.63429, 41.91785]]}, "type": "Feature", "properties": {"num_passengers": 4441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63423, 41.91755], [-87.63426, 41.9177]]}, "type": "Feature", "properties": {"num_passengers": 4441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63443, 41.91852], [-87.63448, 41.91868]]}, "type": "Feature", "properties": {"num_passengers": 4441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63263, 41.915], [-87.63269, 41.9151]]}, "type": "Feature", "properties": {"num_passengers": 4441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63456, 41.91887], [-87.63458, 41.91895]]}, "type": "Feature", "properties": {"num_passengers": 4441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63433, 41.91798], [-87.63435, 41.91816]]}, "type": "Feature", "properties": {"num_passengers": 4441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63288, 41.91558], [-87.6331, 41.91585]]}, "type": "Feature", "properties": {"num_passengers": 4441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63379, 41.91658], [-87.6339, 41.91671]]}, "type": "Feature", "properties": {"num_passengers": 4441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63277, 41.91536], [-87.63288, 41.91558]]}, "type": "Feature", "properties": {"num_passengers": 4441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62947, 41.88802], [-87.62947, 41.88828]]}, "type": "Feature", "properties": {"num_passengers": 4447}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62551, 41.88212], [-87.62574, 41.88212]]}, "type": "Feature", "properties": {"num_passengers": 4457}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63269, 41.91505], [-87.63257, 41.91491]]}, "type": "Feature", "properties": {"num_passengers": 4457}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66489, 41.89607], [-87.66419, 41.89608]]}, "type": "Feature", "properties": {"num_passengers": 4458}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63384, 41.91468], [-87.63377, 41.91456]]}, "type": "Feature", "properties": {"num_passengers": 4467}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62413, 41.87486], [-87.62415, 41.875]]}, "type": "Feature", "properties": {"num_passengers": 4482}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64789, 41.94002], [-87.6481, 41.94002]]}, "type": "Feature", "properties": {"num_passengers": 4485}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64627, 41.94005], [-87.64643, 41.94004]]}, "type": "Feature", "properties": {"num_passengers": 4485}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6461, 41.94005], [-87.64627, 41.94005]]}, "type": "Feature", "properties": {"num_passengers": 4485}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64747, 41.94003], [-87.64766, 41.94003]]}, "type": "Feature", "properties": {"num_passengers": 4485}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6511, 41.93999], [-87.65334, 41.93995]]}, "type": "Feature", "properties": {"num_passengers": 4485}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64643, 41.94004], [-87.64663, 41.94004]]}, "type": "Feature", "properties": {"num_passengers": 4485}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6481, 41.94002], [-87.64832, 41.94001]]}, "type": "Feature", "properties": {"num_passengers": 4485}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64766, 41.94003], [-87.64789, 41.94002]]}, "type": "Feature", "properties": {"num_passengers": 4485}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64969, 41.94003], [-87.64994, 41.94001]]}, "type": "Feature", "properties": {"num_passengers": 4485}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65083, 41.94004], [-87.65107, 41.94004]]}, "type": "Feature", "properties": {"num_passengers": 4485}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64888, 41.94001], [-87.64908, 41.94001]]}, "type": "Feature", "properties": {"num_passengers": 4485}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64585, 41.94006], [-87.6461, 41.94005]]}, "type": "Feature", "properties": {"num_passengers": 4485}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65115, 41.94004], [-87.6511, 41.93999]]}, "type": "Feature", "properties": {"num_passengers": 4485}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64942, 41.94004], [-87.64969, 41.94003]]}, "type": "Feature", "properties": {"num_passengers": 4485}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64994, 41.94001], [-87.65017, 41.94001]]}, "type": "Feature", "properties": {"num_passengers": 4485}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64867, 41.94002], [-87.64888, 41.94001]]}, "type": "Feature", "properties": {"num_passengers": 4485}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64848, 41.94001], [-87.64867, 41.94002]]}, "type": "Feature", "properties": {"num_passengers": 4485}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64832, 41.94001], [-87.64848, 41.94001]]}, "type": "Feature", "properties": {"num_passengers": 4485}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64677, 41.94003], [-87.64687, 41.94004]]}, "type": "Feature", "properties": {"num_passengers": 4485}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64703, 41.94005], [-87.64725, 41.94004]]}, "type": "Feature", "properties": {"num_passengers": 4485}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64687, 41.94004], [-87.64703, 41.94005]]}, "type": "Feature", "properties": {"num_passengers": 4485}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65064, 41.94003], [-87.65083, 41.94004]]}, "type": "Feature", "properties": {"num_passengers": 4485}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64908, 41.94001], [-87.64942, 41.94004]]}, "type": "Feature", "properties": {"num_passengers": 4485}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65017, 41.94001], [-87.6504, 41.94002]]}, "type": "Feature", "properties": {"num_passengers": 4485}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65107, 41.94004], [-87.65115, 41.94004]]}, "type": "Feature", "properties": {"num_passengers": 4485}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64725, 41.94004], [-87.64747, 41.94003]]}, "type": "Feature", "properties": {"num_passengers": 4485}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64663, 41.94004], [-87.64677, 41.94003]]}, "type": "Feature", "properties": {"num_passengers": 4485}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64562, 41.94006], [-87.64585, 41.94006]]}, "type": "Feature", "properties": {"num_passengers": 4485}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65334, 41.93995], [-87.65342, 41.93994]]}, "type": "Feature", "properties": {"num_passengers": 4485}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6504, 41.94002], [-87.65064, 41.94003]]}, "type": "Feature", "properties": {"num_passengers": 4485}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6388, 41.92244], [-87.63891, 41.92262]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63891, 41.92262], [-87.63904, 41.92282]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63925, 41.9232], [-87.63933, 41.92337]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63967, 41.92397], [-87.63977, 41.92413]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63826, 41.92155], [-87.63832, 41.92169]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63933, 41.92337], [-87.63939, 41.9235]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63751, 41.9203], [-87.63761, 41.92046]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63654, 41.91881], [-87.63667, 41.91898]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63987, 41.9243], [-87.63998, 41.92449]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63952, 41.9238], [-87.63967, 41.92397]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63694, 41.91936], [-87.63707, 41.91956]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63904, 41.92282], [-87.63913, 41.92301]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63667, 41.91898], [-87.6368, 41.91915]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63944, 41.92363], [-87.63945, 41.92365]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63977, 41.92413], [-87.63987, 41.9243]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63742, 41.92018], [-87.63751, 41.9203]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63642, 41.91866], [-87.63654, 41.91881]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6384, 41.92188], [-87.6385, 41.92201]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64018, 41.92483], [-87.64028, 41.92499]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63796, 41.92103], [-87.63807, 41.92122]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63731, 41.92004], [-87.63731, 41.92005]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63731, 41.92005], [-87.63742, 41.92018]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63761, 41.92046], [-87.6377, 41.92064]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63945, 41.92365], [-87.63952, 41.9238]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63726, 41.91991], [-87.63731, 41.92004]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63816, 41.92139], [-87.63826, 41.92155]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63718, 41.91976], [-87.63726, 41.91991]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6384, 41.92183], [-87.6384, 41.92188]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63807, 41.92122], [-87.63816, 41.92139]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63939, 41.9235], [-87.63944, 41.92363]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63832, 41.92169], [-87.6384, 41.92183]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6368, 41.91915], [-87.63694, 41.91936]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63861, 41.92212], [-87.63871, 41.92227]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64007, 41.92467], [-87.64018, 41.92483]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63871, 41.92227], [-87.6388, 41.92244]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63913, 41.92301], [-87.63925, 41.9232]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63782, 41.92083], [-87.63796, 41.92103]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63998, 41.92449], [-87.64007, 41.92467]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63707, 41.91956], [-87.63718, 41.91976]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6385, 41.92201], [-87.63861, 41.92212]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6377, 41.92064], [-87.63782, 41.92083]]}, "type": "Feature", "properties": {"num_passengers": 4490}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59829, 41.75142], [-87.59835, 41.75142]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60024, 41.7514], [-87.60045, 41.75138]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60253, 41.75138], [-87.60264, 41.75138]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5974, 41.75142], [-87.59767, 41.75142]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60137, 41.75135], [-87.60162, 41.75137]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59684, 41.75142], [-87.59711, 41.75142]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6046, 41.75133], [-87.60479, 41.75133]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59835, 41.75142], [-87.59859, 41.75142]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60231, 41.75138], [-87.60253, 41.75138]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60264, 41.75138], [-87.60285, 41.75135]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60094, 41.75137], [-87.60113, 41.75136]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60329, 41.75134], [-87.60356, 41.75134]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59808, 41.75142], [-87.59829, 41.75142]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59533, 41.75144], [-87.59554, 41.75144]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6041, 41.75133], [-87.60437, 41.75133]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59859, 41.75142], [-87.59884, 41.75141]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60162, 41.75137], [-87.60188, 41.75137]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5979, 41.75142], [-87.59808, 41.75142]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59945, 41.7514], [-87.59964, 41.7514]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59711, 41.75142], [-87.5974, 41.75142]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60067, 41.75137], [-87.60094, 41.75137]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59884, 41.75141], [-87.59903, 41.7514]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60479, 41.75133], [-87.60496, 41.75135]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59987, 41.7514], [-87.60008, 41.7514]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60008, 41.7514], [-87.60024, 41.7514]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59767, 41.75142], [-87.5979, 41.75142]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59573, 41.75143], [-87.59596, 41.75142]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60356, 41.75134], [-87.60385, 41.75133]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59554, 41.75144], [-87.59573, 41.75143]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6021, 41.75138], [-87.60231, 41.75138]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59652, 41.75142], [-87.59684, 41.75142]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60305, 41.75134], [-87.60329, 41.75134]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59964, 41.7514], [-87.59987, 41.7514]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60437, 41.75133], [-87.6046, 41.75133]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59903, 41.7514], [-87.59922, 41.7514]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60285, 41.75135], [-87.60305, 41.75134]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59922, 41.7514], [-87.59945, 41.7514]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60113, 41.75136], [-87.60137, 41.75135]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59625, 41.75142], [-87.59652, 41.75142]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59596, 41.75142], [-87.59625, 41.75142]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60188, 41.75137], [-87.6021, 41.75138]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60385, 41.75133], [-87.6041, 41.75133]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60045, 41.75138], [-87.60067, 41.75137]]}, "type": "Feature", "properties": {"num_passengers": 4506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66419, 41.89608], [-87.66409, 41.89608]]}, "type": "Feature", "properties": {"num_passengers": 4508}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63162, 41.90799], [-87.63161, 41.90789]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63161, 41.90777], [-87.63161, 41.90765]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63166, 41.90943], [-87.63166, 41.90928]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63166, 41.90928], [-87.63165, 41.90909]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63352, 41.91413], [-87.63345, 41.91403]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63165, 41.90888], [-87.63165, 41.90873]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63234, 41.91223], [-87.63219, 41.91198]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63335, 41.91385], [-87.63328, 41.91375]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63165, 41.90873], [-87.63163, 41.90855]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63328, 41.91375], [-87.63323, 41.91368]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63161, 41.90746], [-87.63159, 41.90724]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63313, 41.9135], [-87.633, 41.9133]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63287, 41.9131], [-87.63273, 41.91285]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63168, 41.90986], [-87.63166, 41.90967]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63173, 41.91115], [-87.63171, 41.91097]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63273, 41.91285], [-87.63264, 41.9127]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63194, 41.91157], [-87.63182, 41.91137]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63163, 41.9082], [-87.63162, 41.90799]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63177, 41.91127], [-87.63173, 41.91115]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63247, 41.91243], [-87.63234, 41.91223]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63157, 41.90626], [-87.63156, 41.90609]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63264, 41.9127], [-87.63247, 41.91243]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63207, 41.91178], [-87.63194, 41.91157]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63169, 41.91041], [-87.63168, 41.91025]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6317, 41.91058], [-87.63169, 41.91041]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63168, 41.91004], [-87.63168, 41.90986]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63159, 41.90704], [-87.63159, 41.90682]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63158, 41.90667], [-87.63158, 41.90646]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63182, 41.91137], [-87.63182, 41.91136]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.633, 41.9133], [-87.63287, 41.9131]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63163, 41.90855], [-87.63164, 41.90835]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63371, 41.91445], [-87.63364, 41.91433]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63165, 41.90909], [-87.63165, 41.90888]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62382, 41.85491], [-87.62382, 41.85506]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63166, 41.90967], [-87.63166, 41.90954]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63364, 41.91433], [-87.63357, 41.91424]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63219, 41.91198], [-87.63207, 41.91178]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63161, 41.90765], [-87.63161, 41.90746]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63171, 41.91097], [-87.63171, 41.91077]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63323, 41.91368], [-87.63313, 41.9135]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63182, 41.91136], [-87.63177, 41.91127]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6334, 41.91394], [-87.63335, 41.91385]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63171, 41.91077], [-87.6317, 41.91058]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63159, 41.90682], [-87.63158, 41.90667]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63357, 41.91424], [-87.63352, 41.91413]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63164, 41.90835], [-87.63163, 41.9082]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63159, 41.90724], [-87.63159, 41.90704]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63168, 41.91025], [-87.63168, 41.91004]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63377, 41.91456], [-87.63371, 41.91445]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63158, 41.90646], [-87.63157, 41.90626]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63345, 41.91403], [-87.6334, 41.91394]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63166, 41.90954], [-87.63166, 41.90943]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63156, 41.90609], [-87.63155, 41.90593]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63161, 41.90789], [-87.63161, 41.90777]]}, "type": "Feature", "properties": {"num_passengers": 4512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62406, 41.8698], [-87.62406, 41.86999]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62407, 41.86604], [-87.62407, 41.86619]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62414, 41.87348], [-87.62413, 41.87365]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62406, 41.86969], [-87.62406, 41.8698]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62404, 41.86927], [-87.62406, 41.86938]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62411, 41.87214], [-87.62411, 41.87225]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62408, 41.87044], [-87.62407, 41.87054]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62407, 41.86633], [-87.62407, 41.86647]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62406, 41.86999], [-87.62406, 41.87018]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62412, 41.87238], [-87.62411, 41.87254]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62407, 41.86619], [-87.62407, 41.86633]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62414, 41.87335], [-87.62414, 41.87348]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62403, 41.86734], [-87.62402, 41.86752]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62404, 41.86569], [-87.62405, 41.8658]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62417, 41.87449], [-87.62418, 41.87464]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62404, 41.86904], [-87.62404, 41.86927]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62406, 41.87031], [-87.62408, 41.87044]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62406, 41.86954], [-87.62406, 41.86969]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62401, 41.86831], [-87.62403, 41.86851]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62405, 41.8658], [-87.62406, 41.86592]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62409, 41.87173], [-87.62409, 41.87173]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65564, 41.89631], [-87.65619, 41.89629]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62412, 41.87311], [-87.62413, 41.87325]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62407, 41.87076], [-87.62407, 41.87093]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62407, 41.8713], [-87.62409, 41.87146]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62411, 41.87271], [-87.62412, 41.87284]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62416, 41.8743], [-87.62417, 41.87449]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.86762], [-87.624, 41.86776]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62409, 41.87111], [-87.62407, 41.8713]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62401, 41.86811], [-87.62401, 41.86831]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62405, 41.86714], [-87.62403, 41.86734]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62412, 41.87299], [-87.62412, 41.87311]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62409, 41.87146], [-87.62409, 41.8716]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62415, 41.87396], [-87.62415, 41.87413]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.87464], [-87.62418, 41.87479]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.624, 41.86776], [-87.62402, 41.86791]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62407, 41.86682], [-87.62405, 41.86701]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62411, 41.87225], [-87.62412, 41.87238]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.87479], [-87.62418, 41.87493]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62411, 41.87254], [-87.62411, 41.87271]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6241, 41.87186], [-87.6241, 41.872]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62406, 41.86592], [-87.62407, 41.86604]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62415, 41.87413], [-87.62416, 41.8743]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62409, 41.87173], [-87.6241, 41.87186]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62414, 41.8738], [-87.62415, 41.87396]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62413, 41.87365], [-87.62414, 41.8738]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62407, 41.86647], [-87.62407, 41.86666]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62404, 41.86873], [-87.62404, 41.86904]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62409, 41.8716], [-87.62409, 41.87173]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62406, 41.86938], [-87.62406, 41.86954]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62407, 41.87093], [-87.62409, 41.87111]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.86791], [-87.62401, 41.86811]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62403, 41.86851], [-87.62404, 41.86873]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62407, 41.87054], [-87.62407, 41.87076]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62413, 41.87325], [-87.62414, 41.87335]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62406, 41.87018], [-87.62406, 41.87031]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62407, 41.86666], [-87.62407, 41.86682]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6241, 41.872], [-87.62411, 41.87214]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.86752], [-87.62402, 41.86762]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62405, 41.86701], [-87.62405, 41.86714]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62412, 41.87284], [-87.62412, 41.87299]]}, "type": "Feature", "properties": {"num_passengers": 4515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62767, 41.87508], [-87.6277, 41.87499]]}, "type": "Feature", "properties": {"num_passengers": 4528}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65931, 41.93983], [-87.66122, 41.93981]]}, "type": "Feature", "properties": {"num_passengers": 4540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66761, 41.95425], [-87.66433, 41.95429]]}, "type": "Feature", "properties": {"num_passengers": 4540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66357, 41.93979], [-87.66377, 41.93979]]}, "type": "Feature", "properties": {"num_passengers": 4540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66143, 41.93981], [-87.66357, 41.93979]]}, "type": "Feature", "properties": {"num_passengers": 4540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65914, 41.93984], [-87.65931, 41.93983]]}, "type": "Feature", "properties": {"num_passengers": 4540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66122, 41.93981], [-87.66143, 41.93981]]}, "type": "Feature", "properties": {"num_passengers": 4540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62947, 41.88828], [-87.62949, 41.88845]]}, "type": "Feature", "properties": {"num_passengers": 4544}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63353, 41.87943], [-87.63378, 41.87941]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63052, 41.87944], [-87.6308, 41.87945]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62673, 41.87952], [-87.62695, 41.87952]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62619, 41.87954], [-87.62638, 41.87953]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63326, 41.87941], [-87.63353, 41.87943]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62657, 41.87953], [-87.62673, 41.87952]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63103, 41.87946], [-87.63116, 41.87944]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63103, 41.87945], [-87.63103, 41.87946]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62907, 41.87947], [-87.62923, 41.87947]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6308, 41.87945], [-87.63103, 41.87945]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63155, 41.87942], [-87.63178, 41.87944]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62765, 41.87951], [-87.62781, 41.87949]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62891, 41.87947], [-87.62907, 41.87947]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63136, 41.87942], [-87.63155, 41.87942]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62856, 41.87948], [-87.62874, 41.87949]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62998, 41.87946], [-87.63025, 41.87945]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63199, 41.87944], [-87.63221, 41.87943]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62695, 41.87952], [-87.62716, 41.87952]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62938, 41.87946], [-87.62969, 41.87946]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62807, 41.87947], [-87.62817, 41.87947]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62638, 41.87953], [-87.62657, 41.87953]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62716, 41.87952], [-87.62739, 41.87951]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62817, 41.87947], [-87.62837, 41.87948]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62781, 41.87949], [-87.62807, 41.87947]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63116, 41.87944], [-87.63136, 41.87942]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63025, 41.87945], [-87.63052, 41.87944]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62874, 41.87949], [-87.62891, 41.87947]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63178, 41.87944], [-87.63199, 41.87944]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62923, 41.87947], [-87.62938, 41.87946]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62605, 41.87954], [-87.62619, 41.87954]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6328, 41.87943], [-87.63304, 41.87941]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63378, 41.87941], [-87.63397, 41.8794]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62969, 41.87946], [-87.62998, 41.87946]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63236, 41.87943], [-87.63261, 41.87943]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63304, 41.87941], [-87.63326, 41.87941]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63261, 41.87943], [-87.6328, 41.87943]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62837, 41.87948], [-87.62856, 41.87948]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62593, 41.87954], [-87.62605, 41.87954]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62739, 41.87951], [-87.62765, 41.87951]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63397, 41.8794], [-87.63408, 41.8794]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63221, 41.87943], [-87.63236, 41.87943]]}, "type": "Feature", "properties": {"num_passengers": 4565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63234, 41.88496], [-87.63237, 41.88514]]}, "type": "Feature", "properties": {"num_passengers": 4568}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65342, 41.93994], [-87.65636, 41.93991]]}, "type": "Feature", "properties": {"num_passengers": 4582}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65645, 41.93989], [-87.65914, 41.93984]]}, "type": "Feature", "properties": {"num_passengers": 4600}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62404, 41.86505], [-87.62404, 41.86519]]}, "type": "Feature", "properties": {"num_passengers": 4612}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62952, 41.88964], [-87.62953, 41.88983]]}, "type": "Feature", "properties": {"num_passengers": 4614}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6295, 41.88864], [-87.62952, 41.88886]]}, "type": "Feature", "properties": {"num_passengers": 4614}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62954, 41.88946], [-87.62952, 41.88964]]}, "type": "Feature", "properties": {"num_passengers": 4614}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62954, 41.88907], [-87.62954, 41.88928]]}, "type": "Feature", "properties": {"num_passengers": 4614}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62952, 41.88886], [-87.62954, 41.88907]]}, "type": "Feature", "properties": {"num_passengers": 4614}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62954, 41.88928], [-87.62954, 41.88946]]}, "type": "Feature", "properties": {"num_passengers": 4614}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62949, 41.88845], [-87.6295, 41.88864]]}, "type": "Feature", "properties": {"num_passengers": 4614}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65636, 41.93991], [-87.65645, 41.93989]]}, "type": "Feature", "properties": {"num_passengers": 4615}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62404, 41.86555], [-87.62404, 41.86569]]}, "type": "Feature", "properties": {"num_passengers": 4631}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63247, 41.91484], [-87.63263, 41.915]]}, "type": "Feature", "properties": {"num_passengers": 4634}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62382, 41.85506], [-87.62382, 41.85522]]}, "type": "Feature", "properties": {"num_passengers": 4642}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64127, 41.94488], [-87.64137, 41.94504]]}, "type": "Feature", "properties": {"num_passengers": 4643}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68427, 41.8013], [-87.68427, 41.8013]]}, "type": "Feature", "properties": {"num_passengers": 4646}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68426, 41.80185], [-87.68427, 41.80162]]}, "type": "Feature", "properties": {"num_passengers": 4646}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68431, 41.80295], [-87.68431, 41.80279]]}, "type": "Feature", "properties": {"num_passengers": 4646}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68427, 41.80162], [-87.68427, 41.80144]]}, "type": "Feature", "properties": {"num_passengers": 4646}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68427, 41.8026], [-87.68427, 41.80237]]}, "type": "Feature", "properties": {"num_passengers": 4646}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68427, 41.80237], [-87.68427, 41.80211]]}, "type": "Feature", "properties": {"num_passengers": 4646}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68427, 41.80144], [-87.68427, 41.8013]]}, "type": "Feature", "properties": {"num_passengers": 4646}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68427, 41.80211], [-87.68426, 41.80185]]}, "type": "Feature", "properties": {"num_passengers": 4646}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68431, 41.80279], [-87.68427, 41.8026]]}, "type": "Feature", "properties": {"num_passengers": 4646}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62758, 41.87041], [-87.62759, 41.87027]]}, "type": "Feature", "properties": {"num_passengers": 4657}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62404, 41.86538], [-87.62404, 41.86555]]}, "type": "Feature", "properties": {"num_passengers": 4657}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62759, 41.87027], [-87.62757, 41.8691]]}, "type": "Feature", "properties": {"num_passengers": 4657}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62404, 41.86519], [-87.62404, 41.86538]]}, "type": "Feature", "properties": {"num_passengers": 4658}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65517, 41.89631], [-87.65564, 41.89631]]}, "type": "Feature", "properties": {"num_passengers": 4658}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62758, 41.87041], [-87.62758, 41.87041]]}, "type": "Feature", "properties": {"num_passengers": 4662}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63632, 41.91853], [-87.63642, 41.91866]]}, "type": "Feature", "properties": {"num_passengers": 4666}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62382, 41.85522], [-87.62384, 41.85537]]}, "type": "Feature", "properties": {"num_passengers": 4677}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58662, 41.78373], [-87.58662, 41.78355]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58659, 41.78227], [-87.58659, 41.78208]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5866, 41.78281], [-87.5866, 41.78265]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58644, 41.77754], [-87.58644, 41.77736]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58656, 41.78056], [-87.58656, 41.78041]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58646, 41.77797], [-87.58644, 41.77775]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5866, 41.78297], [-87.5866, 41.78281]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58662, 41.78388], [-87.58662, 41.78373]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58649, 41.77859], [-87.58646, 41.7784]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58656, 41.78041], [-87.58656, 41.78024]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58648, 41.77719], [-87.58648, 41.77711]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58644, 41.77736], [-87.58648, 41.77719]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58654, 41.77919], [-87.58652, 41.77901]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5866, 41.78316], [-87.5866, 41.78297]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58646, 41.7784], [-87.58646, 41.77818]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58657, 41.78186], [-87.58657, 41.78164]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58652, 41.77901], [-87.58652, 41.77894]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58654, 41.77969], [-87.58654, 41.77952]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58652, 41.77894], [-87.58651, 41.77876]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58654, 41.78], [-87.58654, 41.77986]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58654, 41.77986], [-87.58654, 41.77969]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58663, 41.78405], [-87.58662, 41.78388]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58656, 41.78024], [-87.58656, 41.78018]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5866, 41.78265], [-87.5866, 41.78259]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58644, 41.77775], [-87.58644, 41.77754]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58656, 41.78123], [-87.58656, 41.78103]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58656, 41.78142], [-87.58656, 41.78123]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58654, 41.77935], [-87.58654, 41.77919]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58656, 41.78103], [-87.58656, 41.78086]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5866, 41.78259], [-87.58659, 41.78243]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58662, 41.78355], [-87.58662, 41.78336]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58659, 41.78208], [-87.58657, 41.78186]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58657, 41.78164], [-87.58656, 41.78142]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62384, 41.85537], [-87.62381, 41.8555]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58663, 41.78415], [-87.58663, 41.78405]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58659, 41.78243], [-87.58659, 41.78227]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58656, 41.78086], [-87.58656, 41.78071]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58656, 41.78018], [-87.58654, 41.78]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58654, 41.77952], [-87.58654, 41.77935]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58662, 41.78336], [-87.5866, 41.78316]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58651, 41.77876], [-87.58649, 41.77859]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58656, 41.78071], [-87.58656, 41.78056]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58646, 41.77818], [-87.58646, 41.77797]]}, "type": "Feature", "properties": {"num_passengers": 4694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62559, 41.89674], [-87.62611, 41.89674]]}, "type": "Feature", "properties": {"num_passengers": 4696}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63201, 41.91441], [-87.63213, 41.91455]]}, "type": "Feature", "properties": {"num_passengers": 4713}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63178, 41.91404], [-87.63184, 41.91417]]}, "type": "Feature", "properties": {"num_passengers": 4713}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63213, 41.91455], [-87.63234, 41.91473]]}, "type": "Feature", "properties": {"num_passengers": 4713}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63234, 41.91473], [-87.63247, 41.91484]]}, "type": "Feature", "properties": {"num_passengers": 4713}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63174, 41.91394], [-87.63178, 41.91404]]}, "type": "Feature", "properties": {"num_passengers": 4713}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63184, 41.91417], [-87.63193, 41.91429]]}, "type": "Feature", "properties": {"num_passengers": 4713}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63193, 41.91429], [-87.63201, 41.91441]]}, "type": "Feature", "properties": {"num_passengers": 4713}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63171, 41.91383], [-87.63174, 41.91394]]}, "type": "Feature", "properties": {"num_passengers": 4713}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62508, 41.88832], [-87.62514, 41.88834]]}, "type": "Feature", "properties": {"num_passengers": 4718}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65458, 41.89632], [-87.65507, 41.89631]]}, "type": "Feature", "properties": {"num_passengers": 4727}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63596, 41.91833], [-87.63632, 41.91853]]}, "type": "Feature", "properties": {"num_passengers": 4732}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58663, 41.78429], [-87.58663, 41.78415]]}, "type": "Feature", "properties": {"num_passengers": 4735}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63366, 41.86738], [-87.63551, 41.86736]]}, "type": "Feature", "properties": {"num_passengers": 4741}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65951, 41.89617], [-87.65932, 41.89618]]}, "type": "Feature", "properties": {"num_passengers": 4743}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65551, 41.89623], [-87.6551, 41.89624]]}, "type": "Feature", "properties": {"num_passengers": 4743}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65628, 41.89623], [-87.65606, 41.89622]]}, "type": "Feature", "properties": {"num_passengers": 4743}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65722, 41.89621], [-87.65697, 41.89622]]}, "type": "Feature", "properties": {"num_passengers": 4743}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65587, 41.89622], [-87.65566, 41.89622]]}, "type": "Feature", "properties": {"num_passengers": 4743}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65883, 41.89617], [-87.65861, 41.89617]]}, "type": "Feature", "properties": {"num_passengers": 4743}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65908, 41.89618], [-87.65883, 41.89617]]}, "type": "Feature", "properties": {"num_passengers": 4743}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65673, 41.89623], [-87.65651, 41.89623]]}, "type": "Feature", "properties": {"num_passengers": 4743}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65797, 41.89618], [-87.65773, 41.89619]]}, "type": "Feature", "properties": {"num_passengers": 4743}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65861, 41.89617], [-87.65841, 41.89617]]}, "type": "Feature", "properties": {"num_passengers": 4743}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65819, 41.89618], [-87.65797, 41.89618]]}, "type": "Feature", "properties": {"num_passengers": 4743}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66045, 41.89615], [-87.65961, 41.89616]]}, "type": "Feature", "properties": {"num_passengers": 4743}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66195, 41.89611], [-87.6613, 41.89613]]}, "type": "Feature", "properties": {"num_passengers": 4743}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66349, 41.89609], [-87.66276, 41.89611]]}, "type": "Feature", "properties": {"num_passengers": 4743}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66276, 41.89611], [-87.66206, 41.89612]]}, "type": "Feature", "properties": {"num_passengers": 4743}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65961, 41.89616], [-87.65951, 41.89617]]}, "type": "Feature", "properties": {"num_passengers": 4743}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65841, 41.89617], [-87.65819, 41.89618]]}, "type": "Feature", "properties": {"num_passengers": 4743}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6613, 41.89613], [-87.66045, 41.89615]]}, "type": "Feature", "properties": {"num_passengers": 4743}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65566, 41.89622], [-87.65565, 41.89622]]}, "type": "Feature", "properties": {"num_passengers": 4743}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66409, 41.89608], [-87.66349, 41.89609]]}, "type": "Feature", "properties": {"num_passengers": 4743}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65565, 41.89622], [-87.65551, 41.89623]]}, "type": "Feature", "properties": {"num_passengers": 4743}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65606, 41.89622], [-87.65587, 41.89622]]}, "type": "Feature", "properties": {"num_passengers": 4743}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66206, 41.89612], [-87.66195, 41.89611]]}, "type": "Feature", "properties": {"num_passengers": 4743}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65651, 41.89623], [-87.65628, 41.89623]]}, "type": "Feature", "properties": {"num_passengers": 4743}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65748, 41.89621], [-87.65722, 41.89621]]}, "type": "Feature", "properties": {"num_passengers": 4743}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65697, 41.89622], [-87.65673, 41.89623]]}, "type": "Feature", "properties": {"num_passengers": 4743}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65932, 41.89618], [-87.65908, 41.89618]]}, "type": "Feature", "properties": {"num_passengers": 4743}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65773, 41.89619], [-87.65748, 41.89621]]}, "type": "Feature", "properties": {"num_passengers": 4743}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65507, 41.89631], [-87.65517, 41.89631]]}, "type": "Feature", "properties": {"num_passengers": 4744}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62955, 41.92105], [-87.6296, 41.92126]]}, "type": "Feature", "properties": {"num_passengers": 4749}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62385, 41.857], [-87.62387, 41.85719]]}, "type": "Feature", "properties": {"num_passengers": 4764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62385, 41.85643], [-87.62384, 41.8566]]}, "type": "Feature", "properties": {"num_passengers": 4764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62387, 41.85767], [-87.62388, 41.85784]]}, "type": "Feature", "properties": {"num_passengers": 4764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62383, 41.85578], [-87.62384, 41.8559]]}, "type": "Feature", "properties": {"num_passengers": 4764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62384, 41.8568], [-87.62385, 41.857]]}, "type": "Feature", "properties": {"num_passengers": 4764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62384, 41.8566], [-87.62384, 41.8568]]}, "type": "Feature", "properties": {"num_passengers": 4764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62388, 41.85754], [-87.62387, 41.85767]]}, "type": "Feature", "properties": {"num_passengers": 4764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.86463], [-87.62404, 41.86476]]}, "type": "Feature", "properties": {"num_passengers": 4764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62385, 41.85624], [-87.62385, 41.85643]]}, "type": "Feature", "properties": {"num_passengers": 4764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.86427], [-87.62402, 41.86445]]}, "type": "Feature", "properties": {"num_passengers": 4764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62382, 41.85567], [-87.62383, 41.85578]]}, "type": "Feature", "properties": {"num_passengers": 4764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62384, 41.8559], [-87.62384, 41.85608]]}, "type": "Feature", "properties": {"num_passengers": 4764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62388, 41.85795], [-87.62389, 41.85807]]}, "type": "Feature", "properties": {"num_passengers": 4764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62403, 41.86401], [-87.62402, 41.86413]]}, "type": "Feature", "properties": {"num_passengers": 4764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62388, 41.85784], [-87.62388, 41.85795]]}, "type": "Feature", "properties": {"num_passengers": 4764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62387, 41.85738], [-87.62388, 41.85754]]}, "type": "Feature", "properties": {"num_passengers": 4764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.86395], [-87.62403, 41.86401]]}, "type": "Feature", "properties": {"num_passengers": 4764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62404, 41.86476], [-87.62404, 41.86489]]}, "type": "Feature", "properties": {"num_passengers": 4764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.86413], [-87.62402, 41.86427]]}, "type": "Feature", "properties": {"num_passengers": 4764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62381, 41.8555], [-87.62382, 41.85567]]}, "type": "Feature", "properties": {"num_passengers": 4764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62384, 41.85608], [-87.62385, 41.85624]]}, "type": "Feature", "properties": {"num_passengers": 4764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62387, 41.85719], [-87.62387, 41.85738]]}, "type": "Feature", "properties": {"num_passengers": 4764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.86445], [-87.62402, 41.86463]]}, "type": "Feature", "properties": {"num_passengers": 4764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63227, 41.86741], [-87.63366, 41.86738]]}, "type": "Feature", "properties": {"num_passengers": 4772}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61931, 41.86504], [-87.61946, 41.86519]]}, "type": "Feature", "properties": {"num_passengers": 4793}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62124, 41.89682], [-87.62145, 41.89682]]}, "type": "Feature", "properties": {"num_passengers": 4795}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62168, 41.89682], [-87.62178, 41.89681]]}, "type": "Feature", "properties": {"num_passengers": 4795}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62101, 41.89682], [-87.62124, 41.89682]]}, "type": "Feature", "properties": {"num_passengers": 4795}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62145, 41.89682], [-87.62168, 41.89682]]}, "type": "Feature", "properties": {"num_passengers": 4795}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64439, 41.89643], [-87.6434, 41.89643]]}, "type": "Feature", "properties": {"num_passengers": 4800}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58663, 41.78467], [-87.58663, 41.78447]]}, "type": "Feature", "properties": {"num_passengers": 4802}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64618, 41.75062], [-87.64634, 41.75061]]}, "type": "Feature", "properties": {"num_passengers": 4803}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64031, 41.94307], [-87.64041, 41.94327]]}, "type": "Feature", "properties": {"num_passengers": 4805}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64052, 41.94347], [-87.64057, 41.94355]]}, "type": "Feature", "properties": {"num_passengers": 4805}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6409, 41.94418], [-87.64097, 41.94431]]}, "type": "Feature", "properties": {"num_passengers": 4805}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64057, 41.94355], [-87.64064, 41.94368]]}, "type": "Feature", "properties": {"num_passengers": 4805}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64097, 41.94431], [-87.64104, 41.94444]]}, "type": "Feature", "properties": {"num_passengers": 4805}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64018, 41.94282], [-87.64031, 41.94307]]}, "type": "Feature", "properties": {"num_passengers": 4805}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64084, 41.94407], [-87.6409, 41.94418]]}, "type": "Feature", "properties": {"num_passengers": 4805}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64007, 41.94263], [-87.64018, 41.94282]]}, "type": "Feature", "properties": {"num_passengers": 4805}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64041, 41.94327], [-87.64052, 41.94347]]}, "type": "Feature", "properties": {"num_passengers": 4805}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6407, 41.9438], [-87.64076, 41.94393]]}, "type": "Feature", "properties": {"num_passengers": 4805}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64064, 41.94368], [-87.6407, 41.9438]]}, "type": "Feature", "properties": {"num_passengers": 4805}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64104, 41.94444], [-87.64111, 41.94457]]}, "type": "Feature", "properties": {"num_passengers": 4805}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64111, 41.94457], [-87.64119, 41.9447]]}, "type": "Feature", "properties": {"num_passengers": 4805}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64123, 41.94481], [-87.64127, 41.94488]]}, "type": "Feature", "properties": {"num_passengers": 4805}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63998, 41.94246], [-87.64007, 41.94263]]}, "type": "Feature", "properties": {"num_passengers": 4805}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64119, 41.9447], [-87.64123, 41.94481]]}, "type": "Feature", "properties": {"num_passengers": 4805}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64076, 41.94393], [-87.64084, 41.94407]]}, "type": "Feature", "properties": {"num_passengers": 4805}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62404, 41.86489], [-87.62404, 41.86505]]}, "type": "Feature", "properties": {"num_passengers": 4814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6349, 41.91662], [-87.63596, 41.91833]]}, "type": "Feature", "properties": {"num_passengers": 4816}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58663, 41.78447], [-87.58663, 41.78429]]}, "type": "Feature", "properties": {"num_passengers": 4827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6192, 41.86493], [-87.61931, 41.86504]]}, "type": "Feature", "properties": {"num_passengers": 4849}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63257, 41.91491], [-87.63248, 41.91483]]}, "type": "Feature", "properties": {"num_passengers": 4851}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62079, 41.89682], [-87.62101, 41.89682]]}, "type": "Feature", "properties": {"num_passengers": 4857}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62594, 41.88212], [-87.62604, 41.8821]]}, "type": "Feature", "properties": {"num_passengers": 4859}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62574, 41.88212], [-87.62594, 41.88212]]}, "type": "Feature", "properties": {"num_passengers": 4859}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62496, 41.88832], [-87.62508, 41.88832]]}, "type": "Feature", "properties": {"num_passengers": 4863}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62054, 41.89682], [-87.62079, 41.89682]]}, "type": "Feature", "properties": {"num_passengers": 4871}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62039, 41.89679], [-87.62054, 41.89682]]}, "type": "Feature", "properties": {"num_passengers": 4902}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63939, 41.93424], [-87.63938, 41.93413]]}, "type": "Feature", "properties": {"num_passengers": 4910}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62409, 41.87345], [-87.62409, 41.87359]]}, "type": "Feature", "properties": {"num_passengers": 4923}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62413, 41.87453], [-87.62413, 41.87473]]}, "type": "Feature", "properties": {"num_passengers": 4923}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62408, 41.87335], [-87.62409, 41.87345]]}, "type": "Feature", "properties": {"num_passengers": 4923}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62411, 41.87387], [-87.62413, 41.87407]]}, "type": "Feature", "properties": {"num_passengers": 4923}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62395, 41.87322], [-87.62408, 41.87335]]}, "type": "Feature", "properties": {"num_passengers": 4923}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62413, 41.87422], [-87.62413, 41.87437]]}, "type": "Feature", "properties": {"num_passengers": 4923}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62413, 41.87473], [-87.62413, 41.87486]]}, "type": "Feature", "properties": {"num_passengers": 4923}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62413, 41.87407], [-87.62413, 41.87422]]}, "type": "Feature", "properties": {"num_passengers": 4923}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62409, 41.87359], [-87.62411, 41.87374]]}, "type": "Feature", "properties": {"num_passengers": 4923}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62411, 41.87374], [-87.62411, 41.87387]]}, "type": "Feature", "properties": {"num_passengers": 4923}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62413, 41.87437], [-87.62413, 41.87453]]}, "type": "Feature", "properties": {"num_passengers": 4923}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64437, 41.75065], [-87.64618, 41.75062]]}, "type": "Feature", "properties": {"num_passengers": 4926}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65202, 41.89628], [-87.65129, 41.8963]]}, "type": "Feature", "properties": {"num_passengers": 4928}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64851, 41.89634], [-87.64774, 41.89636]]}, "type": "Feature", "properties": {"num_passengers": 4928}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64774, 41.89636], [-87.64733, 41.89634]]}, "type": "Feature", "properties": {"num_passengers": 4928}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65275, 41.89627], [-87.65202, 41.89628]]}, "type": "Feature", "properties": {"num_passengers": 4928}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64661, 41.89638], [-87.64626, 41.89639]]}, "type": "Feature", "properties": {"num_passengers": 4928}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64719, 41.89635], [-87.64661, 41.89638]]}, "type": "Feature", "properties": {"num_passengers": 4928}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65036, 41.89632], [-87.64949, 41.89632]]}, "type": "Feature", "properties": {"num_passengers": 4928}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6512, 41.89631], [-87.65036, 41.89632]]}, "type": "Feature", "properties": {"num_passengers": 4928}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64949, 41.89632], [-87.64851, 41.89634]]}, "type": "Feature", "properties": {"num_passengers": 4928}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64733, 41.89634], [-87.64719, 41.89635]]}, "type": "Feature", "properties": {"num_passengers": 4928}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65129, 41.8963], [-87.6512, 41.89631]]}, "type": "Feature", "properties": {"num_passengers": 4928}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65355, 41.89626], [-87.65275, 41.89627]]}, "type": "Feature", "properties": {"num_passengers": 4928}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64626, 41.89639], [-87.64611, 41.89639]]}, "type": "Feature", "properties": {"num_passengers": 4928}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65426, 41.89625], [-87.65355, 41.89626]]}, "type": "Feature", "properties": {"num_passengers": 4928}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64733, 41.89634], [-87.64733, 41.89634]]}, "type": "Feature", "properties": {"num_passengers": 4928}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63237, 41.88514], [-87.63236, 41.8853]]}, "type": "Feature", "properties": {"num_passengers": 4929}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6551, 41.89624], [-87.65469, 41.89625]]}, "type": "Feature", "properties": {"num_passengers": 4939}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64147, 41.75072], [-87.64154, 41.75071]]}, "type": "Feature", "properties": {"num_passengers": 4949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64154, 41.75071], [-87.64421, 41.75066]]}, "type": "Feature", "properties": {"num_passengers": 4949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64421, 41.75066], [-87.64437, 41.75065]]}, "type": "Feature", "properties": {"num_passengers": 4949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65437, 41.89625], [-87.65426, 41.89625]]}, "type": "Feature", "properties": {"num_passengers": 4950}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6348, 41.91646], [-87.6349, 41.91662]]}, "type": "Feature", "properties": {"num_passengers": 4951}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62514, 41.88834], [-87.62536, 41.88832]]}, "type": "Feature", "properties": {"num_passengers": 4966}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64611, 41.89639], [-87.64485, 41.89643]]}, "type": "Feature", "properties": {"num_passengers": 4966}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64485, 41.89643], [-87.64439, 41.89643]]}, "type": "Feature", "properties": {"num_passengers": 4973}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65469, 41.89625], [-87.65437, 41.89625]]}, "type": "Feature", "properties": {"num_passengers": 4980}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66234, 41.95467], [-87.66248, 41.95483]]}, "type": "Feature", "properties": {"num_passengers": 4991}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62611, 41.89674], [-87.62668, 41.89673]]}, "type": "Feature", "properties": {"num_passengers": 5005}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61658, 41.85823], [-87.61666, 41.85839]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59374, 41.81544], [-87.5939, 41.81562]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60248, 41.82785], [-87.60266, 41.82801]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61877, 41.86373], [-87.61884, 41.86396]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60542, 41.83068], [-87.60555, 41.83087]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61361, 41.85289], [-87.6137, 41.85308]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59622, 41.81867], [-87.59638, 41.81885]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61749, 41.8601], [-87.61755, 41.86028]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60695, 41.83274], [-87.60707, 41.83295]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60002, 41.82473], [-87.6001, 41.82491]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60126, 41.82674], [-87.6014, 41.82691]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60919, 41.84058], [-87.60928, 41.84081]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59461, 41.81652], [-87.59474, 41.8167]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6048, 41.82996], [-87.60496, 41.83013]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60666, 41.83236], [-87.60682, 41.83254]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61389, 41.85344], [-87.61399, 41.85362]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61459, 41.85448], [-87.61472, 41.85466]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61485, 41.85483], [-87.61496, 41.85502]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59191, 41.80938], [-87.59201, 41.80953]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61739, 41.85994], [-87.61749, 41.8601]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60741, 41.83357], [-87.60749, 41.83379]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60973, 41.84191], [-87.60982, 41.84213]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59043, 41.81263], [-87.59056, 41.81276]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60108, 41.82658], [-87.60126, 41.82674]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61833, 41.86222], [-87.61838, 41.86238]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61157, 41.84654], [-87.61162, 41.84676]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61019, 41.84301], [-87.6103, 41.84323]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61847, 41.86267], [-87.6185, 41.86282]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59884, 41.82237], [-87.59895, 41.82257]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59991, 41.82454], [-87.60002, 41.82473]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60992, 41.84235], [-87.61002, 41.84256]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6185, 41.86282], [-87.61855, 41.86295]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60173, 41.82722], [-87.60193, 41.82738]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60797, 41.83705], [-87.60797, 41.83727]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59404, 41.8158], [-87.59418, 41.81597]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61787, 41.86099], [-87.61796, 41.86118]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60781, 41.83516], [-87.60782, 41.83539]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59005, 41.80729], [-87.59018, 41.80748]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58985, 41.81185], [-87.58992, 41.81197]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61399, 41.85362], [-87.61412, 41.8538]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6131, 41.85146], [-87.61316, 41.85168]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61048, 41.84367], [-87.61057, 41.84389]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59177, 41.80926], [-87.59191, 41.80938]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61755, 41.86028], [-87.61764, 41.86044]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59139, 41.81348], [-87.59156, 41.81361]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61057, 41.84389], [-87.61067, 41.84412]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60749, 41.83379], [-87.60757, 41.83401]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61148, 41.84631], [-87.61157, 41.84654]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61634, 41.85771], [-87.61641, 41.85788]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61888, 41.86417], [-87.61892, 41.86435]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59231, 41.81417], [-87.59252, 41.81432]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60339, 41.82865], [-87.60359, 41.82881]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60789, 41.83634], [-87.60792, 41.83658]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58956, 41.81096], [-87.58937, 41.81104]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59569, 41.81794], [-87.59582, 41.81813]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59924, 41.82316], [-87.59935, 41.82336]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61002, 41.84256], [-87.61011, 41.84279]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59342, 41.8151], [-87.59358, 41.81528]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59943, 41.82356], [-87.59953, 41.82375]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61588, 41.85676], [-87.61598, 41.85696]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60626, 41.83179], [-87.60641, 41.83198]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61178, 41.84721], [-87.61184, 41.84744]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59841, 41.82158], [-87.59854, 41.82178]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60193, 41.82738], [-87.6021, 41.82753]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61822, 41.86187], [-87.61828, 41.86205]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58964, 41.81164], [-87.58985, 41.81185]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60828, 41.83838], [-87.60836, 41.8386]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60641, 41.83198], [-87.60653, 41.83216]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60855, 41.83903], [-87.60862, 41.83926]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58946, 41.80631], [-87.58958, 41.8065]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61863, 41.86322], [-87.61869, 41.86347]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.589, 41.80541], [-87.58905, 41.80554]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59638, 41.81885], [-87.59651, 41.81903]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59651, 41.81903], [-87.59663, 41.81921]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5953, 41.81742], [-87.59541, 41.81758]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6014, 41.82691], [-87.60156, 41.82707]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59201, 41.80953], [-87.59188, 41.80968]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60836, 41.8386], [-87.60846, 41.83882]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59306, 41.81477], [-87.59325, 41.81494]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59056, 41.81276], [-87.59072, 41.81291]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5979, 41.82085], [-87.59803, 41.82103]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59018, 41.80748], [-87.59029, 41.80766]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6073, 41.83336], [-87.60741, 41.83357]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61067, 41.84412], [-87.61075, 41.84433]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61666, 41.85839], [-87.61675, 41.85857]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61901, 41.86466], [-87.61906, 41.86481]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60812, 41.83794], [-87.6082, 41.83816]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60569, 41.83105], [-87.60582, 41.83125]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58937, 41.81104], [-87.58926, 41.81121]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5905, 41.80796], [-87.59059, 41.80813]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5898, 41.8069], [-87.58992, 41.80709]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61548, 41.85599], [-87.61559, 41.85618]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60797, 41.83727], [-87.60801, 41.83749]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59129, 41.80883], [-87.59142, 41.80894]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61472, 41.85466], [-87.61485, 41.85483]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61424, 41.85397], [-87.61434, 41.85414]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59072, 41.81291], [-87.59086, 41.81307]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59081, 41.80839], [-87.59096, 41.80854]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61254, 41.84969], [-87.61261, 41.84992]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59935, 41.82336], [-87.59943, 41.82356]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60792, 41.83681], [-87.60797, 41.83705]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60948, 41.84124], [-87.60955, 41.84146]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59116, 41.81006], [-87.59097, 41.81017]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58992, 41.81197], [-87.59005, 41.81209]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61579, 41.85657], [-87.61588, 41.85676]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61083, 41.84455], [-87.61094, 41.84477]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59973, 41.82414], [-87.59983, 41.82434]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60782, 41.83539], [-87.60785, 41.83564]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59039, 41.81248], [-87.59043, 41.81263]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59156, 41.81361], [-87.59175, 41.81375]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59582, 41.81813], [-87.59596, 41.8183]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61261, 41.84992], [-87.61267, 41.85016]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61884, 41.86396], [-87.61888, 41.86417]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.611, 41.84499], [-87.6111, 41.84522]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59212, 41.81403], [-87.59231, 41.81417]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61316, 41.85168], [-87.61323, 41.85189]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60464, 41.82978], [-87.6048, 41.82996]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60096, 41.82641], [-87.60108, 41.82658]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61116, 41.84542], [-87.61126, 41.84565]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60049, 41.82568], [-87.60061, 41.82587]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59005, 41.81209], [-87.59015, 41.81222]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61353, 41.85269], [-87.61361, 41.85289]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59026, 41.81061], [-87.59002, 41.81073]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61699, 41.85908], [-87.61709, 41.85924]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61838, 41.86238], [-87.61842, 41.86253]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61331, 41.85209], [-87.61337, 41.85229]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59854, 41.82178], [-87.59863, 41.82197]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.609, 41.84014], [-87.60909, 41.84035]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60777, 41.83492], [-87.60781, 41.83516]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59069, 41.80825], [-87.59081, 41.80839]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60512, 41.83032], [-87.60526, 41.8305]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61267, 41.85016], [-87.61275, 41.85037]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59188, 41.80968], [-87.5917, 41.80976]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60763, 41.83423], [-87.60769, 41.83446]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61011, 41.84279], [-87.61019, 41.84301]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59447, 41.81633], [-87.59461, 41.81652]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61213, 41.84834], [-87.61221, 41.84855]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60785, 41.83564], [-87.60785, 41.83587]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58969, 41.8067], [-87.5898, 41.8069]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61448, 41.8543], [-87.61459, 41.85448]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61192, 41.84766], [-87.61199, 41.84789]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61607, 41.85715], [-87.61617, 41.85734]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59136, 41.80995], [-87.59116, 41.81006]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60415, 41.82928], [-87.60431, 41.82944]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59914, 41.82297], [-87.59924, 41.82316]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58937, 41.80613], [-87.58946, 41.80631]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61809, 41.86153], [-87.61815, 41.86171]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5972, 41.81994], [-87.59733, 41.82013]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60862, 41.83926], [-87.60873, 41.83948]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6111, 41.84522], [-87.61116, 41.84542]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59663, 41.81921], [-87.59679, 41.81939]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61302, 41.85124], [-87.6131, 41.85146]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59817, 41.82122], [-87.59829, 41.8214]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59983, 41.82434], [-87.59991, 41.82454]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59733, 41.82013], [-87.59749, 41.8203]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6089, 41.83992], [-87.609, 41.84014]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60596, 41.83143], [-87.60611, 41.83161]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59863, 41.82197], [-87.59875, 41.82217]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60936, 41.84102], [-87.60948, 41.84124]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60029, 41.8253], [-87.60038, 41.82549]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60582, 41.83125], [-87.60596, 41.83143]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59609, 41.81849], [-87.59622, 41.81867]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58946, 41.81146], [-87.58964, 41.81164]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59325, 41.81494], [-87.59342, 41.8151]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61094, 41.84477], [-87.611, 41.84499]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58926, 41.81121], [-87.58932, 41.81132]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61075, 41.84433], [-87.61083, 41.84455]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59596, 41.8183], [-87.59609, 41.81849]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60801, 41.83749], [-87.60808, 41.83771]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59193, 41.81389], [-87.59212, 41.81403]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61764, 41.86044], [-87.61774, 41.86063]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61412, 41.8538], [-87.61424, 41.85397]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59043, 41.81051], [-87.59026, 41.81061]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60266, 41.82801], [-87.60283, 41.82817]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59557, 41.81777], [-87.59569, 41.81794]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61598, 41.85696], [-87.61607, 41.85715]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61184, 41.84744], [-87.61192, 41.84766]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59875, 41.82217], [-87.59884, 41.82237]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59749, 41.8203], [-87.59763, 41.82048]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61234, 41.84902], [-87.61242, 41.84924]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61172, 41.84699], [-87.61178, 41.84721]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59159, 41.80906], [-87.59177, 41.80926]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59102, 41.8132], [-87.5912, 41.81335]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61337, 41.85229], [-87.61345, 41.8525]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60881, 41.83969], [-87.6089, 41.83992]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59026, 41.81234], [-87.59039, 41.81248]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61281, 41.85059], [-87.61289, 41.85081]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61803, 41.86135], [-87.61809, 41.86153]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60965, 41.84169], [-87.60973, 41.84191]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61774, 41.86063], [-87.61782, 41.86082]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60611, 41.83161], [-87.60626, 41.83179]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59015, 41.81222], [-87.59026, 41.81234]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60019, 41.82511], [-87.60029, 41.8253]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60526, 41.8305], [-87.60542, 41.83068]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59175, 41.81375], [-87.59193, 41.81389]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60448, 41.82962], [-87.60464, 41.82978]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60787, 41.83611], [-87.60789, 41.83634]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61141, 41.84609], [-87.61148, 41.84631]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59776, 41.82068], [-87.5979, 41.82085]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59156, 41.80903], [-87.59159, 41.80906]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60982, 41.84213], [-87.60992, 41.84235]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60359, 41.82881], [-87.60377, 41.82896]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61828, 41.86205], [-87.61833, 41.86222]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59418, 41.81597], [-87.59433, 41.81615]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58926, 41.80597], [-87.58937, 41.80613]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59039, 41.80781], [-87.59048, 41.80793]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60757, 41.83401], [-87.60763, 41.83423]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59066, 41.81038], [-87.59043, 41.81051]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61207, 41.8481], [-87.61213, 41.84834]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61906, 41.86481], [-87.6192, 41.86493]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61723, 41.85959], [-87.61733, 41.85975]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59895, 41.82257], [-87.59903, 41.82277]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59048, 41.80793], [-87.5905, 41.80796]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59763, 41.82048], [-87.59776, 41.82068]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60283, 41.82817], [-87.60302, 41.82833]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61709, 41.85924], [-87.61715, 41.85941]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61275, 41.85037], [-87.61281, 41.85059]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58958, 41.8065], [-87.58969, 41.8067]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60038, 41.82549], [-87.60049, 41.82568]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61242, 41.84924], [-87.61248, 41.84947]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59706, 41.81975], [-87.5972, 41.81994]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61496, 41.85502], [-87.61509, 41.85521]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60769, 41.83446], [-87.60774, 41.83469]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60496, 41.83013], [-87.60512, 41.83032]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59086, 41.81307], [-87.59102, 41.8132]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61133, 41.84588], [-87.61141, 41.84609]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61529, 41.8556], [-87.61539, 41.85579]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61162, 41.84676], [-87.61172, 41.84699]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59541, 41.81758], [-87.59557, 41.81777]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6001, 41.82491], [-87.60019, 41.82511]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6007, 41.82604], [-87.60083, 41.82623]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60377, 41.82896], [-87.60394, 41.82912]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59085, 41.81026], [-87.59066, 41.81038]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60229, 41.82769], [-87.60248, 41.82785]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60156, 41.82707], [-87.60173, 41.82722]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60928, 41.84081], [-87.60936, 41.84102]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60909, 41.84035], [-87.60919, 41.84058]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58992, 41.80709], [-87.59005, 41.80729]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61782, 41.86082], [-87.61787, 41.86099]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58905, 41.80554], [-87.5891, 41.80566]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60653, 41.83216], [-87.60666, 41.83236]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61691, 41.85891], [-87.61699, 41.85908]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61345, 41.8525], [-87.61353, 41.85269]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60061, 41.82587], [-87.6007, 41.82604]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61323, 41.85189], [-87.61331, 41.85209]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59803, 41.82103], [-87.59817, 41.82122]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58932, 41.81132], [-87.58946, 41.81146]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60321, 41.82849], [-87.60339, 41.82865]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60707, 41.83295], [-87.60719, 41.83315]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59252, 41.81432], [-87.59269, 41.81446]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61126, 41.84565], [-87.61133, 41.84588]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61625, 41.85753], [-87.61634, 41.85771]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59142, 41.80894], [-87.59156, 41.80903]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59693, 41.81958], [-87.59706, 41.81975]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60808, 41.83771], [-87.60812, 41.83794]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5891, 41.80566], [-87.58921, 41.80582]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61892, 41.86435], [-87.61895, 41.86451]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59029, 41.80766], [-87.59039, 41.80781]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59501, 41.81705], [-87.59517, 41.81723]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5898, 41.81085], [-87.58956, 41.81096]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61895, 41.86451], [-87.61901, 41.86466]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59964, 41.82395], [-87.59973, 41.82414]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59096, 41.80854], [-87.59112, 41.8087]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59488, 41.81688], [-87.59501, 41.81705]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59474, 41.8167], [-87.59488, 41.81688]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60774, 41.83469], [-87.60777, 41.83492]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61675, 41.85857], [-87.61683, 41.85874]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6104, 41.84345], [-87.61048, 41.84367]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5917, 41.80976], [-87.59153, 41.80987]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61289, 41.85081], [-87.61297, 41.85104]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60302, 41.82833], [-87.60321, 41.82849]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59153, 41.80987], [-87.59136, 41.80995]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60873, 41.83948], [-87.60881, 41.83969]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59358, 41.81528], [-87.59374, 41.81544]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6152, 41.85541], [-87.61529, 41.8556]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59953, 41.82375], [-87.59964, 41.82395]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60083, 41.82623], [-87.60096, 41.82641]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61869, 41.86347], [-87.61877, 41.86373]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60394, 41.82912], [-87.60415, 41.82928]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61641, 41.85788], [-87.6165, 41.85806]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59679, 41.81939], [-87.59693, 41.81958]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59287, 41.81462], [-87.59306, 41.81477]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59903, 41.82277], [-87.59914, 41.82297]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61378, 41.85326], [-87.61389, 41.85344]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60846, 41.83882], [-87.60855, 41.83903]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61539, 41.85579], [-87.61548, 41.85599]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59097, 41.81017], [-87.59085, 41.81026]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61509, 41.85521], [-87.6152, 41.85541]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59433, 41.81615], [-87.59447, 41.81633]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61434, 41.85414], [-87.61448, 41.8543]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6137, 41.85308], [-87.61378, 41.85326]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59112, 41.8087], [-87.59129, 41.80883]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5912, 41.81335], [-87.59139, 41.81348]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61617, 41.85734], [-87.61625, 41.85753]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61715, 41.85941], [-87.61723, 41.85959]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6021, 41.82753], [-87.60229, 41.82769]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59269, 41.81446], [-87.59287, 41.81462]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61683, 41.85874], [-87.61691, 41.85891]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6186, 41.86308], [-87.61863, 41.86322]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61796, 41.86118], [-87.61803, 41.86135]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61569, 41.85638], [-87.61579, 41.85657]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61297, 41.85104], [-87.61302, 41.85124]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6103, 41.84323], [-87.6104, 41.84345]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61842, 41.86253], [-87.61847, 41.86267]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60719, 41.83315], [-87.6073, 41.83336]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61855, 41.86295], [-87.6186, 41.86308]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58921, 41.80582], [-87.58926, 41.80597]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60431, 41.82944], [-87.60448, 41.82962]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60682, 41.83254], [-87.60695, 41.83274]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61248, 41.84947], [-87.61254, 41.84969]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60785, 41.83587], [-87.60787, 41.83611]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61733, 41.85975], [-87.61739, 41.85994]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61226, 41.84879], [-87.61234, 41.84902]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61815, 41.86171], [-87.61822, 41.86187]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61221, 41.84855], [-87.61226, 41.84879]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5939, 41.81562], [-87.59404, 41.8158]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6165, 41.85806], [-87.61658, 41.85823]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61199, 41.84789], [-87.61207, 41.8481]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61559, 41.85618], [-87.61569, 41.85638]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60955, 41.84146], [-87.60965, 41.84169]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60792, 41.83658], [-87.60792, 41.83681]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60555, 41.83087], [-87.60569, 41.83105]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6082, 41.83816], [-87.60828, 41.83838]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59002, 41.81073], [-87.5898, 41.81085]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59517, 41.81723], [-87.5953, 41.81742]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59829, 41.8214], [-87.59841, 41.82158]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59059, 41.80813], [-87.59069, 41.80825]]}, "type": "Feature", "properties": {"num_passengers": 5017}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63165, 41.91146], [-87.63174, 41.91162]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63301, 41.91361], [-87.63296, 41.91346]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63255, 41.91283], [-87.63263, 41.91302]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6316, 41.91132], [-87.63165, 41.91146]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63284, 41.91331], [-87.63294, 41.91347]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63224, 41.91246], [-87.63233, 41.91261]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63243, 41.91274], [-87.63255, 41.91283]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63145, 41.90759], [-87.63143, 41.90774]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63146, 41.90625], [-87.63147, 41.9065]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63263, 41.91302], [-87.63273, 41.91317]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63162, 41.91077], [-87.6316, 41.91096]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63273, 41.91317], [-87.63284, 41.91331]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63149, 41.90887], [-87.63149, 41.90909]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63147, 41.90675], [-87.63147, 41.90701]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63143, 41.90774], [-87.63143, 41.90774]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63294, 41.91347], [-87.633, 41.91359]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63174, 41.91162], [-87.63182, 41.91178]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63145, 41.90937], [-87.63157, 41.90962]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63157, 41.90962], [-87.63157, 41.90976]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63233, 41.91261], [-87.63243, 41.91274]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6316, 41.90996], [-87.6316, 41.91017]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63149, 41.90909], [-87.63146, 41.90925]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63147, 41.9065], [-87.63147, 41.90675]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63147, 41.90795], [-87.63148, 41.90813]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63149, 41.90862], [-87.63149, 41.90887]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6316, 41.91017], [-87.6316, 41.91038]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.633, 41.91359], [-87.63301, 41.91361]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63157, 41.91116], [-87.6316, 41.91132]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63146, 41.90925], [-87.63145, 41.90937]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63147, 41.90745], [-87.63145, 41.90759]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63205, 41.91218], [-87.63214, 41.91232]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63143, 41.90774], [-87.63147, 41.90795]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63143, 41.90585], [-87.63145, 41.90603]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63147, 41.90725], [-87.63147, 41.90745]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63157, 41.91112], [-87.63157, 41.91116]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63148, 41.90813], [-87.63149, 41.90837]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63145, 41.90603], [-87.63146, 41.90625]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63162, 41.91058], [-87.63162, 41.91077]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63198, 41.91204], [-87.63205, 41.91218]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6319, 41.91191], [-87.63198, 41.91204]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63149, 41.90837], [-87.63149, 41.90862]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63182, 41.91178], [-87.6319, 41.91191]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63147, 41.90701], [-87.63147, 41.90725]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6316, 41.91096], [-87.63157, 41.91112]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6316, 41.91038], [-87.63162, 41.91058]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63157, 41.90976], [-87.6316, 41.90996]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63214, 41.91232], [-87.63224, 41.91246]]}, "type": "Feature", "properties": {"num_passengers": 5023}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58822, 41.80356], [-87.5883, 41.80376]]}, "type": "Feature", "properties": {"num_passengers": 5040}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58853, 41.80427], [-87.58853, 41.8043]]}, "type": "Feature", "properties": {"num_passengers": 5040}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58845, 41.80412], [-87.58853, 41.80427]]}, "type": "Feature", "properties": {"num_passengers": 5040}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58862, 41.80449], [-87.58865, 41.80465]]}, "type": "Feature", "properties": {"num_passengers": 5040}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58814, 41.80337], [-87.58822, 41.80356]]}, "type": "Feature", "properties": {"num_passengers": 5040}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58838, 41.80395], [-87.58845, 41.80412]]}, "type": "Feature", "properties": {"num_passengers": 5040}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5881, 41.80321], [-87.58814, 41.80337]]}, "type": "Feature", "properties": {"num_passengers": 5040}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58865, 41.80465], [-87.58875, 41.80484]]}, "type": "Feature", "properties": {"num_passengers": 5040}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58853, 41.8043], [-87.58862, 41.80449]]}, "type": "Feature", "properties": {"num_passengers": 5040}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5883, 41.80376], [-87.58838, 41.80395]]}, "type": "Feature", "properties": {"num_passengers": 5040}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58803, 41.80306], [-87.5881, 41.80321]]}, "type": "Feature", "properties": {"num_passengers": 5040}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62349, 41.88833], [-87.62376, 41.88832]]}, "type": "Feature", "properties": {"num_passengers": 5049}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62453, 41.8883], [-87.6247, 41.88831]]}, "type": "Feature", "properties": {"num_passengers": 5049}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62434, 41.8883], [-87.62453, 41.8883]]}, "type": "Feature", "properties": {"num_passengers": 5049}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62395, 41.88832], [-87.62418, 41.88831]]}, "type": "Feature", "properties": {"num_passengers": 5049}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6247, 41.88831], [-87.62496, 41.88832]]}, "type": "Feature", "properties": {"num_passengers": 5049}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62376, 41.88832], [-87.62395, 41.88832]]}, "type": "Feature", "properties": {"num_passengers": 5049}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62324, 41.88833], [-87.62349, 41.88833]]}, "type": "Feature", "properties": {"num_passengers": 5049}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.88831], [-87.62434, 41.8883]]}, "type": "Feature", "properties": {"num_passengers": 5049}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63428, 41.91561], [-87.6348, 41.91646]]}, "type": "Feature", "properties": {"num_passengers": 5056}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6348, 41.91646], [-87.6348, 41.91646]]}, "type": "Feature", "properties": {"num_passengers": 5056}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63418, 41.91545], [-87.63428, 41.91561]]}, "type": "Feature", "properties": {"num_passengers": 5056}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58892, 41.80523], [-87.589, 41.80541]]}, "type": "Feature", "properties": {"num_passengers": 5067}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63296, 41.91346], [-87.63418, 41.91545]]}, "type": "Feature", "properties": {"num_passengers": 5080}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62054, 41.71626], [-87.62054, 41.7161]]}, "type": "Feature", "properties": {"num_passengers": 5081}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62054, 41.7161], [-87.62054, 41.71591]]}, "type": "Feature", "properties": {"num_passengers": 5081}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62057, 41.71553], [-87.62057, 41.71534]]}, "type": "Feature", "properties": {"num_passengers": 5081}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62054, 41.71591], [-87.62054, 41.71572]]}, "type": "Feature", "properties": {"num_passengers": 5081}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62057, 41.71518], [-87.62057, 41.71501]]}, "type": "Feature", "properties": {"num_passengers": 5081}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62054, 41.71572], [-87.62057, 41.71553]]}, "type": "Feature", "properties": {"num_passengers": 5081}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62057, 41.71534], [-87.62057, 41.71518]]}, "type": "Feature", "properties": {"num_passengers": 5081}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62057, 41.71501], [-87.62057, 41.71498]]}, "type": "Feature", "properties": {"num_passengers": 5083}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62552, 41.88819], [-87.6257, 41.88804]]}, "type": "Feature", "properties": {"num_passengers": 5097}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62586, 41.88789], [-87.62604, 41.88773]]}, "type": "Feature", "properties": {"num_passengers": 5097}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62623, 41.88758], [-87.6264, 41.88748]]}, "type": "Feature", "properties": {"num_passengers": 5097}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62536, 41.88832], [-87.62552, 41.88819]]}, "type": "Feature", "properties": {"num_passengers": 5097}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62604, 41.88773], [-87.62623, 41.88758]]}, "type": "Feature", "properties": {"num_passengers": 5097}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6257, 41.88804], [-87.62586, 41.88789]]}, "type": "Feature", "properties": {"num_passengers": 5097}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58875, 41.80484], [-87.58884, 41.80504]]}, "type": "Feature", "properties": {"num_passengers": 5133}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63248, 41.91483], [-87.63235, 41.91471]]}, "type": "Feature", "properties": {"num_passengers": 5144}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62492, 41.75113], [-87.62516, 41.75112]]}, "type": "Feature", "properties": {"num_passengers": 5156}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63238, 41.886], [-87.63238, 41.88618]]}, "type": "Feature", "properties": {"num_passengers": 5159}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63238, 41.88618], [-87.63239, 41.88628]]}, "type": "Feature", "properties": {"num_passengers": 5159}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60496, 41.75135], [-87.60506, 41.75135]]}, "type": "Feature", "properties": {"num_passengers": 5172}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63701, 41.75072], [-87.64136, 41.75066]]}, "type": "Feature", "properties": {"num_passengers": 5175}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62893, 41.75095], [-87.6292, 41.75095]]}, "type": "Feature", "properties": {"num_passengers": 5186}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63123, 41.7509], [-87.63147, 41.7509]]}, "type": "Feature", "properties": {"num_passengers": 5186}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62963, 41.75092], [-87.62988, 41.75092]]}, "type": "Feature", "properties": {"num_passengers": 5186}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6317, 41.7509], [-87.6319, 41.7509]]}, "type": "Feature", "properties": {"num_passengers": 5186}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62725, 41.75095], [-87.62744, 41.75095]]}, "type": "Feature", "properties": {"num_passengers": 5186}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62866, 41.75095], [-87.62893, 41.75095]]}, "type": "Feature", "properties": {"num_passengers": 5186}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62763, 41.75097], [-87.62783, 41.75096]]}, "type": "Feature", "properties": {"num_passengers": 5186}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62744, 41.75095], [-87.62744, 41.75095]]}, "type": "Feature", "properties": {"num_passengers": 5186}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6319, 41.7509], [-87.63208, 41.75086]]}, "type": "Feature", "properties": {"num_passengers": 5186}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62783, 41.75096], [-87.62809, 41.75095]]}, "type": "Feature", "properties": {"num_passengers": 5186}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62613, 41.75109], [-87.62636, 41.75105]]}, "type": "Feature", "properties": {"num_passengers": 5186}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62996, 41.75092], [-87.63022, 41.75092]]}, "type": "Feature", "properties": {"num_passengers": 5186}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62701, 41.75096], [-87.62725, 41.75095]]}, "type": "Feature", "properties": {"num_passengers": 5186}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62744, 41.75095], [-87.62763, 41.75097]]}, "type": "Feature", "properties": {"num_passengers": 5186}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62613, 41.75109], [-87.62613, 41.75109]]}, "type": "Feature", "properties": {"num_passengers": 5186}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63098, 41.7509], [-87.63123, 41.7509]]}, "type": "Feature", "properties": {"num_passengers": 5186}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62636, 41.75105], [-87.62653, 41.75101]]}, "type": "Feature", "properties": {"num_passengers": 5186}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6319, 41.7509], [-87.6319, 41.7509]]}, "type": "Feature", "properties": {"num_passengers": 5186}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62809, 41.75095], [-87.62839, 41.75095]]}, "type": "Feature", "properties": {"num_passengers": 5186}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62653, 41.75101], [-87.62677, 41.75099]]}, "type": "Feature", "properties": {"num_passengers": 5186}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62677, 41.75099], [-87.62701, 41.75096]]}, "type": "Feature", "properties": {"num_passengers": 5186}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62988, 41.75092], [-87.62996, 41.75092]]}, "type": "Feature", "properties": {"num_passengers": 5186}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6292, 41.75095], [-87.62944, 41.75093]]}, "type": "Feature", "properties": {"num_passengers": 5186}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62839, 41.75095], [-87.62866, 41.75095]]}, "type": "Feature", "properties": {"num_passengers": 5186}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63147, 41.7509], [-87.6317, 41.7509]]}, "type": "Feature", "properties": {"num_passengers": 5186}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63022, 41.75092], [-87.63047, 41.75092]]}, "type": "Feature", "properties": {"num_passengers": 5186}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62594, 41.75111], [-87.62613, 41.75109]]}, "type": "Feature", "properties": {"num_passengers": 5186}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62944, 41.75093], [-87.62963, 41.75092]]}, "type": "Feature", "properties": {"num_passengers": 5186}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63073, 41.75091], [-87.63098, 41.7509]]}, "type": "Feature", "properties": {"num_passengers": 5186}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62668, 41.89673], [-87.62678, 41.89673]]}, "type": "Feature", "properties": {"num_passengers": 5186}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63047, 41.75092], [-87.63073, 41.75091]]}, "type": "Feature", "properties": {"num_passengers": 5186}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63238, 41.88584], [-87.63238, 41.886]]}, "type": "Feature", "properties": {"num_passengers": 5193}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63236, 41.8853], [-87.63237, 41.88548]]}, "type": "Feature", "properties": {"num_passengers": 5199}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58884, 41.80504], [-87.58892, 41.80523]]}, "type": "Feature", "properties": {"num_passengers": 5203}}, {"geometry": {"type": "LineString", "coordinates": [[-87.624, 41.86279], [-87.624, 41.86293]]}, "type": "Feature", "properties": {"num_passengers": 5221}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.86369], [-87.62402, 41.86383]]}, "type": "Feature", "properties": {"num_passengers": 5221}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62399, 41.86204], [-87.62399, 41.86219]]}, "type": "Feature", "properties": {"num_passengers": 5221}}, {"geometry": {"type": "LineString", "coordinates": [[-87.624, 41.86339], [-87.62402, 41.86356]]}, "type": "Feature", "properties": {"num_passengers": 5221}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62399, 41.86307], [-87.624, 41.86323]]}, "type": "Feature", "properties": {"num_passengers": 5221}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62399, 41.86235], [-87.62399, 41.86251]]}, "type": "Feature", "properties": {"num_passengers": 5221}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.86383], [-87.62402, 41.86395]]}, "type": "Feature", "properties": {"num_passengers": 5221}}, {"geometry": {"type": "LineString", "coordinates": [[-87.624, 41.86293], [-87.62399, 41.86307]]}, "type": "Feature", "properties": {"num_passengers": 5221}}, {"geometry": {"type": "LineString", "coordinates": [[-87.624, 41.86323], [-87.624, 41.86339]]}, "type": "Feature", "properties": {"num_passengers": 5221}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62399, 41.86265], [-87.624, 41.86279]]}, "type": "Feature", "properties": {"num_passengers": 5221}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62399, 41.86219], [-87.62399, 41.86235]]}, "type": "Feature", "properties": {"num_passengers": 5221}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62399, 41.86251], [-87.62399, 41.86265]]}, "type": "Feature", "properties": {"num_passengers": 5221}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.86356], [-87.62402, 41.86369]]}, "type": "Feature", "properties": {"num_passengers": 5221}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62399, 41.86189], [-87.62399, 41.86204]]}, "type": "Feature", "properties": {"num_passengers": 5221}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63238, 41.88567], [-87.63238, 41.88584]]}, "type": "Feature", "properties": {"num_passengers": 5233}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63237, 41.88548], [-87.63238, 41.88567]]}, "type": "Feature", "properties": {"num_passengers": 5242}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62399, 41.89816], [-87.62404, 41.89935]]}, "type": "Feature", "properties": {"num_passengers": 5250}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62572, 41.75111], [-87.62594, 41.75111]]}, "type": "Feature", "properties": {"num_passengers": 5277}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64111, 41.87774], [-87.6411, 41.87759]]}, "type": "Feature", "properties": {"num_passengers": 5280}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6411, 41.87809], [-87.64111, 41.87794]]}, "type": "Feature", "properties": {"num_passengers": 5280}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64111, 41.87794], [-87.64111, 41.87774]]}, "type": "Feature", "properties": {"num_passengers": 5280}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64109, 41.87723], [-87.64108, 41.87706]]}, "type": "Feature", "properties": {"num_passengers": 5280}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64109, 41.87739], [-87.64109, 41.87723]]}, "type": "Feature", "properties": {"num_passengers": 5280}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6411, 41.87759], [-87.64109, 41.87739]]}, "type": "Feature", "properties": {"num_passengers": 5280}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64108, 41.87706], [-87.64107, 41.87691]]}, "type": "Feature", "properties": {"num_passengers": 5280}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62545, 41.75112], [-87.62572, 41.75111]]}, "type": "Feature", "properties": {"num_passengers": 5290}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62767, 41.87508], [-87.62767, 41.87491]]}, "type": "Feature", "properties": {"num_passengers": 5300}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62399, 41.89799], [-87.62399, 41.89816]]}, "type": "Feature", "properties": {"num_passengers": 5318}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63202, 41.89667], [-87.6325, 41.89666]]}, "type": "Feature", "properties": {"num_passengers": 5321}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62883, 41.8967], [-87.62922, 41.89669]]}, "type": "Feature", "properties": {"num_passengers": 5321}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63261, 41.89665], [-87.63319, 41.89666]]}, "type": "Feature", "properties": {"num_passengers": 5321}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63147, 41.89668], [-87.63202, 41.89667]]}, "type": "Feature", "properties": {"num_passengers": 5321}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6325, 41.89666], [-87.63261, 41.89665]]}, "type": "Feature", "properties": {"num_passengers": 5321}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62922, 41.89669], [-87.62958, 41.89669]]}, "type": "Feature", "properties": {"num_passengers": 5321}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63369, 41.89665], [-87.63436, 41.89664]]}, "type": "Feature", "properties": {"num_passengers": 5321}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62718, 41.89672], [-87.62761, 41.89671]]}, "type": "Feature", "properties": {"num_passengers": 5321}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63059, 41.89668], [-87.63103, 41.89667]]}, "type": "Feature", "properties": {"num_passengers": 5321}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63103, 41.89667], [-87.63113, 41.89667]]}, "type": "Feature", "properties": {"num_passengers": 5321}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63319, 41.89666], [-87.63369, 41.89665]]}, "type": "Feature", "properties": {"num_passengers": 5321}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62678, 41.89673], [-87.62718, 41.89672]]}, "type": "Feature", "properties": {"num_passengers": 5321}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63012, 41.89668], [-87.63059, 41.89668]]}, "type": "Feature", "properties": {"num_passengers": 5321}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63436, 41.89664], [-87.63491, 41.89664]]}, "type": "Feature", "properties": {"num_passengers": 5321}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62761, 41.89671], [-87.628, 41.8967]]}, "type": "Feature", "properties": {"num_passengers": 5321}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62807, 41.8967], [-87.6284, 41.8967]]}, "type": "Feature", "properties": {"num_passengers": 5321}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6284, 41.8967], [-87.62883, 41.8967]]}, "type": "Feature", "properties": {"num_passengers": 5321}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60506, 41.75135], [-87.60526, 41.75133]]}, "type": "Feature", "properties": {"num_passengers": 5321}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63113, 41.89667], [-87.63147, 41.89668]]}, "type": "Feature", "properties": {"num_passengers": 5321}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62967, 41.89669], [-87.63012, 41.89668]]}, "type": "Feature", "properties": {"num_passengers": 5321}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62958, 41.89669], [-87.62967, 41.89669]]}, "type": "Feature", "properties": {"num_passengers": 5321}}, {"geometry": {"type": "LineString", "coordinates": [[-87.628, 41.8967], [-87.62807, 41.8967]]}, "type": "Feature", "properties": {"num_passengers": 5321}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64722, 41.89644], [-87.64774, 41.89645]]}, "type": "Feature", "properties": {"num_passengers": 5338}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64675, 41.89646], [-87.64722, 41.89644]]}, "type": "Feature", "properties": {"num_passengers": 5338}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64827, 41.89645], [-87.64859, 41.89645]]}, "type": "Feature", "properties": {"num_passengers": 5338}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65047, 41.89638], [-87.65106, 41.89638]]}, "type": "Feature", "properties": {"num_passengers": 5338}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64621, 41.89647], [-87.64675, 41.89646]]}, "type": "Feature", "properties": {"num_passengers": 5338}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64893, 41.89641], [-87.64933, 41.8964]]}, "type": "Feature", "properties": {"num_passengers": 5338}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65333, 41.89633], [-87.65396, 41.89632]]}, "type": "Feature", "properties": {"num_passengers": 5338}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64815, 41.89646], [-87.64827, 41.89645]]}, "type": "Feature", "properties": {"num_passengers": 5338}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64859, 41.89645], [-87.64893, 41.89641]]}, "type": "Feature", "properties": {"num_passengers": 5338}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64774, 41.89645], [-87.64815, 41.89646]]}, "type": "Feature", "properties": {"num_passengers": 5338}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65178, 41.89636], [-87.65227, 41.89635]]}, "type": "Feature", "properties": {"num_passengers": 5338}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65106, 41.89638], [-87.65168, 41.89637]]}, "type": "Feature", "properties": {"num_passengers": 5338}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64933, 41.8964], [-87.6499, 41.89639]]}, "type": "Feature", "properties": {"num_passengers": 5338}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6499, 41.89639], [-87.65047, 41.89638]]}, "type": "Feature", "properties": {"num_passengers": 5338}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64609, 41.89647], [-87.64621, 41.89647]]}, "type": "Feature", "properties": {"num_passengers": 5338}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65396, 41.89632], [-87.65458, 41.89632]]}, "type": "Feature", "properties": {"num_passengers": 5338}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65227, 41.89635], [-87.65278, 41.89634]]}, "type": "Feature", "properties": {"num_passengers": 5338}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65168, 41.89637], [-87.65178, 41.89636]]}, "type": "Feature", "properties": {"num_passengers": 5338}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6456, 41.89647], [-87.64609, 41.89647]]}, "type": "Feature", "properties": {"num_passengers": 5338}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65278, 41.89634], [-87.65333, 41.89633]]}, "type": "Feature", "properties": {"num_passengers": 5338}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62526, 41.75112], [-87.62545, 41.75112]]}, "type": "Feature", "properties": {"num_passengers": 5353}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60526, 41.75133], [-87.60555, 41.7513]]}, "type": "Feature", "properties": {"num_passengers": 5403}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62516, 41.75112], [-87.62526, 41.75112]]}, "type": "Feature", "properties": {"num_passengers": 5408}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62759, 41.87695], [-87.62764, 41.87934]]}, "type": "Feature", "properties": {"num_passengers": 5433}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63659, 41.7508], [-87.63701, 41.75072]]}, "type": "Feature", "properties": {"num_passengers": 5448}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64505, 41.89647], [-87.6456, 41.89647]]}, "type": "Feature", "properties": {"num_passengers": 5460}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64505, 41.95161], [-87.64502, 41.95146]]}, "type": "Feature", "properties": {"num_passengers": 5466}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64507, 41.95189], [-87.64505, 41.95175]]}, "type": "Feature", "properties": {"num_passengers": 5466}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64505, 41.95175], [-87.64505, 41.95161]]}, "type": "Feature", "properties": {"num_passengers": 5466}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64507, 41.95202], [-87.64507, 41.95189]]}, "type": "Feature", "properties": {"num_passengers": 5466}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60555, 41.7513], [-87.60576, 41.75128]]}, "type": "Feature", "properties": {"num_passengers": 5469}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63401, 41.75082], [-87.63659, 41.7508]]}, "type": "Feature", "properties": {"num_passengers": 5471}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63225, 41.75086], [-87.63247, 41.75085]]}, "type": "Feature", "properties": {"num_passengers": 5473}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63271, 41.75084], [-87.63294, 41.75084]]}, "type": "Feature", "properties": {"num_passengers": 5473}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63336, 41.75083], [-87.63356, 41.75083]]}, "type": "Feature", "properties": {"num_passengers": 5473}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63395, 41.75083], [-87.63395, 41.75083]]}, "type": "Feature", "properties": {"num_passengers": 5473}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63356, 41.75083], [-87.63378, 41.75083]]}, "type": "Feature", "properties": {"num_passengers": 5473}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63395, 41.75083], [-87.63401, 41.75082]]}, "type": "Feature", "properties": {"num_passengers": 5473}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63314, 41.75083], [-87.63336, 41.75083]]}, "type": "Feature", "properties": {"num_passengers": 5473}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63208, 41.75086], [-87.63225, 41.75086]]}, "type": "Feature", "properties": {"num_passengers": 5473}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63247, 41.75085], [-87.63271, 41.75084]]}, "type": "Feature", "properties": {"num_passengers": 5473}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63294, 41.75084], [-87.63314, 41.75083]]}, "type": "Feature", "properties": {"num_passengers": 5473}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63378, 41.75083], [-87.63395, 41.75083]]}, "type": "Feature", "properties": {"num_passengers": 5473}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62764, 41.87327], [-87.62763, 41.87316]]}, "type": "Feature", "properties": {"num_passengers": 5474}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62748, 41.87306], [-87.62737, 41.87307]]}, "type": "Feature", "properties": {"num_passengers": 5474}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62759, 41.87307], [-87.62748, 41.87306]]}, "type": "Feature", "properties": {"num_passengers": 5474}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62765, 41.87462], [-87.62765, 41.87444]]}, "type": "Feature", "properties": {"num_passengers": 5474}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62765, 41.87374], [-87.62765, 41.87361]]}, "type": "Feature", "properties": {"num_passengers": 5474}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62763, 41.87316], [-87.62759, 41.87307]]}, "type": "Feature", "properties": {"num_passengers": 5474}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62764, 41.87351], [-87.62764, 41.87341]]}, "type": "Feature", "properties": {"num_passengers": 5474}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62764, 41.87341], [-87.62764, 41.87327]]}, "type": "Feature", "properties": {"num_passengers": 5474}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62765, 41.87477], [-87.62765, 41.87462]]}, "type": "Feature", "properties": {"num_passengers": 5474}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62767, 41.87491], [-87.62765, 41.87477]]}, "type": "Feature", "properties": {"num_passengers": 5474}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62766, 41.87396], [-87.62765, 41.87374]]}, "type": "Feature", "properties": {"num_passengers": 5474}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62766, 41.87413], [-87.62766, 41.87396]]}, "type": "Feature", "properties": {"num_passengers": 5474}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62765, 41.87444], [-87.62764, 41.87429]]}, "type": "Feature", "properties": {"num_passengers": 5474}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62764, 41.87429], [-87.62766, 41.87413]]}, "type": "Feature", "properties": {"num_passengers": 5474}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62765, 41.87361], [-87.62764, 41.87351]]}, "type": "Feature", "properties": {"num_passengers": 5474}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64223, 41.94644], [-87.64211, 41.94621]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64211, 41.94621], [-87.642, 41.94604]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64451, 41.95032], [-87.64448, 41.95026]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64236, 41.94666], [-87.64231, 41.94659]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64318, 41.94809], [-87.6431, 41.94791]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64344, 41.94853], [-87.64336, 41.9484]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64291, 41.94761], [-87.64286, 41.94754]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64301, 41.94776], [-87.64291, 41.94761]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64363, 41.94885], [-87.64356, 41.94872]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64266, 41.94717], [-87.64255, 41.94698]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64356, 41.94872], [-87.64348, 41.9486]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64433, 41.95001], [-87.64423, 41.94984]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64255, 41.94698], [-87.64245, 41.94682]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64348, 41.9486], [-87.64344, 41.94853]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64415, 41.94972], [-87.64406, 41.94956]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.642, 41.94604], [-87.64194, 41.94595]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6431, 41.94791], [-87.64301, 41.94776]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64172, 41.94552], [-87.64163, 41.94538]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64448, 41.95026], [-87.6444, 41.95013]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64276, 41.94737], [-87.64266, 41.94717]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64189, 41.94583], [-87.6418, 41.94568]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64389, 41.94925], [-87.64381, 41.94913]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64231, 41.94659], [-87.64223, 41.94644]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64194, 41.94595], [-87.64189, 41.94583]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64406, 41.94956], [-87.64397, 41.94941]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64423, 41.94984], [-87.64415, 41.94972]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64245, 41.94682], [-87.64236, 41.94666]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64381, 41.94913], [-87.64372, 41.949]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64328, 41.94825], [-87.64318, 41.94809]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6444, 41.95013], [-87.64433, 41.95001]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64372, 41.949], [-87.64363, 41.94885]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6418, 41.94568], [-87.64172, 41.94552]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64397, 41.94941], [-87.64389, 41.94925]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64163, 41.94538], [-87.64153, 41.94517]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64153, 41.94517], [-87.64143, 41.94501]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64236, 41.94666], [-87.64236, 41.94666]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64336, 41.9484], [-87.64328, 41.94825]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64286, 41.94754], [-87.64276, 41.94737]]}, "type": "Feature", "properties": {"num_passengers": 5479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63251, 41.88542], [-87.6325, 41.88527]]}, "type": "Feature", "properties": {"num_passengers": 5487}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63251, 41.88559], [-87.63251, 41.88542]]}, "type": "Feature", "properties": {"num_passengers": 5487}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63252, 41.88604], [-87.63252, 41.88588]]}, "type": "Feature", "properties": {"num_passengers": 5487}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63252, 41.88588], [-87.63251, 41.88573]]}, "type": "Feature", "properties": {"num_passengers": 5487}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63254, 41.88633], [-87.63253, 41.88617]]}, "type": "Feature", "properties": {"num_passengers": 5487}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63253, 41.88617], [-87.63252, 41.88604]]}, "type": "Feature", "properties": {"num_passengers": 5487}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63251, 41.88573], [-87.63251, 41.88559]]}, "type": "Feature", "properties": {"num_passengers": 5487}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6325, 41.88527], [-87.6325, 41.88511]]}, "type": "Feature", "properties": {"num_passengers": 5487}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6228, 41.87322], [-87.62302, 41.87322]]}, "type": "Feature", "properties": {"num_passengers": 5492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62254, 41.87322], [-87.6228, 41.87322]]}, "type": "Feature", "properties": {"num_passengers": 5492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62105, 41.87326], [-87.62129, 41.87325]]}, "type": "Feature", "properties": {"num_passengers": 5492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62129, 41.87325], [-87.62157, 41.87324]]}, "type": "Feature", "properties": {"num_passengers": 5492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62366, 41.87321], [-87.62384, 41.87322]]}, "type": "Feature", "properties": {"num_passengers": 5492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62204, 41.87323], [-87.62229, 41.87323]]}, "type": "Feature", "properties": {"num_passengers": 5492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62302, 41.87322], [-87.62324, 41.87322]]}, "type": "Feature", "properties": {"num_passengers": 5492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6218, 41.87324], [-87.62204, 41.87323]]}, "type": "Feature", "properties": {"num_passengers": 5492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62157, 41.87324], [-87.6218, 41.87324]]}, "type": "Feature", "properties": {"num_passengers": 5492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62324, 41.87322], [-87.62344, 41.87321]]}, "type": "Feature", "properties": {"num_passengers": 5492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62344, 41.87321], [-87.62366, 41.87321]]}, "type": "Feature", "properties": {"num_passengers": 5492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62229, 41.87323], [-87.62254, 41.87322]]}, "type": "Feature", "properties": {"num_passengers": 5492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62384, 41.87322], [-87.62395, 41.87322]]}, "type": "Feature", "properties": {"num_passengers": 5492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60903, 41.75124], [-87.60928, 41.75124]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6075, 41.75126], [-87.60758, 41.75126]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60968, 41.75122], [-87.60992, 41.75124]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60992, 41.75124], [-87.61, 41.75124]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6086, 41.75124], [-87.60882, 41.75124]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61364, 41.75118], [-87.61388, 41.75117]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61337, 41.75118], [-87.61364, 41.75118]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61429, 41.75116], [-87.61453, 41.75117]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61135, 41.7512], [-87.61157, 41.7512]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61284, 41.75118], [-87.6131, 41.75117]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6082, 41.75124], [-87.60839, 41.75124]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61064, 41.75122], [-87.61087, 41.75122]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61408, 41.75116], [-87.61429, 41.75116]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61019, 41.75124], [-87.61043, 41.75124]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60628, 41.75128], [-87.60653, 41.75126]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60653, 41.75126], [-87.60682, 41.75126]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60839, 41.75124], [-87.6086, 41.75124]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61087, 41.75122], [-87.61113, 41.75122]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60758, 41.75126], [-87.60777, 41.75126]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6118, 41.7512], [-87.61202, 41.75118]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61202, 41.75118], [-87.61226, 41.7512]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61043, 41.75124], [-87.61064, 41.75122]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60801, 41.75124], [-87.6082, 41.75124]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60951, 41.75122], [-87.60968, 41.75122]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60707, 41.75125], [-87.6073, 41.75126]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61113, 41.75122], [-87.61135, 41.7512]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6131, 41.75117], [-87.61337, 41.75118]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61453, 41.75117], [-87.6147, 41.7512]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61226, 41.7512], [-87.61242, 41.75122]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6147, 41.7512], [-87.61485, 41.75118]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60777, 41.75126], [-87.60801, 41.75124]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60682, 41.75126], [-87.60707, 41.75125]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61242, 41.75122], [-87.61264, 41.7512]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64443, 41.89647], [-87.64505, 41.89647]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60928, 41.75124], [-87.60951, 41.75122]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61, 41.75124], [-87.61019, 41.75124]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61388, 41.75117], [-87.61408, 41.75116]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61157, 41.7512], [-87.6118, 41.7512]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60576, 41.75128], [-87.60601, 41.75128]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60882, 41.75124], [-87.60903, 41.75124]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60601, 41.75128], [-87.60628, 41.75128]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6073, 41.75126], [-87.6075, 41.75126]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61264, 41.7512], [-87.61284, 41.75118]]}, "type": "Feature", "properties": {"num_passengers": 5502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61575, 41.75114], [-87.61602, 41.75114]]}, "type": "Feature", "properties": {"num_passengers": 5513}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63235, 41.91471], [-87.63222, 41.91456]]}, "type": "Feature", "properties": {"num_passengers": 5515}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64324, 41.8965], [-87.64384, 41.89649]]}, "type": "Feature", "properties": {"num_passengers": 5527}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64091, 41.89655], [-87.64149, 41.89654]]}, "type": "Feature", "properties": {"num_passengers": 5527}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63751, 41.89659], [-87.63803, 41.89658]]}, "type": "Feature", "properties": {"num_passengers": 5527}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63918, 41.89657], [-87.63975, 41.89656]]}, "type": "Feature", "properties": {"num_passengers": 5527}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6362, 41.89661], [-87.63681, 41.89659]]}, "type": "Feature", "properties": {"num_passengers": 5527}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63738, 41.89659], [-87.63751, 41.89659]]}, "type": "Feature", "properties": {"num_passengers": 5527}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64149, 41.89654], [-87.6421, 41.89653]]}, "type": "Feature", "properties": {"num_passengers": 5527}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6421, 41.89653], [-87.64258, 41.89652]]}, "type": "Feature", "properties": {"num_passengers": 5527}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64384, 41.89649], [-87.64443, 41.89647]]}, "type": "Feature", "properties": {"num_passengers": 5527}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6427, 41.89652], [-87.64324, 41.8965]]}, "type": "Feature", "properties": {"num_passengers": 5527}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63864, 41.89658], [-87.63918, 41.89657]]}, "type": "Feature", "properties": {"num_passengers": 5527}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64033, 41.89656], [-87.64091, 41.89655]]}, "type": "Feature", "properties": {"num_passengers": 5527}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63803, 41.89658], [-87.63864, 41.89658]]}, "type": "Feature", "properties": {"num_passengers": 5527}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63681, 41.89659], [-87.63738, 41.89659]]}, "type": "Feature", "properties": {"num_passengers": 5527}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63975, 41.89656], [-87.63985, 41.89656]]}, "type": "Feature", "properties": {"num_passengers": 5527}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63985, 41.89656], [-87.64033, 41.89656]]}, "type": "Feature", "properties": {"num_passengers": 5527}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64258, 41.89652], [-87.6427, 41.89652]]}, "type": "Feature", "properties": {"num_passengers": 5527}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61485, 41.75118], [-87.6151, 41.75118]]}, "type": "Feature", "properties": {"num_passengers": 5554}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61551, 41.75116], [-87.61575, 41.75114]]}, "type": "Feature", "properties": {"num_passengers": 5570}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61529, 41.75117], [-87.61551, 41.75116]]}, "type": "Feature", "properties": {"num_passengers": 5579}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6151, 41.75118], [-87.61529, 41.75117]]}, "type": "Feature", "properties": {"num_passengers": 5585}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63491, 41.89664], [-87.63551, 41.89663]]}, "type": "Feature", "properties": {"num_passengers": 5678}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62392, 41.85425], [-87.6239, 41.85407]]}, "type": "Feature", "properties": {"num_passengers": 5744}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63938, 41.93413], [-87.63936, 41.93341]]}, "type": "Feature", "properties": {"num_passengers": 5783}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63222, 41.91456], [-87.63207, 41.91441]]}, "type": "Feature", "properties": {"num_passengers": 5815}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6239, 41.85444], [-87.62392, 41.85425]]}, "type": "Feature", "properties": {"num_passengers": 5827}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64502, 41.95146], [-87.64498, 41.95129]]}, "type": "Feature", "properties": {"num_passengers": 5862}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62441, 41.87852], [-87.62441, 41.87838]]}, "type": "Feature", "properties": {"num_passengers": 5883}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62454, 41.88333], [-87.62454, 41.88312]]}, "type": "Feature", "properties": {"num_passengers": 5883}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62453, 41.88344], [-87.62454, 41.88333]]}, "type": "Feature", "properties": {"num_passengers": 5883}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62441, 41.87874], [-87.6244, 41.87859]]}, "type": "Feature", "properties": {"num_passengers": 5883}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6244, 41.87859], [-87.62441, 41.87852]]}, "type": "Feature", "properties": {"num_passengers": 5883}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6245, 41.8813], [-87.6245, 41.88122]]}, "type": "Feature", "properties": {"num_passengers": 5883}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62441, 41.8792], [-87.62441, 41.87906]]}, "type": "Feature", "properties": {"num_passengers": 5883}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62444, 41.88007], [-87.62443, 41.87993]]}, "type": "Feature", "properties": {"num_passengers": 5883}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62453, 41.88276], [-87.62453, 41.88258]]}, "type": "Feature", "properties": {"num_passengers": 5883}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62454, 41.88312], [-87.62453, 41.88295]]}, "type": "Feature", "properties": {"num_passengers": 5883}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6245, 41.88209], [-87.6245, 41.88195]]}, "type": "Feature", "properties": {"num_passengers": 5883}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62451, 41.88227], [-87.6245, 41.88209]]}, "type": "Feature", "properties": {"num_passengers": 5883}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6244, 41.87893], [-87.62441, 41.87874]]}, "type": "Feature", "properties": {"num_passengers": 5883}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62449, 41.88164], [-87.6245, 41.88148]]}, "type": "Feature", "properties": {"num_passengers": 5883}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62446, 41.88035], [-87.62445, 41.88021]]}, "type": "Feature", "properties": {"num_passengers": 5883}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6245, 41.88148], [-87.6245, 41.8813]]}, "type": "Feature", "properties": {"num_passengers": 5883}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62451, 41.8818], [-87.62449, 41.88164]]}, "type": "Feature", "properties": {"num_passengers": 5883}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62442, 41.87934], [-87.62441, 41.8792]]}, "type": "Feature", "properties": {"num_passengers": 5883}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62446, 41.88053], [-87.62446, 41.88035]]}, "type": "Feature", "properties": {"num_passengers": 5883}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62451, 41.88243], [-87.62451, 41.88227]]}, "type": "Feature", "properties": {"num_passengers": 5883}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62453, 41.88295], [-87.62453, 41.88276]]}, "type": "Feature", "properties": {"num_passengers": 5883}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6245, 41.88195], [-87.62451, 41.8818]]}, "type": "Feature", "properties": {"num_passengers": 5883}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62445, 41.87973], [-87.62444, 41.87954]]}, "type": "Feature", "properties": {"num_passengers": 5883}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62453, 41.88258], [-87.62451, 41.88243]]}, "type": "Feature", "properties": {"num_passengers": 5883}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62445, 41.88021], [-87.62444, 41.88007]]}, "type": "Feature", "properties": {"num_passengers": 5883}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6245, 41.88122], [-87.62449, 41.88117]]}, "type": "Feature", "properties": {"num_passengers": 5883}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62449, 41.88117], [-87.62448, 41.88102]]}, "type": "Feature", "properties": {"num_passengers": 5883}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62443, 41.87993], [-87.62445, 41.87973]]}, "type": "Feature", "properties": {"num_passengers": 5883}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62444, 41.87954], [-87.62442, 41.87934]]}, "type": "Feature", "properties": {"num_passengers": 5883}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62448, 41.88102], [-87.62448, 41.88085]]}, "type": "Feature", "properties": {"num_passengers": 5883}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62447, 41.8807], [-87.62446, 41.88053]]}, "type": "Feature", "properties": {"num_passengers": 5883}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62441, 41.87906], [-87.6244, 41.87893]]}, "type": "Feature", "properties": {"num_passengers": 5883}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62448, 41.88085], [-87.62447, 41.8807]]}, "type": "Feature", "properties": {"num_passengers": 5883}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64136, 41.75066], [-87.64052, 41.75071]]}, "type": "Feature", "properties": {"num_passengers": 5895}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6356, 41.89662], [-87.6362, 41.89661]]}, "type": "Feature", "properties": {"num_passengers": 5903}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63551, 41.89663], [-87.6356, 41.89662]]}, "type": "Feature", "properties": {"num_passengers": 5915}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64143, 41.94501], [-87.64135, 41.94484]]}, "type": "Feature", "properties": {"num_passengers": 5922}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64052, 41.75071], [-87.64079, 41.75069]]}, "type": "Feature", "properties": {"num_passengers": 5928}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64079, 41.75069], [-87.64103, 41.75069]]}, "type": "Feature", "properties": {"num_passengers": 5942}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59077, 41.80809], [-87.59066, 41.80795]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59021, 41.81127], [-87.5901, 41.81106]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59252, 41.81387], [-87.59236, 41.81375]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5905, 41.81184], [-87.59043, 41.8117]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59159, 41.80978], [-87.5918, 41.80974]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59331, 41.81452], [-87.59315, 41.81438]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59099, 41.81259], [-87.59088, 41.81245]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59056, 41.80781], [-87.5905, 41.80772]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59205, 41.8093], [-87.59195, 41.80922]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59036, 41.81028], [-87.59053, 41.81022]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5917, 41.81327], [-87.59156, 41.81315]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59203, 41.80969], [-87.59224, 41.80964]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59186, 41.8134], [-87.5917, 41.81327]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58989, 41.81078], [-87.58981, 41.81064]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59267, 41.814], [-87.59252, 41.81387]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59298, 41.81425], [-87.59283, 41.81413]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59224, 41.80964], [-87.59231, 41.80958]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59066, 41.80795], [-87.59056, 41.80781]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5922, 41.81363], [-87.59202, 41.81352]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59094, 41.81006], [-87.59113, 41.80997]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5914, 41.80988], [-87.59159, 41.80978]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59315, 41.81438], [-87.59298, 41.81425]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59066, 41.81215], [-87.59059, 41.812]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59112, 41.81274], [-87.59099, 41.81259]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59236, 41.81375], [-87.5922, 41.81363]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59059, 41.812], [-87.5905, 41.81184]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5918, 41.80974], [-87.59203, 41.80969]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59088, 41.81245], [-87.59078, 41.81229]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59156, 41.81315], [-87.5914, 41.81301]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59215, 41.8094], [-87.59205, 41.8093]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59, 41.81091], [-87.58989, 41.81078]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59005, 41.81039], [-87.59021, 41.81033]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59035, 41.81154], [-87.59029, 41.81139]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59029, 41.81139], [-87.59021, 41.81127]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59231, 41.80958], [-87.59226, 41.80949]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59113, 41.80997], [-87.5914, 41.80988]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59156, 41.80882], [-87.5914, 41.8087]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59053, 41.81022], [-87.59074, 41.81015]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59128, 41.81288], [-87.59112, 41.81274]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59195, 41.80922], [-87.59156, 41.80882]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59078, 41.81229], [-87.59066, 41.81215]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5914, 41.81301], [-87.59128, 41.81288]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59202, 41.81352], [-87.59186, 41.8134]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5914, 41.8087], [-87.59123, 41.80855]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58981, 41.81064], [-87.58981, 41.81048]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59074, 41.81015], [-87.59094, 41.81006]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59361, 41.8148], [-87.59345, 41.81466]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59107, 41.80839], [-87.59089, 41.80822]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59021, 41.81033], [-87.59036, 41.81028]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59345, 41.81466], [-87.59331, 41.81452]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59043, 41.8117], [-87.59035, 41.81154]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59283, 41.81413], [-87.59267, 41.814]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58981, 41.81048], [-87.59005, 41.81039]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59123, 41.80855], [-87.59107, 41.80839]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59226, 41.80949], [-87.59215, 41.8094]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5901, 41.81106], [-87.59, 41.81091]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59089, 41.80822], [-87.59077, 41.80809]]}, "type": "Feature", "properties": {"num_passengers": 5953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64103, 41.75069], [-87.64125, 41.75071]]}, "type": "Feature", "properties": {"num_passengers": 5963}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64125, 41.75071], [-87.64147, 41.75072]]}, "type": "Feature", "properties": {"num_passengers": 5963}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64147, 41.75072], [-87.64147, 41.75072]]}, "type": "Feature", "properties": {"num_passengers": 5963}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6239, 41.85462], [-87.6239, 41.85444]]}, "type": "Feature", "properties": {"num_passengers": 5999}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59374, 41.81496], [-87.59361, 41.8148]]}, "type": "Feature", "properties": {"num_passengers": 6006}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62392, 41.85488], [-87.6239, 41.85462]]}, "type": "Feature", "properties": {"num_passengers": 6053}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63196, 41.91427], [-87.6319, 41.91414]]}, "type": "Feature", "properties": {"num_passengers": 6059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6319, 41.91414], [-87.63179, 41.91399]]}, "type": "Feature", "properties": {"num_passengers": 6059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63179, 41.91399], [-87.63174, 41.91383]]}, "type": "Feature", "properties": {"num_passengers": 6059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63207, 41.91441], [-87.63196, 41.91427]]}, "type": "Feature", "properties": {"num_passengers": 6059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62392, 41.85507], [-87.62392, 41.85488]]}, "type": "Feature", "properties": {"num_passengers": 6071}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59387, 41.8151], [-87.59374, 41.81496]]}, "type": "Feature", "properties": {"num_passengers": 6132}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62405, 41.86027], [-87.62404, 41.8601]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62401, 41.85883], [-87.624, 41.85865]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6241, 41.8627], [-87.6241, 41.86255]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62394, 41.8557], [-87.62393, 41.85552]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62399, 41.85826], [-87.62399, 41.8581]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62412, 41.86303], [-87.62412, 41.86287]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62398, 41.85726], [-87.62397, 41.85709]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62405, 41.86058], [-87.62405, 41.86041]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62403, 41.85998], [-87.62404, 41.85986]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62412, 41.86353], [-87.62412, 41.86336]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.85971], [-87.62402, 41.85953]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62396, 41.85671], [-87.62394, 41.8565]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62393, 41.85552], [-87.62393, 41.85538]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62406, 41.86142], [-87.62406, 41.86126]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62407, 41.86109], [-87.62405, 41.86091]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62394, 41.85584], [-87.62394, 41.8557]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62405, 41.86091], [-87.62404, 41.86074]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62396, 41.85689], [-87.62396, 41.85671]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6241, 41.86255], [-87.6241, 41.86241]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62405, 41.86041], [-87.62405, 41.86027]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62397, 41.85759], [-87.62398, 41.85744]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62406, 41.86126], [-87.62407, 41.86109]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.624, 41.85847], [-87.62399, 41.85826]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62401, 41.85901], [-87.62401, 41.85883]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62414, 41.86432], [-87.62413, 41.86418]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6241, 41.86241], [-87.62409, 41.86221]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62404, 41.86074], [-87.62405, 41.86058]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62413, 41.86403], [-87.62412, 41.86388]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62404, 41.85986], [-87.62402, 41.85971]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62412, 41.8637], [-87.62412, 41.86353]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62397, 41.85709], [-87.62396, 41.85689]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62404, 41.8601], [-87.62403, 41.85998]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.624, 41.85795], [-87.62398, 41.85783]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62392, 41.85525], [-87.62392, 41.85507]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62409, 41.86221], [-87.62409, 41.86201]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62412, 41.86287], [-87.6241, 41.8627]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62394, 41.85599], [-87.62394, 41.85584]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62399, 41.8581], [-87.624, 41.85795]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62398, 41.85744], [-87.62398, 41.85726]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62398, 41.85783], [-87.62397, 41.85771]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62394, 41.85631], [-87.62394, 41.85616]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62412, 41.86319], [-87.62412, 41.86303]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62406, 41.86161], [-87.62406, 41.86142]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62409, 41.86186], [-87.62407, 41.86175]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.85953], [-87.62401, 41.85935]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62409, 41.86201], [-87.62409, 41.86186]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62393, 41.85538], [-87.62392, 41.85525]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62401, 41.85918], [-87.62401, 41.85901]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62412, 41.86336], [-87.62412, 41.86319]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62394, 41.8565], [-87.62394, 41.85631]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62413, 41.86418], [-87.62413, 41.86403]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.624, 41.85865], [-87.624, 41.85847]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62401, 41.85935], [-87.62401, 41.85918]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62394, 41.85616], [-87.62394, 41.85599]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62412, 41.86388], [-87.62412, 41.8637]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62397, 41.85771], [-87.62397, 41.85759]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62407, 41.86175], [-87.62406, 41.86161]]}, "type": "Feature", "properties": {"num_passengers": 6138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63936, 41.93341], [-87.63936, 41.93306]]}, "type": "Feature", "properties": {"num_passengers": 6210}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62415, 41.86452], [-87.62414, 41.86432]]}, "type": "Feature", "properties": {"num_passengers": 6376}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64498, 41.95129], [-87.64492, 41.95111]]}, "type": "Feature", "properties": {"num_passengers": 6430}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6342, 41.88196], [-87.63736, 41.88192]]}, "type": "Feature", "properties": {"num_passengers": 6445}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61799, 41.86073], [-87.6179, 41.86055]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61024, 41.84248], [-87.61014, 41.84226]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61906, 41.86339], [-87.61901, 41.86322]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61162, 41.84614], [-87.61154, 41.84592]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60046, 41.82525], [-87.60037, 41.82505]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6024, 41.82749], [-87.6022, 41.82732]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59614, 41.818], [-87.596, 41.81785]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59978, 41.82378], [-87.59968, 41.82357]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62052, 41.86857], [-87.62052, 41.86842]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60819, 41.83727], [-87.60814, 41.83703]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61234, 41.84784], [-87.61226, 41.84763]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6001, 41.82442], [-87.59999, 41.8242]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61958, 41.86491], [-87.61954, 41.86475]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62059, 41.87045], [-87.62059, 41.87028]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62052, 41.86842], [-87.62052, 41.86826]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61052, 41.84313], [-87.61043, 41.84291]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6113, 41.84528], [-87.61122, 41.84506]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61825, 41.86127], [-87.61815, 41.8611]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61749, 41.85964], [-87.61739, 41.85947]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61935, 41.86426], [-87.6193, 41.86409]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61146, 41.8457], [-87.61138, 41.84549]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61434, 41.85254], [-87.61426, 41.85237]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61353, 41.85066], [-87.61345, 41.85049]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62032, 41.86706], [-87.6202, 41.8668]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60641, 41.83152], [-87.60626, 41.83133]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61459, 41.85311], [-87.6145, 41.85292]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61366, 41.85101], [-87.61358, 41.85084]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59438, 41.81571], [-87.59426, 41.81557]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61307, 41.84956], [-87.61299, 41.84938]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61838, 41.86163], [-87.61831, 41.86145]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60801, 41.83516], [-87.60797, 41.83492]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59918, 41.82252], [-87.59908, 41.8223]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62006, 41.8664], [-87.62001, 41.86625]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60698, 41.83231], [-87.60685, 41.83212]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62038, 41.86728], [-87.62032, 41.86706]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59534, 41.81696], [-87.59523, 41.81681]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61528, 41.85475], [-87.61521, 41.85457]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59463, 41.81602], [-87.5945, 41.81587]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62057, 41.86924], [-87.62057, 41.86904]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61207, 41.84723], [-87.61197, 41.84701]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59708, 41.81926], [-87.59697, 41.81909]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60913, 41.8398], [-87.60903, 41.83957]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59546, 41.81711], [-87.59534, 41.81696]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59636, 41.81832], [-87.59625, 41.81816]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62059, 41.87028], [-87.62058, 41.87007]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60258, 41.82766], [-87.6024, 41.82749]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59762, 41.81994], [-87.59749, 41.81977]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61243, 41.84804], [-87.61234, 41.84784]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60855, 41.83842], [-87.60846, 41.83819]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60809, 41.83632], [-87.60808, 41.83608]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60809, 41.83655], [-87.60809, 41.83632]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61631, 41.85721], [-87.61623, 41.85704]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59589, 41.8177], [-87.59577, 41.81754]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61083, 41.84399], [-87.61076, 41.84377]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59403, 41.81526], [-87.59387, 41.8151]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61122, 41.84506], [-87.61116, 41.84484]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60893, 41.83935], [-87.60884, 41.83912]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61388, 41.85152], [-87.6138, 41.85134]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59557, 41.81726], [-87.59546, 41.81711]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61408, 41.85202], [-87.614, 41.85185]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60797, 41.83492], [-87.60797, 41.83469]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59485, 41.81633], [-87.59474, 41.81618]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59927, 41.82273], [-87.59918, 41.82252]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5945, 41.81587], [-87.59438, 41.81571]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61091, 41.8442], [-87.61083, 41.84399]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61394, 41.85169], [-87.61388, 41.85152]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60596, 41.83095], [-87.6058, 41.83076]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61442, 41.85274], [-87.61434, 41.85254]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61251, 41.84824], [-87.61243, 41.84804]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6022, 41.82732], [-87.602, 41.82714]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61947, 41.8646], [-87.61941, 41.86443]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61226, 41.84763], [-87.61215, 41.84743]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59684, 41.81894], [-87.59673, 41.81878]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61888, 41.86288], [-87.61881, 41.8627]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60781, 41.83401], [-87.60773, 41.83379]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61215, 41.84743], [-87.61207, 41.84723]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62046, 41.86749], [-87.62038, 41.86728]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6106, 41.84334], [-87.61052, 41.84313]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6042, 41.82897], [-87.60401, 41.82881]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61467, 41.85329], [-87.61459, 41.85311]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61299, 41.84938], [-87.61291, 41.84918]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62051, 41.86811], [-87.62051, 41.86797]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61739, 41.85947], [-87.61731, 41.8593]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60712, 41.83252], [-87.60698, 41.83231]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59876, 41.82167], [-87.59867, 41.82147]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61623, 41.85704], [-87.61617, 41.85688]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60757, 41.83335], [-87.60746, 41.83313]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59498, 41.8165], [-87.59485, 41.81633]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61426, 41.85237], [-87.61416, 41.85219]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61571, 41.85581], [-87.61564, 41.85563]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61275, 41.84881], [-87.61267, 41.84862]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61043, 41.84291], [-87.61032, 41.8427]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61997, 41.8661], [-87.61993, 41.86596]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61691, 41.85849], [-87.61683, 41.85833]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60361, 41.82849], [-87.6034, 41.82832]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61493, 41.85386], [-87.61485, 41.85368]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61782, 41.86036], [-87.61774, 41.86018]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60081, 41.82587], [-87.6007, 41.82566]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61954, 41.86475], [-87.61947, 41.8646]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61032, 41.8427], [-87.61024, 41.84248]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61154, 41.84592], [-87.61146, 41.8457]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59854, 41.82127], [-87.59841, 41.82107]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60029, 41.82484], [-87.60019, 41.82463]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61337, 41.85031], [-87.61331, 41.85013]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62058, 41.87007], [-87.62056, 41.86985]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60685, 41.83212], [-87.60669, 41.83193]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60873, 41.83889], [-87.60865, 41.83866]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60522, 41.83], [-87.60507, 41.82982]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60978, 41.84138], [-87.6097, 41.84116]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61556, 41.85545], [-87.61548, 41.85527]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61548, 41.85527], [-87.61544, 41.8551]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61315, 41.84975], [-87.61307, 41.84956]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61831, 41.86145], [-87.61825, 41.86127]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59673, 41.81878], [-87.59658, 41.81861]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60725, 41.83272], [-87.60712, 41.83252]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61868, 41.86234], [-87.61861, 41.86217]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6197, 41.86521], [-87.61965, 41.86506]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59414, 41.81541], [-87.59403, 41.81526]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60797, 41.83469], [-87.60792, 41.83446]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61358, 41.85084], [-87.61353, 41.85066]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61501, 41.85405], [-87.61493, 41.85386]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61267, 41.84862], [-87.61259, 41.84844]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60998, 41.84182], [-87.60987, 41.8416]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61683, 41.85833], [-87.61675, 41.85817]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61874, 41.86252], [-87.61868, 41.86234]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61138, 41.84549], [-87.6113, 41.84528]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60401, 41.82881], [-87.60383, 41.82865]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60765, 41.83356], [-87.60757, 41.83335]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60096, 41.82606], [-87.60081, 41.82587]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60537, 41.83018], [-87.60522, 41.83]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5979, 41.82031], [-87.59774, 41.82013]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61534, 41.85493], [-87.61528, 41.85475]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59803, 41.8205], [-87.5979, 41.82031]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60507, 41.82982], [-87.60491, 41.82964]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62056, 41.86964], [-87.62056, 41.8695]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6202, 41.8668], [-87.62016, 41.86666]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62016, 41.86666], [-87.62011, 41.86652]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59841, 41.82107], [-87.59829, 41.82087]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59511, 41.81665], [-87.59498, 41.8165]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6011, 41.82625], [-87.60096, 41.82606]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61014, 41.84226], [-87.61006, 41.84203]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61861, 41.86217], [-87.61855, 41.86199]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61564, 41.85563], [-87.61556, 41.85545]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60383, 41.82865], [-87.60361, 41.82849]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.614, 41.85185], [-87.61394, 41.85169]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61585, 41.85618], [-87.61577, 41.85599]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60037, 41.82505], [-87.60029, 41.82484]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61475, 41.85349], [-87.61467, 41.85329]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59722, 41.81943], [-87.59708, 41.81926]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6097, 41.84116], [-87.60962, 41.84094]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59959, 41.82335], [-87.59949, 41.82314]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60804, 41.83562], [-87.60801, 41.83539]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59908, 41.8223], [-87.59898, 41.8221]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60903, 41.83957], [-87.60893, 41.83935]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6028, 41.82783], [-87.60258, 41.82766]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60129, 41.82643], [-87.6011, 41.82625]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59577, 41.81754], [-87.59566, 41.8174]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59426, 41.81557], [-87.59414, 41.81541]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61757, 41.85982], [-87.61749, 41.85964]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62056, 41.86985], [-87.62056, 41.86964]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61973, 41.86536], [-87.6197, 41.86521]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61515, 41.8544], [-87.61509, 41.85422]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.596, 41.81785], [-87.59589, 41.8177]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60552, 41.83038], [-87.60537, 41.83018]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61919, 41.86373], [-87.61914, 41.86356]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59566, 41.8174], [-87.59557, 41.81726]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62047, 41.86772], [-87.62046, 41.86749]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60962, 41.84094], [-87.60952, 41.84071]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62052, 41.86826], [-87.62051, 41.86811]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59889, 41.82188], [-87.59876, 41.82167]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61764, 41.86], [-87.61757, 41.85982]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60952, 41.84071], [-87.60941, 41.84049]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60924, 41.84004], [-87.60913, 41.8398]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61188, 41.84679], [-87.6118, 41.84658]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61617, 41.85688], [-87.61607, 41.8567]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60669, 41.83193], [-87.60655, 41.83173]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61965, 41.86506], [-87.61958, 41.86491]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61639, 41.85738], [-87.61631, 41.85721]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60785, 41.83423], [-87.60781, 41.83401]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6018, 41.82696], [-87.60162, 41.8268]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59647, 41.81846], [-87.59636, 41.81832]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60987, 41.8416], [-87.60978, 41.84138]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60884, 41.83912], [-87.60873, 41.83889]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61197, 41.84701], [-87.61188, 41.84679]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61416, 41.85219], [-87.61408, 41.85202]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59625, 41.81816], [-87.59614, 41.818]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61731, 41.8593], [-87.61723, 41.85913]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61373, 41.85118], [-87.61366, 41.85101]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61509, 41.85422], [-87.61501, 41.85405]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60804, 41.83584], [-87.60804, 41.83562]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61645, 41.85754], [-87.61639, 41.85738]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60566, 41.83056], [-87.60552, 41.83038]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59774, 41.82013], [-87.59762, 41.81994]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60626, 41.83133], [-87.60611, 41.83114]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61925, 41.86392], [-87.61919, 41.86373]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6044, 41.82912], [-87.6042, 41.82897]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60057, 41.82545], [-87.60046, 41.82525]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62011, 41.86652], [-87.62006, 41.8664]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6058, 41.83076], [-87.60566, 41.83056]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6145, 41.85292], [-87.61442, 41.85274]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6034, 41.82832], [-87.6032, 41.82815]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59697, 41.81909], [-87.59684, 41.81894]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61345, 41.85049], [-87.61337, 41.85031]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61068, 41.84356], [-87.6106, 41.84334]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59749, 41.81977], [-87.59733, 41.81959]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60932, 41.84027], [-87.60924, 41.84004]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59987, 41.824], [-87.59978, 41.82378]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62001, 41.86625], [-87.61997, 41.8661]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61116, 41.84484], [-87.61108, 41.84463]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61699, 41.85865], [-87.61691, 41.85849]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61723, 41.85913], [-87.61715, 41.85897]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59816, 41.82068], [-87.59803, 41.8205]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61914, 41.86356], [-87.61906, 41.86339]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59658, 41.81861], [-87.59647, 41.81846]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62057, 41.8689], [-87.62054, 41.86873]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59949, 41.82314], [-87.5994, 41.82293]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61521, 41.85457], [-87.61515, 41.8544]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61846, 41.86181], [-87.61838, 41.86163]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61815, 41.8611], [-87.61806, 41.86091]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61108, 41.84463], [-87.61098, 41.84442]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61323, 41.84995], [-87.61315, 41.84975]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61098, 41.84442], [-87.61091, 41.8442]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61881, 41.8627], [-87.61874, 41.86252]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60808, 41.83608], [-87.60804, 41.83584]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61485, 41.85368], [-87.61475, 41.85349]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59867, 41.82147], [-87.59854, 41.82127]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60836, 41.83796], [-87.60828, 41.83772]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62051, 41.86797], [-87.62047, 41.86772]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59968, 41.82357], [-87.59959, 41.82335]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59829, 41.82087], [-87.59816, 41.82068]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59474, 41.81618], [-87.59463, 41.81602]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6179, 41.86055], [-87.61782, 41.86036]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61577, 41.85599], [-87.61571, 41.85581]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62057, 41.86904], [-87.62057, 41.8689]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61989, 41.86582], [-87.61984, 41.86566]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60475, 41.82946], [-87.60458, 41.8293]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61259, 41.84844], [-87.61251, 41.84824]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60162, 41.8268], [-87.60145, 41.82662]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61993, 41.86596], [-87.61989, 41.86582]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59898, 41.8221], [-87.59889, 41.82188]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61977, 41.86551], [-87.61973, 41.86536]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60814, 41.83703], [-87.60812, 41.83679]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60611, 41.83114], [-87.60596, 41.83095]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61675, 41.85817], [-87.61671, 41.85801]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61893, 41.86304], [-87.61888, 41.86288]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61331, 41.85013], [-87.61323, 41.84995]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61901, 41.86322], [-87.61893, 41.86304]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59523, 41.81681], [-87.59511, 41.81665]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61006, 41.84203], [-87.60998, 41.84182]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59999, 41.8242], [-87.59987, 41.824]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61671, 41.85801], [-87.61663, 41.85785]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62054, 41.86873], [-87.62052, 41.86857]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61291, 41.84918], [-87.61284, 41.849]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60801, 41.83539], [-87.60801, 41.83516]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61709, 41.8588], [-87.61699, 41.85865]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60846, 41.83819], [-87.60836, 41.83796]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61941, 41.86443], [-87.61935, 41.86426]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60941, 41.84049], [-87.60932, 41.84027]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62056, 41.8695], [-87.62057, 41.86924]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60458, 41.8293], [-87.6044, 41.82912]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61806, 41.86091], [-87.61799, 41.86073]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60655, 41.83173], [-87.60641, 41.83152]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61284, 41.849], [-87.61275, 41.84881]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61172, 41.84636], [-87.61162, 41.84614]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6007, 41.82566], [-87.60057, 41.82545]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61607, 41.8567], [-87.61599, 41.85653]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5994, 41.82293], [-87.59927, 41.82273]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6138, 41.85134], [-87.61373, 41.85118]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60824, 41.83749], [-87.60819, 41.83727]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60738, 41.83292], [-87.60725, 41.83272]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61855, 41.86199], [-87.61846, 41.86181]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61593, 41.85634], [-87.61585, 41.85618]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60773, 41.83379], [-87.60765, 41.83356]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61599, 41.85653], [-87.61593, 41.85634]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60828, 41.83772], [-87.60824, 41.83749]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61715, 41.85897], [-87.61709, 41.8588]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60145, 41.82662], [-87.60129, 41.82643]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60812, 41.83679], [-87.60809, 41.83655]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61663, 41.85785], [-87.61655, 41.85769]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6118, 41.84658], [-87.61172, 41.84636]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61076, 41.84377], [-87.61068, 41.84356]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60019, 41.82463], [-87.6001, 41.82442]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60865, 41.83866], [-87.60855, 41.83842]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61774, 41.86018], [-87.61764, 41.86]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.602, 41.82714], [-87.6018, 41.82696]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61544, 41.8551], [-87.61534, 41.85493]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60746, 41.83313], [-87.60738, 41.83292]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59733, 41.81959], [-87.59722, 41.81943]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60491, 41.82964], [-87.60475, 41.82946]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61655, 41.85769], [-87.61645, 41.85754]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6193, 41.86409], [-87.61925, 41.86392]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60792, 41.83446], [-87.60785, 41.83423]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61984, 41.86566], [-87.61977, 41.86551]]}, "type": "Feature", "properties": {"num_passengers": 6492}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63061, 41.88199], [-87.63079, 41.88199]]}, "type": "Feature", "properties": {"num_passengers": 6570}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63398, 41.88195], [-87.6342, 41.88196]]}, "type": "Feature", "properties": {"num_passengers": 6570}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63079, 41.88199], [-87.63398, 41.88195]]}, "type": "Feature", "properties": {"num_passengers": 6570}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63936, 41.93306], [-87.63936, 41.93293]]}, "type": "Feature", "properties": {"num_passengers": 6578}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64135, 41.94484], [-87.64126, 41.9447]]}, "type": "Feature", "properties": {"num_passengers": 6589}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64492, 41.95111], [-87.64486, 41.95094]]}, "type": "Feature", "properties": {"num_passengers": 6598}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6243, 41.87453], [-87.6243, 41.87439]]}, "type": "Feature", "properties": {"num_passengers": 6625}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63987, 41.94227], [-87.63979, 41.94208]]}, "type": "Feature", "properties": {"num_passengers": 6663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63912, 41.94082], [-87.63904, 41.94067]]}, "type": "Feature", "properties": {"num_passengers": 6663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64065, 41.94355], [-87.64037, 41.94309]]}, "type": "Feature", "properties": {"num_passengers": 6663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63961, 41.94171], [-87.63956, 41.94158]]}, "type": "Feature", "properties": {"num_passengers": 6663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63996, 41.94241], [-87.63987, 41.94227]]}, "type": "Feature", "properties": {"num_passengers": 6663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64002, 41.94256], [-87.63996, 41.94241]]}, "type": "Feature", "properties": {"num_passengers": 6663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63931, 41.9411], [-87.63921, 41.94097]]}, "type": "Feature", "properties": {"num_passengers": 6663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63956, 41.94158], [-87.63956, 41.94142]]}, "type": "Feature", "properties": {"num_passengers": 6663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63952, 41.94126], [-87.63931, 41.9411]]}, "type": "Feature", "properties": {"num_passengers": 6663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63979, 41.94208], [-87.63971, 41.94191]]}, "type": "Feature", "properties": {"num_passengers": 6663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64037, 41.94309], [-87.64025, 41.94293]]}, "type": "Feature", "properties": {"num_passengers": 6663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63896, 41.94054], [-87.63894, 41.94052]]}, "type": "Feature", "properties": {"num_passengers": 6663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63904, 41.94067], [-87.63896, 41.94054]]}, "type": "Feature", "properties": {"num_passengers": 6663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64012, 41.94267], [-87.64002, 41.94256]]}, "type": "Feature", "properties": {"num_passengers": 6663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63921, 41.94097], [-87.63912, 41.94082]]}, "type": "Feature", "properties": {"num_passengers": 6663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64025, 41.94293], [-87.6402, 41.94281]]}, "type": "Feature", "properties": {"num_passengers": 6663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63956, 41.94142], [-87.63952, 41.94126]]}, "type": "Feature", "properties": {"num_passengers": 6663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63971, 41.94191], [-87.63961, 41.94171]]}, "type": "Feature", "properties": {"num_passengers": 6663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6402, 41.94281], [-87.64012, 41.94267]]}, "type": "Feature", "properties": {"num_passengers": 6663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62416, 41.86466], [-87.62415, 41.86452]]}, "type": "Feature", "properties": {"num_passengers": 6729}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62434, 41.87461], [-87.6243, 41.87453]]}, "type": "Feature", "properties": {"num_passengers": 6741}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63878, 41.93229], [-87.63899, 41.93192]]}, "type": "Feature", "properties": {"num_passengers": 6799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63936, 41.93293], [-87.6392, 41.93271]]}, "type": "Feature", "properties": {"num_passengers": 6799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63899, 41.93192], [-87.63904, 41.93163]]}, "type": "Feature", "properties": {"num_passengers": 6799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63904, 41.93163], [-87.63902, 41.93137]]}, "type": "Feature", "properties": {"num_passengers": 6799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6392, 41.93271], [-87.63878, 41.93229]]}, "type": "Feature", "properties": {"num_passengers": 6799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62604, 41.8821], [-87.62831, 41.88202]]}, "type": "Feature", "properties": {"num_passengers": 6818}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62849, 41.88202], [-87.63061, 41.88199]]}, "type": "Feature", "properties": {"num_passengers": 6898}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62831, 41.88202], [-87.62849, 41.88202]]}, "type": "Feature", "properties": {"num_passengers": 6898}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62416, 41.86485], [-87.62416, 41.86466]]}, "type": "Feature", "properties": {"num_passengers": 6938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64486, 41.95094], [-87.64477, 41.95074]]}, "type": "Feature", "properties": {"num_passengers": 6953}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64469, 41.95058], [-87.64461, 41.95046]]}, "type": "Feature", "properties": {"num_passengers": 6978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64461, 41.95046], [-87.64451, 41.95032]]}, "type": "Feature", "properties": {"num_passengers": 6978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64477, 41.95074], [-87.64469, 41.95058]]}, "type": "Feature", "properties": {"num_passengers": 6978}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62437, 41.87649], [-87.62437, 41.8763]]}, "type": "Feature", "properties": {"num_passengers": 6981}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62437, 41.87735], [-87.62437, 41.87717]]}, "type": "Feature", "properties": {"num_passengers": 7086}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62438, 41.87756], [-87.62437, 41.87735]]}, "type": "Feature", "properties": {"num_passengers": 7086}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62438, 41.87778], [-87.62438, 41.87756]]}, "type": "Feature", "properties": {"num_passengers": 7086}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6244, 41.87822], [-87.62439, 41.87801]]}, "type": "Feature", "properties": {"num_passengers": 7086}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62437, 41.87659], [-87.62437, 41.87649]]}, "type": "Feature", "properties": {"num_passengers": 7086}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62441, 41.87838], [-87.6244, 41.87822]]}, "type": "Feature", "properties": {"num_passengers": 7086}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62439, 41.87801], [-87.62438, 41.87778]]}, "type": "Feature", "properties": {"num_passengers": 7086}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62437, 41.87717], [-87.62437, 41.87698]]}, "type": "Feature", "properties": {"num_passengers": 7086}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62437, 41.87677], [-87.62437, 41.87659]]}, "type": "Feature", "properties": {"num_passengers": 7086}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62437, 41.87698], [-87.62437, 41.87677]]}, "type": "Feature", "properties": {"num_passengers": 7086}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62416, 41.86503], [-87.62416, 41.86485]]}, "type": "Feature", "properties": {"num_passengers": 7168}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62416, 41.89778], [-87.62408, 41.89749]]}, "type": "Feature", "properties": {"num_passengers": 7236}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62421, 41.8993], [-87.62416, 41.89778]]}, "type": "Feature", "properties": {"num_passengers": 7236}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62421, 41.86747], [-87.6242, 41.86733]]}, "type": "Feature", "properties": {"num_passengers": 7331}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.86593], [-87.62417, 41.86568]]}, "type": "Feature", "properties": {"num_passengers": 7331}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6242, 41.87013], [-87.6242, 41.86995]]}, "type": "Feature", "properties": {"num_passengers": 7331}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62417, 41.86779], [-87.62418, 41.86761]]}, "type": "Feature", "properties": {"num_passengers": 7331}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62416, 41.86556], [-87.62416, 41.86536]]}, "type": "Feature", "properties": {"num_passengers": 7331}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.86633], [-87.62418, 41.86617]]}, "type": "Feature", "properties": {"num_passengers": 7331}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62419, 41.86716], [-87.62418, 41.86704]]}, "type": "Feature", "properties": {"num_passengers": 7331}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62421, 41.86905], [-87.62421, 41.86894]]}, "type": "Feature", "properties": {"num_passengers": 7331}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62421, 41.86894], [-87.62421, 41.86883]]}, "type": "Feature", "properties": {"num_passengers": 7331}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.86704], [-87.62418, 41.86688]]}, "type": "Feature", "properties": {"num_passengers": 7331}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6242, 41.8692], [-87.62421, 41.86905]]}, "type": "Feature", "properties": {"num_passengers": 7331}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62417, 41.86842], [-87.62417, 41.86827]]}, "type": "Feature", "properties": {"num_passengers": 7331}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62421, 41.86876], [-87.62418, 41.86858]]}, "type": "Feature", "properties": {"num_passengers": 7331}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6242, 41.87034], [-87.6242, 41.87013]]}, "type": "Feature", "properties": {"num_passengers": 7331}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.86934], [-87.6242, 41.8692]]}, "type": "Feature", "properties": {"num_passengers": 7331}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.86858], [-87.62417, 41.86842]]}, "type": "Feature", "properties": {"num_passengers": 7331}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62416, 41.8652], [-87.62416, 41.86503]]}, "type": "Feature", "properties": {"num_passengers": 7331}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62417, 41.86796], [-87.62417, 41.86779]]}, "type": "Feature", "properties": {"num_passengers": 7331}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.86761], [-87.62421, 41.86747]]}, "type": "Feature", "properties": {"num_passengers": 7331}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6242, 41.86975], [-87.62419, 41.86953]]}, "type": "Feature", "properties": {"num_passengers": 7331}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.86617], [-87.62418, 41.86593]]}, "type": "Feature", "properties": {"num_passengers": 7331}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6242, 41.86733], [-87.62419, 41.86716]]}, "type": "Feature", "properties": {"num_passengers": 7331}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.86811], [-87.62417, 41.86796]]}, "type": "Feature", "properties": {"num_passengers": 7331}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62416, 41.86536], [-87.62416, 41.8652]]}, "type": "Feature", "properties": {"num_passengers": 7331}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62419, 41.8667], [-87.62418, 41.86651]]}, "type": "Feature", "properties": {"num_passengers": 7331}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6242, 41.86995], [-87.6242, 41.86975]]}, "type": "Feature", "properties": {"num_passengers": 7331}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.86651], [-87.62418, 41.86633]]}, "type": "Feature", "properties": {"num_passengers": 7331}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62417, 41.86827], [-87.62418, 41.86811]]}, "type": "Feature", "properties": {"num_passengers": 7331}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.86688], [-87.62419, 41.8667]]}, "type": "Feature", "properties": {"num_passengers": 7331}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62421, 41.86893], [-87.62421, 41.86876]]}, "type": "Feature", "properties": {"num_passengers": 7331}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62417, 41.86568], [-87.62416, 41.86556]]}, "type": "Feature", "properties": {"num_passengers": 7331}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62421, 41.86883], [-87.62421, 41.86907]]}, "type": "Feature", "properties": {"num_passengers": 7331}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62419, 41.86953], [-87.62423, 41.86934]]}, "type": "Feature", "properties": {"num_passengers": 7331}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62421, 41.86907], [-87.62421, 41.86893]]}, "type": "Feature", "properties": {"num_passengers": 7331}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62426, 41.87248], [-87.62425, 41.87229]]}, "type": "Feature", "properties": {"num_passengers": 7394}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62421, 41.87179], [-87.62423, 41.87164]]}, "type": "Feature", "properties": {"num_passengers": 7394}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62426, 41.87262], [-87.62426, 41.87248]]}, "type": "Feature", "properties": {"num_passengers": 7394}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62422, 41.87129], [-87.62422, 41.87113]]}, "type": "Feature", "properties": {"num_passengers": 7394}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62429, 41.87419], [-87.62429, 41.874]]}, "type": "Feature", "properties": {"num_passengers": 7394}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62429, 41.874], [-87.62428, 41.8738]]}, "type": "Feature", "properties": {"num_passengers": 7394}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62422, 41.87113], [-87.62422, 41.87094]]}, "type": "Feature", "properties": {"num_passengers": 7394}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62425, 41.87229], [-87.62426, 41.87217]]}, "type": "Feature", "properties": {"num_passengers": 7394}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.87164], [-87.62422, 41.87145]]}, "type": "Feature", "properties": {"num_passengers": 7394}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62426, 41.87305], [-87.62426, 41.87291]]}, "type": "Feature", "properties": {"num_passengers": 7394}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62427, 41.87346], [-87.62427, 41.87334]]}, "type": "Feature", "properties": {"num_passengers": 7394}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62428, 41.87361], [-87.62427, 41.87346]]}, "type": "Feature", "properties": {"num_passengers": 7394}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62422, 41.87145], [-87.62422, 41.87129]]}, "type": "Feature", "properties": {"num_passengers": 7394}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62422, 41.87079], [-87.6242, 41.87059]]}, "type": "Feature", "properties": {"num_passengers": 7394}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.872], [-87.62421, 41.87179]]}, "type": "Feature", "properties": {"num_passengers": 7394}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62428, 41.8738], [-87.62428, 41.87361]]}, "type": "Feature", "properties": {"num_passengers": 7394}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62425, 41.87276], [-87.62426, 41.87262]]}, "type": "Feature", "properties": {"num_passengers": 7394}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62428, 41.87324], [-87.62426, 41.87305]]}, "type": "Feature", "properties": {"num_passengers": 7394}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62427, 41.87334], [-87.62428, 41.87324]]}, "type": "Feature", "properties": {"num_passengers": 7394}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6242, 41.87059], [-87.6242, 41.87043]]}, "type": "Feature", "properties": {"num_passengers": 7394}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62426, 41.87291], [-87.62425, 41.87276]]}, "type": "Feature", "properties": {"num_passengers": 7394}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6242, 41.87043], [-87.6242, 41.87034]]}, "type": "Feature", "properties": {"num_passengers": 7394}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62422, 41.87094], [-87.62422, 41.87079]]}, "type": "Feature", "properties": {"num_passengers": 7394}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62426, 41.87217], [-87.62423, 41.872]]}, "type": "Feature", "properties": {"num_passengers": 7394}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6243, 41.87439], [-87.62429, 41.87419]]}, "type": "Feature", "properties": {"num_passengers": 7455}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62802, 41.88581], [-87.62797, 41.88464]]}, "type": "Feature", "properties": {"num_passengers": 7507}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62059, 41.87061], [-87.62059, 41.87045]]}, "type": "Feature", "properties": {"num_passengers": 7649}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62062, 41.87187], [-87.62062, 41.87167]]}, "type": "Feature", "properties": {"num_passengers": 7649}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62065, 41.8723], [-87.62064, 41.87209]]}, "type": "Feature", "properties": {"num_passengers": 7649}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6032, 41.82815], [-87.60299, 41.82799]]}, "type": "Feature", "properties": {"num_passengers": 7649}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62061, 41.87145], [-87.6206, 41.87127]]}, "type": "Feature", "properties": {"num_passengers": 7649}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62066, 41.87306], [-87.62064, 41.87288]]}, "type": "Feature", "properties": {"num_passengers": 7649}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6206, 41.87111], [-87.6206, 41.87097]]}, "type": "Feature", "properties": {"num_passengers": 7649}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62064, 41.87288], [-87.62063, 41.87269]]}, "type": "Feature", "properties": {"num_passengers": 7649}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62073, 41.87319], [-87.62066, 41.87306]]}, "type": "Feature", "properties": {"num_passengers": 7649}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6206, 41.87097], [-87.6206, 41.87079]]}, "type": "Feature", "properties": {"num_passengers": 7649}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60299, 41.82799], [-87.6028, 41.82783]]}, "type": "Feature", "properties": {"num_passengers": 7649}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62064, 41.87209], [-87.62062, 41.87187]]}, "type": "Feature", "properties": {"num_passengers": 7649}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62063, 41.87269], [-87.62064, 41.87251]]}, "type": "Feature", "properties": {"num_passengers": 7649}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62064, 41.87251], [-87.62065, 41.8723]]}, "type": "Feature", "properties": {"num_passengers": 7649}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6206, 41.87127], [-87.6206, 41.87111]]}, "type": "Feature", "properties": {"num_passengers": 7649}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6206, 41.87079], [-87.62059, 41.87061]]}, "type": "Feature", "properties": {"num_passengers": 7649}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62062, 41.87167], [-87.62061, 41.87145]]}, "type": "Feature", "properties": {"num_passengers": 7649}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64123, 41.94463], [-87.64117, 41.94452]]}, "type": "Feature", "properties": {"num_passengers": 7843}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64126, 41.9447], [-87.64123, 41.94463]]}, "type": "Feature", "properties": {"num_passengers": 7859}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64117, 41.94452], [-87.64111, 41.94441]]}, "type": "Feature", "properties": {"num_passengers": 7896}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64111, 41.94441], [-87.64105, 41.94428]]}, "type": "Feature", "properties": {"num_passengers": 7959}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64105, 41.94428], [-87.64096, 41.94413]]}, "type": "Feature", "properties": {"num_passengers": 8036}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64096, 41.94413], [-87.6409, 41.944]]}, "type": "Feature", "properties": {"num_passengers": 8141}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6409, 41.944], [-87.6408, 41.94383]]}, "type": "Feature", "properties": {"num_passengers": 8141}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6408, 41.94383], [-87.64073, 41.94369]]}, "type": "Feature", "properties": {"num_passengers": 8141}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64073, 41.94369], [-87.64065, 41.94355]]}, "type": "Feature", "properties": {"num_passengers": 8141}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62797, 41.88464], [-87.62797, 41.88451]]}, "type": "Feature", "properties": {"num_passengers": 8164}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62436, 41.87597], [-87.62435, 41.87581]]}, "type": "Feature", "properties": {"num_passengers": 8310}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62433, 41.87545], [-87.62434, 41.87528]]}, "type": "Feature", "properties": {"num_passengers": 8310}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62434, 41.87562], [-87.62433, 41.87545]]}, "type": "Feature", "properties": {"num_passengers": 8310}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62444, 41.88679], [-87.62448, 41.88821]]}, "type": "Feature", "properties": {"num_passengers": 8310}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62435, 41.87581], [-87.62434, 41.87562]]}, "type": "Feature", "properties": {"num_passengers": 8310}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62434, 41.87528], [-87.62433, 41.8751]]}, "type": "Feature", "properties": {"num_passengers": 8310}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62437, 41.8763], [-87.62436, 41.87615]]}, "type": "Feature", "properties": {"num_passengers": 8310}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62436, 41.87615], [-87.62436, 41.87597]]}, "type": "Feature", "properties": {"num_passengers": 8310}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62433, 41.8751], [-87.62432, 41.87494]]}, "type": "Feature", "properties": {"num_passengers": 8428}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.88985], [-87.62401, 41.89012]]}, "type": "Feature", "properties": {"num_passengers": 8571}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62448, 41.88821], [-87.62402, 41.88985]]}, "type": "Feature", "properties": {"num_passengers": 8571}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62401, 41.89012], [-87.62403, 41.8903]]}, "type": "Feature", "properties": {"num_passengers": 8571}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62462, 41.8875], [-87.62461, 41.88733]]}, "type": "Feature", "properties": {"num_passengers": 8702}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62448, 41.8887], [-87.62451, 41.88849]]}, "type": "Feature", "properties": {"num_passengers": 8702}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6245, 41.88521], [-87.62446, 41.88507]]}, "type": "Feature", "properties": {"num_passengers": 8702}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62456, 41.88631], [-87.62453, 41.88608]]}, "type": "Feature", "properties": {"num_passengers": 8702}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62462, 41.88768], [-87.62462, 41.8875]]}, "type": "Feature", "properties": {"num_passengers": 8702}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62453, 41.88608], [-87.62453, 41.88589]]}, "type": "Feature", "properties": {"num_passengers": 8702}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62457, 41.8869], [-87.62456, 41.88675]]}, "type": "Feature", "properties": {"num_passengers": 8702}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62435, 41.88912], [-87.62442, 41.8889]]}, "type": "Feature", "properties": {"num_passengers": 8702}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62426, 41.88944], [-87.62429, 41.88928]]}, "type": "Feature", "properties": {"num_passengers": 8702}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62456, 41.88654], [-87.62456, 41.88631]]}, "type": "Feature", "properties": {"num_passengers": 8702}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62457, 41.88704], [-87.62457, 41.8869]]}, "type": "Feature", "properties": {"num_passengers": 8702}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62446, 41.88505], [-87.62457, 41.88506]]}, "type": "Feature", "properties": {"num_passengers": 8702}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62453, 41.88571], [-87.62451, 41.88555]]}, "type": "Feature", "properties": {"num_passengers": 8702}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.88993], [-87.62418, 41.88976]]}, "type": "Feature", "properties": {"num_passengers": 8702}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62451, 41.88537], [-87.6245, 41.88521]]}, "type": "Feature", "properties": {"num_passengers": 8702}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62461, 41.88807], [-87.62462, 41.88785]]}, "type": "Feature", "properties": {"num_passengers": 8702}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.88976], [-87.62423, 41.88959]]}, "type": "Feature", "properties": {"num_passengers": 8702}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62456, 41.88828], [-87.62461, 41.88807]]}, "type": "Feature", "properties": {"num_passengers": 8702}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62456, 41.88675], [-87.62456, 41.88654]]}, "type": "Feature", "properties": {"num_passengers": 8702}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62429, 41.88928], [-87.62435, 41.88912]]}, "type": "Feature", "properties": {"num_passengers": 8702}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.88959], [-87.62426, 41.88944]]}, "type": "Feature", "properties": {"num_passengers": 8702}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62442, 41.8889], [-87.62448, 41.8887]]}, "type": "Feature", "properties": {"num_passengers": 8702}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62462, 41.88785], [-87.62462, 41.88768]]}, "type": "Feature", "properties": {"num_passengers": 8702}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62461, 41.88716], [-87.62457, 41.88704]]}, "type": "Feature", "properties": {"num_passengers": 8702}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62451, 41.88849], [-87.62456, 41.88828]]}, "type": "Feature", "properties": {"num_passengers": 8702}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62446, 41.88507], [-87.62446, 41.88505]]}, "type": "Feature", "properties": {"num_passengers": 8702}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62453, 41.88589], [-87.62453, 41.88571]]}, "type": "Feature", "properties": {"num_passengers": 8702}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62461, 41.88733], [-87.62461, 41.88716]]}, "type": "Feature", "properties": {"num_passengers": 8702}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62451, 41.88555], [-87.62451, 41.88537]]}, "type": "Feature", "properties": {"num_passengers": 8702}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62432, 41.87494], [-87.62433, 41.87479]]}, "type": "Feature", "properties": {"num_passengers": 8732}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62433, 41.87479], [-87.62434, 41.87461]]}, "type": "Feature", "properties": {"num_passengers": 8734}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62797, 41.88451], [-87.62793, 41.88348]]}, "type": "Feature", "properties": {"num_passengers": 9037}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62774, 41.87825], [-87.62771, 41.87707]]}, "type": "Feature", "properties": {"num_passengers": 9555}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62771, 41.87707], [-87.62771, 41.87694]]}, "type": "Feature", "properties": {"num_passengers": 9555}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62775, 41.88092], [-87.6278, 41.88081]]}, "type": "Feature", "properties": {"num_passengers": 9555}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62771, 41.87694], [-87.62767, 41.87508]]}, "type": "Feature", "properties": {"num_passengers": 9555}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6278, 41.88081], [-87.62773, 41.8784]]}, "type": "Feature", "properties": {"num_passengers": 9555}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62773, 41.87839], [-87.62774, 41.87825]]}, "type": "Feature", "properties": {"num_passengers": 9555}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62781, 41.88184], [-87.62775, 41.88092]]}, "type": "Feature", "properties": {"num_passengers": 9555}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62782, 41.88195], [-87.62781, 41.88184]]}, "type": "Feature", "properties": {"num_passengers": 9555}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62773, 41.8784], [-87.62773, 41.87839]]}, "type": "Feature", "properties": {"num_passengers": 9555}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62786, 41.88204], [-87.62782, 41.88195]]}, "type": "Feature", "properties": {"num_passengers": 9564}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62788, 41.88217], [-87.62786, 41.88204]]}, "type": "Feature", "properties": {"num_passengers": 9624}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62791, 41.88327], [-87.62788, 41.88217]]}, "type": "Feature", "properties": {"num_passengers": 9658}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62793, 41.88348], [-87.62791, 41.88327]]}, "type": "Feature", "properties": {"num_passengers": 9692}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62456, 41.8849], [-87.62456, 41.8847]]}, "type": "Feature", "properties": {"num_passengers": 9738}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62456, 41.8847], [-87.62456, 41.88454]]}, "type": "Feature", "properties": {"num_passengers": 9942}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62457, 41.88506], [-87.62456, 41.8849]]}, "type": "Feature", "properties": {"num_passengers": 9994}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62453, 41.88384], [-87.62455, 41.88364]]}, "type": "Feature", "properties": {"num_passengers": 10098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62456, 41.88454], [-87.62453, 41.88429]]}, "type": "Feature", "properties": {"num_passengers": 10098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62453, 41.88429], [-87.62453, 41.88409]]}, "type": "Feature", "properties": {"num_passengers": 10098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62455, 41.88364], [-87.62453, 41.88344]]}, "type": "Feature", "properties": {"num_passengers": 10098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62453, 41.88409], [-87.62453, 41.88384]]}, "type": "Feature", "properties": {"num_passengers": 10098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.89122], [-87.62423, 41.89119]]}, "type": "Feature", "properties": {"num_passengers": 10810}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.89069], [-87.62419, 41.89056]]}, "type": "Feature", "properties": {"num_passengers": 10810}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.89019], [-87.62418, 41.89002]]}, "type": "Feature", "properties": {"num_passengers": 10810}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.89253], [-87.62423, 41.89237]]}, "type": "Feature", "properties": {"num_passengers": 10810}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.89237], [-87.62423, 41.89219]]}, "type": "Feature", "properties": {"num_passengers": 10810}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.89119], [-87.62423, 41.89104]]}, "type": "Feature", "properties": {"num_passengers": 10810}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.89171], [-87.62423, 41.89155]]}, "type": "Feature", "properties": {"num_passengers": 10810}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62419, 41.89056], [-87.62423, 41.89037]]}, "type": "Feature", "properties": {"num_passengers": 10810}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.89037], [-87.62418, 41.89019]]}, "type": "Feature", "properties": {"num_passengers": 10810}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.89155], [-87.62423, 41.89138]]}, "type": "Feature", "properties": {"num_passengers": 10810}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.89104], [-87.62418, 41.89085]]}, "type": "Feature", "properties": {"num_passengers": 10810}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.89138], [-87.62423, 41.89122]]}, "type": "Feature", "properties": {"num_passengers": 10810}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.89184], [-87.62423, 41.89171]]}, "type": "Feature", "properties": {"num_passengers": 10810}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.89085], [-87.62418, 41.89069]]}, "type": "Feature", "properties": {"num_passengers": 10810}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.89219], [-87.62423, 41.89202]]}, "type": "Feature", "properties": {"num_passengers": 10810}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.89002], [-87.62418, 41.88993]]}, "type": "Feature", "properties": {"num_passengers": 10810}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.89202], [-87.62423, 41.89184]]}, "type": "Feature", "properties": {"num_passengers": 10810}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62411, 41.89311], [-87.62412, 41.89328]]}, "type": "Feature", "properties": {"num_passengers": 12067}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62412, 41.89328], [-87.62416, 41.89471]]}, "type": "Feature", "properties": {"num_passengers": 12067}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62409, 41.89187], [-87.62411, 41.89311]]}, "type": "Feature", "properties": {"num_passengers": 12067}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62416, 41.89471], [-87.62416, 41.8949]]}, "type": "Feature", "properties": {"num_passengers": 12067}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62403, 41.8903], [-87.62408, 41.89171]]}, "type": "Feature", "properties": {"num_passengers": 12067}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62408, 41.89171], [-87.62409, 41.89187]]}, "type": "Feature", "properties": {"num_passengers": 12067}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62427, 41.89273], [-87.62423, 41.89253]]}, "type": "Feature", "properties": {"num_passengers": 12285}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6243, 41.89624], [-87.6243, 41.89608]]}, "type": "Feature", "properties": {"num_passengers": 12510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.89712], [-87.62419, 41.89694]]}, "type": "Feature", "properties": {"num_passengers": 12510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6243, 41.8964], [-87.6243, 41.89624]]}, "type": "Feature", "properties": {"num_passengers": 12510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62413, 41.89731], [-87.62418, 41.89712]]}, "type": "Feature", "properties": {"num_passengers": 12510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6243, 41.89593], [-87.6243, 41.89585]]}, "type": "Feature", "properties": {"num_passengers": 12510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62419, 41.89694], [-87.62423, 41.89676]]}, "type": "Feature", "properties": {"num_passengers": 12510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6243, 41.89608], [-87.6243, 41.89593]]}, "type": "Feature", "properties": {"num_passengers": 12510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62427, 41.89658], [-87.6243, 41.8964]]}, "type": "Feature", "properties": {"num_passengers": 12510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.89676], [-87.62427, 41.89658]]}, "type": "Feature", "properties": {"num_passengers": 12510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62408, 41.89749], [-87.62413, 41.89731]]}, "type": "Feature", "properties": {"num_passengers": 12510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6243, 41.89585], [-87.62434, 41.89578]]}, "type": "Feature", "properties": {"num_passengers": 12510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62416, 41.8949], [-87.6242, 41.89659]]}, "type": "Feature", "properties": {"num_passengers": 13231}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6243, 41.89427], [-87.62427, 41.89273]]}, "type": "Feature", "properties": {"num_passengers": 13239}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62433, 41.89435], [-87.6243, 41.89427]]}, "type": "Feature", "properties": {"num_passengers": 13435}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62399, 41.89799], [-87.62399, 41.89799]]}, "type": "Feature", "properties": {"num_passengers": 13798}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62405, 41.89754], [-87.62399, 41.89799]]}, "type": "Feature", "properties": {"num_passengers": 13833}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6242, 41.89659], [-87.62405, 41.89754]]}, "type": "Feature", "properties": {"num_passengers": 13851}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62434, 41.89578], [-87.62433, 41.89435]]}, "type": "Feature", "properties": {"num_passengers": 14145}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62433, 41.89435], [-87.62433, 41.89435]]}, "type": "Feature", "properties": {"num_passengers": 14294}}]} \ No newline at end of file +{"type": "FeatureCollection", "features": [{"geometry": {"type": "LineString", "coordinates": [[-87.68795, 41.93125], [-87.68793, 41.93109]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68782, 41.92684], [-87.68779, 41.92669]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68796, 41.93141], [-87.68795, 41.93125]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68791, 41.9296], [-87.68793, 41.92948]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68793, 41.93053], [-87.68793, 41.93036]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68793, 41.93109], [-87.68791, 41.9309]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68784, 41.92752], [-87.68782, 41.92735]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68799, 41.93218], [-87.68799, 41.93197]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68777, 41.92653], [-87.68776, 41.9263]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68799, 41.93237], [-87.68799, 41.93218]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68784, 41.92792], [-87.68784, 41.92771]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68784, 41.92771], [-87.68784, 41.92752]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68787, 41.92837], [-87.68785, 41.92815]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68793, 41.92934], [-87.68791, 41.92921]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68791, 41.92904], [-87.6879, 41.92889]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68782, 41.92719], [-87.68782, 41.92705]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68785, 41.92815], [-87.68784, 41.92792]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68782, 41.9269], [-87.68782, 41.92684]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68791, 41.93016], [-87.68791, 41.92996]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68791, 41.92996], [-87.68791, 41.92977]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68799, 41.93156], [-87.68796, 41.93141]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68776, 41.9263], [-87.68776, 41.92608]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68791, 41.92921], [-87.68791, 41.92904]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68791, 41.93071], [-87.68793, 41.93053]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68791, 41.92977], [-87.68791, 41.9296]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68799, 41.9318], [-87.68799, 41.93165]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68782, 41.92735], [-87.68782, 41.92719]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68793, 41.93021], [-87.68793, 41.93006]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6879, 41.92889], [-87.68788, 41.92873]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68782, 41.92705], [-87.68782, 41.9269]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68776, 41.92608], [-87.68774, 41.92584]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68793, 41.93036], [-87.68793, 41.93021]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68772, 41.92525], [-87.68776, 41.9251]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68793, 41.92948], [-87.68793, 41.92934]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68787, 41.92858], [-87.68787, 41.92837]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68795, 41.93032], [-87.68791, 41.93016]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68793, 41.93005], [-87.68795, 41.93032]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68799, 41.93165], [-87.68799, 41.93156]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68788, 41.92873], [-87.68787, 41.92858]]}, "type": "Feature", "properties": {"num_passengers": 7176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62063, 41.70385], [-87.62065, 41.70367]]}, "type": "Feature", "properties": {"num_passengers": 7178}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68099, 41.9395], [-87.68089, 41.93951]]}, "type": "Feature", "properties": {"num_passengers": 7180}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7039, 41.80681], [-87.70393, 41.808]]}, "type": "Feature", "properties": {"num_passengers": 7181}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64497, 41.77977], [-87.64506, 41.77975]]}, "type": "Feature", "properties": {"num_passengers": 7185}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64749, 41.77974], [-87.64992, 41.77971]]}, "type": "Feature", "properties": {"num_passengers": 7185}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68769, 41.92355], [-87.68769, 41.92346]]}, "type": "Feature", "properties": {"num_passengers": 7188}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62501, 41.90387], [-87.62499, 41.9038]]}, "type": "Feature", "properties": {"num_passengers": 7189}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66661, 41.96449], [-87.66656, 41.96426]]}, "type": "Feature", "properties": {"num_passengers": 7191}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65536, 41.98446], [-87.65535, 41.98432]]}, "type": "Feature", "properties": {"num_passengers": 7191}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62471, 41.90295], [-87.62466, 41.90282]]}, "type": "Feature", "properties": {"num_passengers": 7192}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63589, 41.9251], [-87.63585, 41.92488]]}, "type": "Feature", "properties": {"num_passengers": 7193}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66085, 42.00313], [-87.66085, 42.00298]]}, "type": "Feature", "properties": {"num_passengers": 7193}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62477, 41.90381], [-87.62443, 41.90278]]}, "type": "Feature", "properties": {"num_passengers": 7196}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62078, 41.69499], [-87.62078, 41.6952]]}, "type": "Feature", "properties": {"num_passengers": 7200}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68774, 41.92505], [-87.68772, 41.9249]]}, "type": "Feature", "properties": {"num_passengers": 7201}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62244, 41.75099], [-87.62222, 41.751]]}, "type": "Feature", "properties": {"num_passengers": 7207}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67725, 41.89594], [-87.67739, 41.89594]]}, "type": "Feature", "properties": {"num_passengers": 7217}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5864, 41.78076], [-87.58643, 41.78092]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58644, 41.77943], [-87.58643, 41.7796]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58649, 41.78429], [-87.58649, 41.78444]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58646, 41.78165], [-87.58644, 41.78186]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58644, 41.78186], [-87.58644, 41.78206]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58644, 41.7828], [-87.58646, 41.78297]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58643, 41.78092], [-87.58644, 41.78107]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58627, 41.77867], [-87.5863, 41.77876]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58644, 41.78224], [-87.58644, 41.78242]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58646, 41.78297], [-87.58646, 41.78312]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5864, 41.78], [-87.5864, 41.78018]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58646, 41.78332], [-87.58646, 41.78351]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58649, 41.7841], [-87.58649, 41.78429]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58644, 41.78273], [-87.58644, 41.7828]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58649, 41.78462], [-87.58649, 41.7848]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58643, 41.7796], [-87.5864, 41.77981]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58648, 41.78383], [-87.58648, 41.78395]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58644, 41.78242], [-87.58644, 41.78256]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58644, 41.78107], [-87.58646, 41.78125]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58648, 41.78367], [-87.58648, 41.78383]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5864, 41.78047], [-87.5864, 41.78062]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58644, 41.78256], [-87.58644, 41.78273]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58646, 41.78125], [-87.58648, 41.78145]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58646, 41.78312], [-87.58646, 41.78332]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5864, 41.78018], [-87.5864, 41.78033]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58648, 41.78145], [-87.58646, 41.78165]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58643, 41.77925], [-87.58644, 41.77943]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58644, 41.78206], [-87.58644, 41.78224]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58646, 41.78351], [-87.58648, 41.78367]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5864, 41.78033], [-87.5864, 41.78047]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5863, 41.77876], [-87.5864, 41.77905]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5864, 41.78047], [-87.5864, 41.78047]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5864, 41.77981], [-87.5864, 41.78]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5864, 41.78062], [-87.5864, 41.78076]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5864, 41.77905], [-87.58643, 41.77925]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58648, 41.78395], [-87.58649, 41.7841]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58649, 41.78444], [-87.58649, 41.78462]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58627, 41.77848], [-87.58627, 41.77867]]}, "type": "Feature", "properties": {"num_passengers": 7220}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63086, 41.78], [-87.63097, 41.78]]}, "type": "Feature", "properties": {"num_passengers": 7221}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72388, 41.93911], [-87.7236, 41.93912]]}, "type": "Feature", "properties": {"num_passengers": 7223}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62435, 41.75097], [-87.62413, 41.75096]]}, "type": "Feature", "properties": {"num_passengers": 7223}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68772, 41.9249], [-87.68771, 41.92475]]}, "type": "Feature", "properties": {"num_passengers": 7226}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62513, 41.90533], [-87.62516, 41.9055]]}, "type": "Feature", "properties": {"num_passengers": 7227}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64196, 41.86728], [-87.6421, 41.86729]]}, "type": "Feature", "properties": {"num_passengers": 7228}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68771, 41.92475], [-87.68771, 41.92458]]}, "type": "Feature", "properties": {"num_passengers": 7228}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68771, 41.92458], [-87.68769, 41.92437]]}, "type": "Feature", "properties": {"num_passengers": 7230}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62474, 41.90305], [-87.62471, 41.90295]]}, "type": "Feature", "properties": {"num_passengers": 7230}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68717, 41.90496], [-87.68718, 41.90478]]}, "type": "Feature", "properties": {"num_passengers": 7237}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62262, 41.75099], [-87.62244, 41.75099]]}, "type": "Feature", "properties": {"num_passengers": 7237}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62489, 41.9041], [-87.62483, 41.90386]]}, "type": "Feature", "properties": {"num_passengers": 7239}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62499, 41.9038], [-87.62494, 41.90363]]}, "type": "Feature", "properties": {"num_passengers": 7241}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62049, 41.70532], [-87.62047, 41.70552]]}, "type": "Feature", "properties": {"num_passengers": 7243}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6245, 41.88646], [-87.62444, 41.88679]]}, "type": "Feature", "properties": {"num_passengers": 7243}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58627, 41.7783], [-87.58627, 41.77848]]}, "type": "Feature", "properties": {"num_passengers": 7244}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62413, 41.75096], [-87.62408, 41.75096]]}, "type": "Feature", "properties": {"num_passengers": 7244}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64741, 41.77974], [-87.64749, 41.77974]]}, "type": "Feature", "properties": {"num_passengers": 7245}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76564, 41.97342], [-87.76578, 41.9736]]}, "type": "Feature", "properties": {"num_passengers": 7252}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76642, 41.9743], [-87.7665, 41.97443]]}, "type": "Feature", "properties": {"num_passengers": 7252}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76548, 41.97324], [-87.76564, 41.97342]]}, "type": "Feature", "properties": {"num_passengers": 7252}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76534, 41.97309], [-87.76548, 41.97324]]}, "type": "Feature", "properties": {"num_passengers": 7252}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76627, 41.97414], [-87.76642, 41.9743]]}, "type": "Feature", "properties": {"num_passengers": 7252}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7665, 41.97443], [-87.76656, 41.9745]]}, "type": "Feature", "properties": {"num_passengers": 7252}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76612, 41.97396], [-87.76627, 41.97414]]}, "type": "Feature", "properties": {"num_passengers": 7252}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76596, 41.97377], [-87.76612, 41.97396]]}, "type": "Feature", "properties": {"num_passengers": 7252}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76578, 41.9736], [-87.76596, 41.97377]]}, "type": "Feature", "properties": {"num_passengers": 7252}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76524, 41.97296], [-87.76534, 41.97309]]}, "type": "Feature", "properties": {"num_passengers": 7252}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62481, 41.90323], [-87.62474, 41.90305]]}, "type": "Feature", "properties": {"num_passengers": 7255}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62755, 41.86899], [-87.62755, 41.86844]]}, "type": "Feature", "properties": {"num_passengers": 7256}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62494, 41.90363], [-87.62488, 41.90345]]}, "type": "Feature", "properties": {"num_passengers": 7260}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62047, 41.70552], [-87.62046, 41.70565]]}, "type": "Feature", "properties": {"num_passengers": 7260}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68089, 41.93951], [-87.67804, 41.93955]]}, "type": "Feature", "properties": {"num_passengers": 7260}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62408, 41.75096], [-87.62388, 41.75097]]}, "type": "Feature", "properties": {"num_passengers": 7264}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62286, 41.75099], [-87.62262, 41.75099]]}, "type": "Feature", "properties": {"num_passengers": 7266}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62062, 41.70404], [-87.62063, 41.70385]]}, "type": "Feature", "properties": {"num_passengers": 7269}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58627, 41.77811], [-87.58627, 41.7783]]}, "type": "Feature", "properties": {"num_passengers": 7269}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58495, 41.802], [-87.58489, 41.80186]]}, "type": "Feature", "properties": {"num_passengers": 7270}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71881, 41.93923], [-87.71864, 41.93924]]}, "type": "Feature", "properties": {"num_passengers": 7271}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7201, 41.93917], [-87.71989, 41.93917]]}, "type": "Feature", "properties": {"num_passengers": 7271}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71788, 41.93924], [-87.71765, 41.93922]]}, "type": "Feature", "properties": {"num_passengers": 7271}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71708, 41.93925], [-87.71684, 41.93925]]}, "type": "Feature", "properties": {"num_passengers": 7271}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72201, 41.93916], [-87.72182, 41.93915]]}, "type": "Feature", "properties": {"num_passengers": 7271}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71602, 41.93927], [-87.71575, 41.93927]]}, "type": "Feature", "properties": {"num_passengers": 7271}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71967, 41.93922], [-87.71948, 41.93923]]}, "type": "Feature", "properties": {"num_passengers": 7271}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71684, 41.93925], [-87.71657, 41.93927]]}, "type": "Feature", "properties": {"num_passengers": 7271}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72307, 41.93915], [-87.72277, 41.93915]]}, "type": "Feature", "properties": {"num_passengers": 7271}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72074, 41.93918], [-87.72051, 41.93918]]}, "type": "Feature", "properties": {"num_passengers": 7271}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72161, 41.93915], [-87.72136, 41.93917]]}, "type": "Feature", "properties": {"num_passengers": 7271}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72161, 41.93915], [-87.72161, 41.93915]]}, "type": "Feature", "properties": {"num_passengers": 7271}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72222, 41.93917], [-87.72201, 41.93916]]}, "type": "Feature", "properties": {"num_passengers": 7271}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71927, 41.93923], [-87.71904, 41.93923]]}, "type": "Feature", "properties": {"num_passengers": 7271}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72098, 41.93918], [-87.72074, 41.93918]]}, "type": "Feature", "properties": {"num_passengers": 7271}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71729, 41.93923], [-87.71708, 41.93925]]}, "type": "Feature", "properties": {"num_passengers": 7271}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72249, 41.93915], [-87.72222, 41.93917]]}, "type": "Feature", "properties": {"num_passengers": 7271}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71575, 41.93927], [-87.71552, 41.93925]]}, "type": "Feature", "properties": {"num_passengers": 7271}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71754, 41.93922], [-87.71729, 41.93923]]}, "type": "Feature", "properties": {"num_passengers": 7271}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72031, 41.93918], [-87.7201, 41.93917]]}, "type": "Feature", "properties": {"num_passengers": 7271}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71525, 41.93925], [-87.71509, 41.93926]]}, "type": "Feature", "properties": {"num_passengers": 7271}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71765, 41.93922], [-87.71754, 41.93922]]}, "type": "Feature", "properties": {"num_passengers": 7271}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71948, 41.93923], [-87.71927, 41.93923]]}, "type": "Feature", "properties": {"num_passengers": 7271}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71904, 41.93923], [-87.71881, 41.93923]]}, "type": "Feature", "properties": {"num_passengers": 7271}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71989, 41.93917], [-87.71982, 41.93917]]}, "type": "Feature", "properties": {"num_passengers": 7271}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72182, 41.93915], [-87.72161, 41.93915]]}, "type": "Feature", "properties": {"num_passengers": 7271}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7181, 41.93924], [-87.71788, 41.93924]]}, "type": "Feature", "properties": {"num_passengers": 7271}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71657, 41.93927], [-87.71629, 41.93927]]}, "type": "Feature", "properties": {"num_passengers": 7271}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71835, 41.93924], [-87.7181, 41.93924]]}, "type": "Feature", "properties": {"num_passengers": 7271}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71982, 41.93917], [-87.71967, 41.93922]]}, "type": "Feature", "properties": {"num_passengers": 7271}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72118, 41.93917], [-87.72098, 41.93918]]}, "type": "Feature", "properties": {"num_passengers": 7271}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71629, 41.93927], [-87.71602, 41.93927]]}, "type": "Feature", "properties": {"num_passengers": 7271}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72051, 41.93918], [-87.72031, 41.93918]]}, "type": "Feature", "properties": {"num_passengers": 7271}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72277, 41.93915], [-87.72249, 41.93915]]}, "type": "Feature", "properties": {"num_passengers": 7271}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72136, 41.93917], [-87.72118, 41.93917]]}, "type": "Feature", "properties": {"num_passengers": 7271}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71864, 41.93924], [-87.71835, 41.93924]]}, "type": "Feature", "properties": {"num_passengers": 7271}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71552, 41.93925], [-87.71525, 41.93925]]}, "type": "Feature", "properties": {"num_passengers": 7271}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62744, 41.86422], [-87.62744, 41.8641]]}, "type": "Feature", "properties": {"num_passengers": 7273}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63319, 41.8781], [-87.63267, 41.8781]]}, "type": "Feature", "properties": {"num_passengers": 7274}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62462, 41.90269], [-87.62457, 41.90254]]}, "type": "Feature", "properties": {"num_passengers": 7276}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66656, 41.96426], [-87.66651, 41.964]]}, "type": "Feature", "properties": {"num_passengers": 7277}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62046, 41.70565], [-87.62044, 41.70581]]}, "type": "Feature", "properties": {"num_passengers": 7277}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62388, 41.75097], [-87.62364, 41.75097]]}, "type": "Feature", "properties": {"num_passengers": 7278}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72336, 41.93912], [-87.72307, 41.93915]]}, "type": "Feature", "properties": {"num_passengers": 7279}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62488, 41.90345], [-87.62481, 41.90323]]}, "type": "Feature", "properties": {"num_passengers": 7280}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68717, 41.90514], [-87.68717, 41.90496]]}, "type": "Feature", "properties": {"num_passengers": 7282}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62308, 41.75099], [-87.62286, 41.75099]]}, "type": "Feature", "properties": {"num_passengers": 7285}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58649, 41.7848], [-87.58651, 41.785]]}, "type": "Feature", "properties": {"num_passengers": 7286}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7236, 41.93912], [-87.72336, 41.93912]]}, "type": "Feature", "properties": {"num_passengers": 7288}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62364, 41.75097], [-87.6234, 41.75098]]}, "type": "Feature", "properties": {"num_passengers": 7291}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62044, 41.70581], [-87.62041, 41.706]]}, "type": "Feature", "properties": {"num_passengers": 7293}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62506, 41.90516], [-87.62513, 41.90533]]}, "type": "Feature", "properties": {"num_passengers": 7297}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6234, 41.75098], [-87.62318, 41.75098]]}, "type": "Feature", "properties": {"num_passengers": 7297}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63221, 41.88318], [-87.6319, 41.88317]]}, "type": "Feature", "properties": {"num_passengers": 7297}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63059, 41.89989], [-87.63079, 41.89988]]}, "type": "Feature", "properties": {"num_passengers": 7302}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66631, 41.96312], [-87.66627, 41.96293]]}, "type": "Feature", "properties": {"num_passengers": 7303}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66606, 41.96189], [-87.66603, 41.96178]]}, "type": "Feature", "properties": {"num_passengers": 7303}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62318, 41.75098], [-87.62308, 41.75099]]}, "type": "Feature", "properties": {"num_passengers": 7303}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66615, 41.96237], [-87.66612, 41.96221]]}, "type": "Feature", "properties": {"num_passengers": 7303}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66619, 41.96253], [-87.66615, 41.96237]]}, "type": "Feature", "properties": {"num_passengers": 7303}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66627, 41.96293], [-87.66624, 41.96275]]}, "type": "Feature", "properties": {"num_passengers": 7303}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66624, 41.96275], [-87.66619, 41.96253]]}, "type": "Feature", "properties": {"num_passengers": 7303}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66612, 41.96221], [-87.66609, 41.96204]]}, "type": "Feature", "properties": {"num_passengers": 7303}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66609, 41.96204], [-87.66606, 41.96189]]}, "type": "Feature", "properties": {"num_passengers": 7303}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64506, 41.77975], [-87.64741, 41.77974]]}, "type": "Feature", "properties": {"num_passengers": 7306}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62041, 41.706], [-87.62038, 41.70618]]}, "type": "Feature", "properties": {"num_passengers": 7307}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63597, 41.92553], [-87.636, 41.92561]]}, "type": "Feature", "properties": {"num_passengers": 7309}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63942, 41.93746], [-87.63944, 41.93765]]}, "type": "Feature", "properties": {"num_passengers": 7311}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63944, 41.93765], [-87.63943, 41.93785]]}, "type": "Feature", "properties": {"num_passengers": 7311}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63945, 41.93818], [-87.63945, 41.93843]]}, "type": "Feature", "properties": {"num_passengers": 7311}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63945, 41.93843], [-87.63947, 41.93868]]}, "type": "Feature", "properties": {"num_passengers": 7311}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63943, 41.93785], [-87.63944, 41.93794]]}, "type": "Feature", "properties": {"num_passengers": 7311}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63944, 41.93794], [-87.63945, 41.93818]]}, "type": "Feature", "properties": {"num_passengers": 7311}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63941, 41.93728], [-87.63942, 41.93746]]}, "type": "Feature", "properties": {"num_passengers": 7311}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63942, 41.93712], [-87.63941, 41.93728]]}, "type": "Feature", "properties": {"num_passengers": 7311}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66651, 41.964], [-87.66646, 41.96379]]}, "type": "Feature", "properties": {"num_passengers": 7314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62426, 41.90062], [-87.62426, 41.90043]]}, "type": "Feature", "properties": {"num_passengers": 7315}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62421, 41.89953], [-87.6242, 41.89938]]}, "type": "Feature", "properties": {"num_passengers": 7315}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62427, 41.90078], [-87.62426, 41.90062]]}, "type": "Feature", "properties": {"num_passengers": 7315}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6245, 41.90226], [-87.62448, 41.9022]]}, "type": "Feature", "properties": {"num_passengers": 7315}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6242, 41.89938], [-87.62421, 41.8993]]}, "type": "Feature", "properties": {"num_passengers": 7315}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62448, 41.9022], [-87.62432, 41.90171]]}, "type": "Feature", "properties": {"num_passengers": 7315}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62427, 41.90089], [-87.62427, 41.90078]]}, "type": "Feature", "properties": {"num_passengers": 7315}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62422, 41.89971], [-87.62421, 41.89953]]}, "type": "Feature", "properties": {"num_passengers": 7315}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62427, 41.90098], [-87.62427, 41.90089]]}, "type": "Feature", "properties": {"num_passengers": 7315}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62424, 41.90137], [-87.62427, 41.90098]]}, "type": "Feature", "properties": {"num_passengers": 7315}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62425, 41.90022], [-87.62424, 41.90003]]}, "type": "Feature", "properties": {"num_passengers": 7315}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62424, 41.90003], [-87.62423, 41.89986]]}, "type": "Feature", "properties": {"num_passengers": 7315}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.89986], [-87.62422, 41.89971]]}, "type": "Feature", "properties": {"num_passengers": 7315}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62426, 41.90043], [-87.62425, 41.90022]]}, "type": "Feature", "properties": {"num_passengers": 7315}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62432, 41.90171], [-87.62424, 41.90137]]}, "type": "Feature", "properties": {"num_passengers": 7315}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66085, 42.00298], [-87.66085, 42.00279]]}, "type": "Feature", "properties": {"num_passengers": 7317}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58475, 41.75152], [-87.58634, 41.75152]]}, "type": "Feature", "properties": {"num_passengers": 7319}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66635, 41.96332], [-87.66631, 41.96312]]}, "type": "Feature", "properties": {"num_passengers": 7320}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62078, 41.6952], [-87.62079, 41.69543]]}, "type": "Feature", "properties": {"num_passengers": 7320}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66646, 41.96379], [-87.6664, 41.96356]]}, "type": "Feature", "properties": {"num_passengers": 7320}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6872, 41.90641], [-87.6872, 41.90624]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68731, 41.91162], [-87.68731, 41.91146]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6872, 41.90588], [-87.68718, 41.90568]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68729, 41.9113], [-87.68729, 41.91114]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68731, 41.91178], [-87.68731, 41.91162]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68729, 41.91114], [-87.68729, 41.91096]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68729, 41.91019], [-87.68728, 41.91004]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68733, 41.91285], [-87.68733, 41.91263]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68729, 41.91064], [-87.68728, 41.91048]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68729, 41.91032], [-87.68729, 41.91019]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6872, 41.90606], [-87.6872, 41.90588]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68733, 41.91243], [-87.68733, 41.91229]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68728, 41.91048], [-87.68729, 41.91032]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68731, 41.91209], [-87.68731, 41.91193]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68733, 41.91221], [-87.68731, 41.91209]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68731, 41.91193], [-87.68731, 41.91178]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68728, 41.91], [-87.68724, 41.90842]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68717, 41.90531], [-87.68717, 41.90514]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68728, 41.91004], [-87.68728, 41.91004]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68729, 41.91096], [-87.68729, 41.9108]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68733, 41.91327], [-87.68733, 41.91307]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68728, 41.91004], [-87.68728, 41.91]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68719, 41.90679], [-87.68722, 41.90662]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68722, 41.90662], [-87.6872, 41.90641]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68724, 41.90842], [-87.68724, 41.90832]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68729, 41.9108], [-87.68729, 41.91064]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68731, 41.91146], [-87.68729, 41.9113]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68718, 41.90568], [-87.68717, 41.9055]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68724, 41.90832], [-87.68719, 41.90679]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68733, 41.91263], [-87.68733, 41.91243]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68741, 41.91351], [-87.68741, 41.91347]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68736, 41.91343], [-87.68733, 41.91327]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68733, 41.91229], [-87.68733, 41.91221]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68717, 41.9055], [-87.68717, 41.90531]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68741, 41.91366], [-87.68741, 41.91351]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68741, 41.91347], [-87.68736, 41.91343]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6872, 41.90624], [-87.6872, 41.90606]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68733, 41.91307], [-87.68733, 41.91285]]}, "type": "Feature", "properties": {"num_passengers": 7327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62038, 41.70618], [-87.62036, 41.70636]]}, "type": "Feature", "properties": {"num_passengers": 7328}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6664, 41.96356], [-87.66639, 41.96348]]}, "type": "Feature", "properties": {"num_passengers": 7328}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63941, 41.93694], [-87.63942, 41.93712]]}, "type": "Feature", "properties": {"num_passengers": 7330}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66639, 41.96348], [-87.66635, 41.96332]]}, "type": "Feature", "properties": {"num_passengers": 7336}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67804, 41.93955], [-87.67796, 41.93954]]}, "type": "Feature", "properties": {"num_passengers": 7339}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68212, 41.89579], [-87.682, 41.89578]]}, "type": "Feature", "properties": {"num_passengers": 7346}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62014, 41.70751], [-87.62011, 41.70771]]}, "type": "Feature", "properties": {"num_passengers": 7347}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62028, 41.7067], [-87.62025, 41.70684]]}, "type": "Feature", "properties": {"num_passengers": 7347}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62004, 41.70813], [-87.62001, 41.70828]]}, "type": "Feature", "properties": {"num_passengers": 7347}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61997, 41.7086], [-87.61995, 41.70878]]}, "type": "Feature", "properties": {"num_passengers": 7347}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6199, 41.70897], [-87.6199, 41.70908]]}, "type": "Feature", "properties": {"num_passengers": 7347}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6199, 41.70892], [-87.6199, 41.70897]]}, "type": "Feature", "properties": {"num_passengers": 7347}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61995, 41.70878], [-87.6199, 41.70892]]}, "type": "Feature", "properties": {"num_passengers": 7347}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6202, 41.70702], [-87.62019, 41.70717]]}, "type": "Feature", "properties": {"num_passengers": 7347}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62019, 41.70717], [-87.62016, 41.70732]]}, "type": "Feature", "properties": {"num_passengers": 7347}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62001, 41.70828], [-87.62, 41.70842]]}, "type": "Feature", "properties": {"num_passengers": 7347}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62025, 41.70684], [-87.6202, 41.70702]]}, "type": "Feature", "properties": {"num_passengers": 7347}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62009, 41.70781], [-87.62008, 41.70796]]}, "type": "Feature", "properties": {"num_passengers": 7347}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62008, 41.70796], [-87.62004, 41.70813]]}, "type": "Feature", "properties": {"num_passengers": 7347}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62016, 41.70732], [-87.62014, 41.70751]]}, "type": "Feature", "properties": {"num_passengers": 7347}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62, 41.70842], [-87.61997, 41.7086]]}, "type": "Feature", "properties": {"num_passengers": 7347}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62011, 41.70771], [-87.62009, 41.70781]]}, "type": "Feature", "properties": {"num_passengers": 7347}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62036, 41.70636], [-87.62033, 41.70654]]}, "type": "Feature", "properties": {"num_passengers": 7348}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62033, 41.70654], [-87.62028, 41.7067]]}, "type": "Feature", "properties": {"num_passengers": 7348}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63941, 41.9368], [-87.63941, 41.93694]]}, "type": "Feature", "properties": {"num_passengers": 7348}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58651, 41.785], [-87.58651, 41.78521]]}, "type": "Feature", "properties": {"num_passengers": 7352}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60623, 41.79402], [-87.60623, 41.7938]]}, "type": "Feature", "properties": {"num_passengers": 7352}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62936, 41.88215], [-87.62941, 41.88464]]}, "type": "Feature", "properties": {"num_passengers": 7353}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6293, 41.88094], [-87.62934, 41.88103]]}, "type": "Feature", "properties": {"num_passengers": 7353}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62934, 41.88103], [-87.62935, 41.882]]}, "type": "Feature", "properties": {"num_passengers": 7353}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62941, 41.88464], [-87.62942, 41.8848]]}, "type": "Feature", "properties": {"num_passengers": 7353}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62935, 41.882], [-87.62936, 41.88215]]}, "type": "Feature", "properties": {"num_passengers": 7353}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62453, 41.90241], [-87.6245, 41.90226]]}, "type": "Feature", "properties": {"num_passengers": 7357}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60623, 41.79424], [-87.60623, 41.79402]]}, "type": "Feature", "properties": {"num_passengers": 7362}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62506, 41.905], [-87.62506, 41.90516]]}, "type": "Feature", "properties": {"num_passengers": 7366}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60623, 41.79448], [-87.60623, 41.79424]]}, "type": "Feature", "properties": {"num_passengers": 7370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58627, 41.7779], [-87.58627, 41.77811]]}, "type": "Feature", "properties": {"num_passengers": 7371}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68769, 41.92346], [-87.68771, 41.92334]]}, "type": "Feature", "properties": {"num_passengers": 7373}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63943, 41.93534], [-87.63939, 41.93424]]}, "type": "Feature", "properties": {"num_passengers": 7375}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60622, 41.79325], [-87.60622, 41.7931]]}, "type": "Feature", "properties": {"num_passengers": 7376}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64464, 41.93182], [-87.64452, 41.93169]]}, "type": "Feature", "properties": {"num_passengers": 7378}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61169, 41.722], [-87.6139, 41.72195]]}, "type": "Feature", "properties": {"num_passengers": 7379}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68741, 41.9138], [-87.68741, 41.91366]]}, "type": "Feature", "properties": {"num_passengers": 7381}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62079, 41.69543], [-87.62079, 41.69565]]}, "type": "Feature", "properties": {"num_passengers": 7383}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60623, 41.7947], [-87.60623, 41.79448]]}, "type": "Feature", "properties": {"num_passengers": 7388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67796, 41.93954], [-87.67608, 41.93957]]}, "type": "Feature", "properties": {"num_passengers": 7390}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64075, 41.77985], [-87.64083, 41.77984]]}, "type": "Feature", "properties": {"num_passengers": 7393}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62457, 41.90254], [-87.62453, 41.90241]]}, "type": "Feature", "properties": {"num_passengers": 7399}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60623, 41.7938], [-87.60623, 41.79358]]}, "type": "Feature", "properties": {"num_passengers": 7400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65535, 41.98432], [-87.65535, 41.98418]]}, "type": "Feature", "properties": {"num_passengers": 7402}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58503, 41.80197], [-87.58508, 41.80211]]}, "type": "Feature", "properties": {"num_passengers": 7405}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60626, 41.79489], [-87.60623, 41.7947]]}, "type": "Feature", "properties": {"num_passengers": 7406}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60622, 41.7934], [-87.60622, 41.79325]]}, "type": "Feature", "properties": {"num_passengers": 7411}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58651, 41.78521], [-87.58651, 41.7854]]}, "type": "Feature", "properties": {"num_passengers": 7411}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60626, 41.79504], [-87.60626, 41.79489]]}, "type": "Feature", "properties": {"num_passengers": 7411}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60636, 41.79853], [-87.60633, 41.79842]]}, "type": "Feature", "properties": {"num_passengers": 7416}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6063, 41.79586], [-87.60628, 41.79564]]}, "type": "Feature", "properties": {"num_passengers": 7416}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60633, 41.79871], [-87.60636, 41.79853]]}, "type": "Feature", "properties": {"num_passengers": 7416}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60633, 41.79935], [-87.60633, 41.79911]]}, "type": "Feature", "properties": {"num_passengers": 7416}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60626, 41.7952], [-87.60626, 41.79504]]}, "type": "Feature", "properties": {"num_passengers": 7416}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60626, 41.79527], [-87.60626, 41.7952]]}, "type": "Feature", "properties": {"num_passengers": 7416}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60631, 41.79822], [-87.60631, 41.79805]]}, "type": "Feature", "properties": {"num_passengers": 7416}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60641, 41.80008], [-87.60641, 41.79994]]}, "type": "Feature", "properties": {"num_passengers": 7416}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60631, 41.79672], [-87.60631, 41.79654]]}, "type": "Feature", "properties": {"num_passengers": 7416}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60631, 41.79692], [-87.60631, 41.79672]]}, "type": "Feature", "properties": {"num_passengers": 7416}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60628, 41.79544], [-87.60626, 41.79527]]}, "type": "Feature", "properties": {"num_passengers": 7416}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6063, 41.79609], [-87.6063, 41.79586]]}, "type": "Feature", "properties": {"num_passengers": 7416}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60641, 41.79994], [-87.60638, 41.79976]]}, "type": "Feature", "properties": {"num_passengers": 7416}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60631, 41.79805], [-87.6063, 41.79782]]}, "type": "Feature", "properties": {"num_passengers": 7416}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6063, 41.79717], [-87.60631, 41.79699]]}, "type": "Feature", "properties": {"num_passengers": 7416}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60641, 41.80042], [-87.60641, 41.80025]]}, "type": "Feature", "properties": {"num_passengers": 7416}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60631, 41.79654], [-87.6063, 41.79633]]}, "type": "Feature", "properties": {"num_passengers": 7416}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6063, 41.79782], [-87.6063, 41.79759]]}, "type": "Feature", "properties": {"num_passengers": 7416}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60633, 41.79842], [-87.60631, 41.79822]]}, "type": "Feature", "properties": {"num_passengers": 7416}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6063, 41.79759], [-87.6063, 41.79736]]}, "type": "Feature", "properties": {"num_passengers": 7416}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60638, 41.79976], [-87.60636, 41.79954]]}, "type": "Feature", "properties": {"num_passengers": 7416}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60633, 41.79911], [-87.60631, 41.79889]]}, "type": "Feature", "properties": {"num_passengers": 7416}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60631, 41.79699], [-87.60631, 41.79692]]}, "type": "Feature", "properties": {"num_passengers": 7416}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6063, 41.79633], [-87.6063, 41.79609]]}, "type": "Feature", "properties": {"num_passengers": 7416}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6063, 41.79736], [-87.6063, 41.79717]]}, "type": "Feature", "properties": {"num_passengers": 7416}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60631, 41.79889], [-87.60633, 41.79871]]}, "type": "Feature", "properties": {"num_passengers": 7416}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60628, 41.79564], [-87.60628, 41.79544]]}, "type": "Feature", "properties": {"num_passengers": 7416}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60641, 41.80025], [-87.60641, 41.80008]]}, "type": "Feature", "properties": {"num_passengers": 7416}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60641, 41.80046], [-87.60641, 41.80042]]}, "type": "Feature", "properties": {"num_passengers": 7416}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60636, 41.79954], [-87.60633, 41.79935]]}, "type": "Feature", "properties": {"num_passengers": 7416}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64627, 41.94005], [-87.64643, 41.94004]]}, "type": "Feature", "properties": {"num_passengers": 7417}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6206, 41.70428], [-87.62062, 41.70404]]}, "type": "Feature", "properties": {"num_passengers": 7426}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60641, 41.80063], [-87.60641, 41.80046]]}, "type": "Feature", "properties": {"num_passengers": 7428}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62503, 41.90481], [-87.62506, 41.905]]}, "type": "Feature", "properties": {"num_passengers": 7435}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62502, 41.90446], [-87.62502, 41.90463]]}, "type": "Feature", "properties": {"num_passengers": 7435}}, {"geometry": {"type": "LineString", "coordinates": [[-87.625, 41.90429], [-87.62502, 41.90446]]}, "type": "Feature", "properties": {"num_passengers": 7435}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62502, 41.90463], [-87.62502, 41.90478]]}, "type": "Feature", "properties": {"num_passengers": 7435}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62502, 41.90478], [-87.62503, 41.90481]]}, "type": "Feature", "properties": {"num_passengers": 7435}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68739, 41.91398], [-87.68741, 41.9138]]}, "type": "Feature", "properties": {"num_passengers": 7436}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65641, 41.75052], [-87.65663, 41.75051]]}, "type": "Feature", "properties": {"num_passengers": 7438}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.8764], [-87.62418, 41.87656]]}, "type": "Feature", "properties": {"num_passengers": 7438}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67608, 41.93957], [-87.67591, 41.93958]]}, "type": "Feature", "properties": {"num_passengers": 7441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67568, 41.93958], [-87.67545, 41.93959]]}, "type": "Feature", "properties": {"num_passengers": 7441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66078, 42.00106], [-87.66077, 42.00086]]}, "type": "Feature", "properties": {"num_passengers": 7441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66074, 42.0], [-87.66074, 41.99986]]}, "type": "Feature", "properties": {"num_passengers": 7441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67545, 41.93959], [-87.67521, 41.93959]]}, "type": "Feature", "properties": {"num_passengers": 7441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66083, 42.00241], [-87.66082, 42.00227]]}, "type": "Feature", "properties": {"num_passengers": 7441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66074, 42.00014], [-87.66074, 42.0]]}, "type": "Feature", "properties": {"num_passengers": 7441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66085, 42.00279], [-87.66084, 42.00259]]}, "type": "Feature", "properties": {"num_passengers": 7441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66082, 42.00207], [-87.66082, 42.00194]]}, "type": "Feature", "properties": {"num_passengers": 7441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6608, 42.00144], [-87.66078, 42.00106]]}, "type": "Feature", "properties": {"num_passengers": 7441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66077, 42.00049], [-87.66074, 42.00032]]}, "type": "Feature", "properties": {"num_passengers": 7441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66074, 41.99986], [-87.66074, 41.99986]]}, "type": "Feature", "properties": {"num_passengers": 7441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66081, 42.0016], [-87.6608, 42.00144]]}, "type": "Feature", "properties": {"num_passengers": 7441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66077, 42.00069], [-87.66077, 42.00049]]}, "type": "Feature", "properties": {"num_passengers": 7441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66084, 42.00259], [-87.66083, 42.00241]]}, "type": "Feature", "properties": {"num_passengers": 7441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66081, 42.00178], [-87.66081, 42.0016]]}, "type": "Feature", "properties": {"num_passengers": 7441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66082, 42.00194], [-87.66081, 42.00178]]}, "type": "Feature", "properties": {"num_passengers": 7441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67591, 41.93958], [-87.67568, 41.93958]]}, "type": "Feature", "properties": {"num_passengers": 7441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60641, 41.8008], [-87.60641, 41.80063]]}, "type": "Feature", "properties": {"num_passengers": 7441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66082, 42.00227], [-87.66082, 42.00207]]}, "type": "Feature", "properties": {"num_passengers": 7441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66074, 42.00032], [-87.66074, 42.00014]]}, "type": "Feature", "properties": {"num_passengers": 7441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66077, 42.00086], [-87.66077, 42.00069]]}, "type": "Feature", "properties": {"num_passengers": 7441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62079, 41.69565], [-87.62081, 41.69586]]}, "type": "Feature", "properties": {"num_passengers": 7446}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60623, 41.79358], [-87.60622, 41.7934]]}, "type": "Feature", "properties": {"num_passengers": 7446}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62498, 41.9042], [-87.625, 41.90429]]}, "type": "Feature", "properties": {"num_passengers": 7446}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67448, 41.93961], [-87.67423, 41.93961]]}, "type": "Feature", "properties": {"num_passengers": 7448}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60641, 41.80095], [-87.60641, 41.8008]]}, "type": "Feature", "properties": {"num_passengers": 7449}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65519, 41.98512], [-87.6552, 41.98526]]}, "type": "Feature", "properties": {"num_passengers": 7454}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62452, 41.90267], [-87.62459, 41.90285]]}, "type": "Feature", "properties": {"num_passengers": 7457}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62464, 41.90301], [-87.62467, 41.90314]]}, "type": "Feature", "properties": {"num_passengers": 7457}}, {"geometry": {"type": "LineString", "coordinates": [[-87.624, 41.90151], [-87.62401, 41.90167]]}, "type": "Feature", "properties": {"num_passengers": 7457}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62421, 41.90199], [-87.6243, 41.90213]]}, "type": "Feature", "properties": {"num_passengers": 7457}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62471, 41.90327], [-87.62475, 41.90338]]}, "type": "Feature", "properties": {"num_passengers": 7457}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62408, 41.90185], [-87.62421, 41.90199]]}, "type": "Feature", "properties": {"num_passengers": 7457}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62475, 41.90338], [-87.6248, 41.90353]]}, "type": "Feature", "properties": {"num_passengers": 7457}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6243, 41.90213], [-87.62436, 41.90226]]}, "type": "Feature", "properties": {"num_passengers": 7457}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6248, 41.90353], [-87.62483, 41.90368]]}, "type": "Feature", "properties": {"num_passengers": 7457}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62409, 41.90022], [-87.62409, 41.90036]]}, "type": "Feature", "properties": {"num_passengers": 7457}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62495, 41.90398], [-87.62498, 41.90412]]}, "type": "Feature", "properties": {"num_passengers": 7457}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62483, 41.90368], [-87.62488, 41.90381]]}, "type": "Feature", "properties": {"num_passengers": 7457}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62467, 41.90314], [-87.62471, 41.90327]]}, "type": "Feature", "properties": {"num_passengers": 7457}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62413, 41.90083], [-87.62408, 41.90095]]}, "type": "Feature", "properties": {"num_passengers": 7457}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62051, 41.70526], [-87.62049, 41.70532]]}, "type": "Feature", "properties": {"num_passengers": 7457}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64187, 41.94595], [-87.64199, 41.94615]]}, "type": "Feature", "properties": {"num_passengers": 7457}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62413, 41.90048], [-87.62413, 41.90052]]}, "type": "Feature", "properties": {"num_passengers": 7457}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62408, 41.90095], [-87.62406, 41.90111]]}, "type": "Feature", "properties": {"num_passengers": 7457}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62448, 41.90251], [-87.62452, 41.90267]]}, "type": "Feature", "properties": {"num_passengers": 7457}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6244, 41.90237], [-87.62448, 41.90251]]}, "type": "Feature", "properties": {"num_passengers": 7457}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62401, 41.90167], [-87.62408, 41.90185]]}, "type": "Feature", "properties": {"num_passengers": 7457}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62413, 41.90069], [-87.62413, 41.90083]]}, "type": "Feature", "properties": {"num_passengers": 7457}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62409, 41.90036], [-87.62413, 41.90048]]}, "type": "Feature", "properties": {"num_passengers": 7457}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62488, 41.90381], [-87.62495, 41.90398]]}, "type": "Feature", "properties": {"num_passengers": 7457}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62436, 41.90226], [-87.6244, 41.90237]]}, "type": "Feature", "properties": {"num_passengers": 7457}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62498, 41.90412], [-87.62498, 41.9042]]}, "type": "Feature", "properties": {"num_passengers": 7457}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62403, 41.90128], [-87.624, 41.90151]]}, "type": "Feature", "properties": {"num_passengers": 7457}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62413, 41.90052], [-87.62413, 41.90069]]}, "type": "Feature", "properties": {"num_passengers": 7457}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62406, 41.90111], [-87.62403, 41.90128]]}, "type": "Feature", "properties": {"num_passengers": 7457}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62459, 41.90285], [-87.62464, 41.90301]]}, "type": "Feature", "properties": {"num_passengers": 7457}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60642, 41.80117], [-87.60641, 41.80095]]}, "type": "Feature", "properties": {"num_passengers": 7458}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62492, 41.90435], [-87.62489, 41.9041]]}, "type": "Feature", "properties": {"num_passengers": 7458}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67456, 41.89599], [-87.67725, 41.89594]]}, "type": "Feature", "properties": {"num_passengers": 7466}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58651, 41.7854], [-87.58651, 41.78559]]}, "type": "Feature", "properties": {"num_passengers": 7469}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64452, 41.93169], [-87.64443, 41.93154]]}, "type": "Feature", "properties": {"num_passengers": 7473}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58624, 41.77771], [-87.58627, 41.7779]]}, "type": "Feature", "properties": {"num_passengers": 7473}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67521, 41.93959], [-87.67496, 41.93961]]}, "type": "Feature", "properties": {"num_passengers": 7475}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58622, 41.77733], [-87.58624, 41.77751]]}, "type": "Feature", "properties": {"num_passengers": 7476}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67472, 41.93961], [-87.67448, 41.93961]]}, "type": "Feature", "properties": {"num_passengers": 7478}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58508, 41.80211], [-87.58517, 41.80228]]}, "type": "Feature", "properties": {"num_passengers": 7481}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58624, 41.77751], [-87.58624, 41.77771]]}, "type": "Feature", "properties": {"num_passengers": 7494}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62439, 41.88476], [-87.62441, 41.88503]]}, "type": "Feature", "properties": {"num_passengers": 7498}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63585, 41.92488], [-87.63584, 41.92463]]}, "type": "Feature", "properties": {"num_passengers": 7502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68739, 41.91414], [-87.68739, 41.91398]]}, "type": "Feature", "properties": {"num_passengers": 7505}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62745, 41.86466], [-87.62744, 41.86422]]}, "type": "Feature", "properties": {"num_passengers": 7505}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67496, 41.93961], [-87.67472, 41.93961]]}, "type": "Feature", "properties": {"num_passengers": 7508}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63097, 41.78], [-87.63191, 41.77999]]}, "type": "Feature", "properties": {"num_passengers": 7511}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63591, 41.92541], [-87.63597, 41.92553]]}, "type": "Feature", "properties": {"num_passengers": 7521}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62409, 41.90005], [-87.62409, 41.90022]]}, "type": "Feature", "properties": {"num_passengers": 7526}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65535, 41.98418], [-87.65535, 41.98402]]}, "type": "Feature", "properties": {"num_passengers": 7528}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6292, 41.87622], [-87.6292, 41.87638]]}, "type": "Feature", "properties": {"num_passengers": 7528}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62415, 41.87536], [-87.62415, 41.8755]]}, "type": "Feature", "properties": {"num_passengers": 7532}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62442, 41.8857], [-87.62444, 41.88661]]}, "type": "Feature", "properties": {"num_passengers": 7532}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62038, 41.71381], [-87.62038, 41.71367]]}, "type": "Feature", "properties": {"num_passengers": 7534}}, {"geometry": {"type": "LineString", "coordinates": [[-87.625, 41.89675], [-87.62559, 41.89674]]}, "type": "Feature", "properties": {"num_passengers": 7534}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62041, 41.71397], [-87.62038, 41.71381]]}, "type": "Feature", "properties": {"num_passengers": 7540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62044, 41.7141], [-87.62041, 41.71397]]}, "type": "Feature", "properties": {"num_passengers": 7548}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68771, 41.92334], [-87.68771, 41.92318]]}, "type": "Feature", "properties": {"num_passengers": 7548}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65555, 41.99422], [-87.65555, 41.99406]]}, "type": "Feature", "properties": {"num_passengers": 7552}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58517, 41.80228], [-87.58523, 41.80242]]}, "type": "Feature", "properties": {"num_passengers": 7558}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62484, 41.90416], [-87.62477, 41.90381]]}, "type": "Feature", "properties": {"num_passengers": 7565}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62747, 41.86515], [-87.62745, 41.86466]]}, "type": "Feature", "properties": {"num_passengers": 7566}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64245, 41.92876], [-87.64235, 41.92866]]}, "type": "Feature", "properties": {"num_passengers": 7568}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64281, 41.92947], [-87.64273, 41.92933]]}, "type": "Feature", "properties": {"num_passengers": 7568}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64145, 41.92714], [-87.64139, 41.92702]]}, "type": "Feature", "properties": {"num_passengers": 7568}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64427, 41.93122], [-87.64419, 41.93107]]}, "type": "Feature", "properties": {"num_passengers": 7568}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64302, 41.92971], [-87.64288, 41.92961]]}, "type": "Feature", "properties": {"num_passengers": 7568}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64338, 41.92994], [-87.6432, 41.92983]]}, "type": "Feature", "properties": {"num_passengers": 7568}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64139, 41.92702], [-87.6406, 41.92569]]}, "type": "Feature", "properties": {"num_passengers": 7568}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64265, 41.92918], [-87.64258, 41.92904]]}, "type": "Feature", "properties": {"num_passengers": 7568}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6432, 41.92983], [-87.64302, 41.92971]]}, "type": "Feature", "properties": {"num_passengers": 7568}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68744, 41.91461], [-87.68741, 41.91446]]}, "type": "Feature", "properties": {"num_passengers": 7568}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64366, 41.93017], [-87.64352, 41.93003]]}, "type": "Feature", "properties": {"num_passengers": 7568}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64409, 41.93093], [-87.64401, 41.93078]]}, "type": "Feature", "properties": {"num_passengers": 7568}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6425, 41.92888], [-87.64245, 41.92876]]}, "type": "Feature", "properties": {"num_passengers": 7568}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64288, 41.92961], [-87.64281, 41.92947]]}, "type": "Feature", "properties": {"num_passengers": 7568}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64435, 41.93138], [-87.64427, 41.93122]]}, "type": "Feature", "properties": {"num_passengers": 7568}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64235, 41.92866], [-87.64145, 41.92714]]}, "type": "Feature", "properties": {"num_passengers": 7568}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64352, 41.93003], [-87.64338, 41.92994]]}, "type": "Feature", "properties": {"num_passengers": 7568}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64273, 41.92933], [-87.64265, 41.92918]]}, "type": "Feature", "properties": {"num_passengers": 7568}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6437, 41.93021], [-87.64366, 41.93017]]}, "type": "Feature", "properties": {"num_passengers": 7568}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64258, 41.92904], [-87.6425, 41.92888]]}, "type": "Feature", "properties": {"num_passengers": 7568}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64384, 41.93048], [-87.64378, 41.93035]]}, "type": "Feature", "properties": {"num_passengers": 7568}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64401, 41.93078], [-87.64392, 41.93062]]}, "type": "Feature", "properties": {"num_passengers": 7568}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64392, 41.93062], [-87.64384, 41.93048]]}, "type": "Feature", "properties": {"num_passengers": 7568}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64443, 41.93154], [-87.64435, 41.93138]]}, "type": "Feature", "properties": {"num_passengers": 7568}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64378, 41.93035], [-87.6437, 41.93021]]}, "type": "Feature", "properties": {"num_passengers": 7568}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64419, 41.93107], [-87.64409, 41.93093]]}, "type": "Feature", "properties": {"num_passengers": 7568}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68741, 41.91446], [-87.68741, 41.9143]]}, "type": "Feature", "properties": {"num_passengers": 7571}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62047, 41.71437], [-87.62044, 41.7141]]}, "type": "Feature", "properties": {"num_passengers": 7573}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67423, 41.93961], [-87.67402, 41.93961]]}, "type": "Feature", "properties": {"num_passengers": 7574}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68741, 41.9143], [-87.68739, 41.91414]]}, "type": "Feature", "properties": {"num_passengers": 7575}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62495, 41.90461], [-87.62492, 41.90435]]}, "type": "Feature", "properties": {"num_passengers": 7578}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58651, 41.78559], [-87.58651, 41.78576]]}, "type": "Feature", "properties": {"num_passengers": 7579}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6206, 41.70454], [-87.6206, 41.70428]]}, "type": "Feature", "properties": {"num_passengers": 7583}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62407, 41.8999], [-87.62409, 41.90005]]}, "type": "Feature", "properties": {"num_passengers": 7594}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62051, 41.7146], [-87.62047, 41.71437]]}, "type": "Feature", "properties": {"num_passengers": 7597}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58899, 41.80495], [-87.58891, 41.80477]]}, "type": "Feature", "properties": {"num_passengers": 7601}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67712, 41.89586], [-87.67653, 41.89588]]}, "type": "Feature", "properties": {"num_passengers": 7602}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67772, 41.89586], [-87.67723, 41.89587]]}, "type": "Feature", "properties": {"num_passengers": 7602}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67653, 41.89588], [-87.67593, 41.8959]]}, "type": "Feature", "properties": {"num_passengers": 7602}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67723, 41.89587], [-87.67712, 41.89586]]}, "type": "Feature", "properties": {"num_passengers": 7602}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67593, 41.8959], [-87.67537, 41.8959]]}, "type": "Feature", "properties": {"num_passengers": 7602}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67966, 41.89583], [-87.67953, 41.89583]]}, "type": "Feature", "properties": {"num_passengers": 7602}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68081, 41.89581], [-87.68024, 41.89581]]}, "type": "Feature", "properties": {"num_passengers": 7602}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67953, 41.89583], [-87.67899, 41.89584]]}, "type": "Feature", "properties": {"num_passengers": 7602}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67899, 41.89584], [-87.67834, 41.89585]]}, "type": "Feature", "properties": {"num_passengers": 7602}}, {"geometry": {"type": "LineString", "coordinates": [[-87.682, 41.89578], [-87.68147, 41.8958]]}, "type": "Feature", "properties": {"num_passengers": 7602}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67834, 41.89585], [-87.67772, 41.89586]]}, "type": "Feature", "properties": {"num_passengers": 7602}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68024, 41.89581], [-87.67966, 41.89583]]}, "type": "Feature", "properties": {"num_passengers": 7602}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68147, 41.8958], [-87.68081, 41.89581]]}, "type": "Feature", "properties": {"num_passengers": 7602}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62057, 41.7048], [-87.6206, 41.70454]]}, "type": "Feature", "properties": {"num_passengers": 7611}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62081, 41.69586], [-87.62081, 41.69607]]}, "type": "Feature", "properties": {"num_passengers": 7612}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62052, 41.71479], [-87.62051, 41.7146]]}, "type": "Feature", "properties": {"num_passengers": 7613}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64929, 41.97529], [-87.64934, 41.97547]]}, "type": "Feature", "properties": {"num_passengers": 7618}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58634, 41.75152], [-87.58662, 41.75153]]}, "type": "Feature", "properties": {"num_passengers": 7619}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63584, 41.92522], [-87.63591, 41.92541]]}, "type": "Feature", "properties": {"num_passengers": 7626}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62066, 41.71997], [-87.62066, 41.71984]]}, "type": "Feature", "properties": {"num_passengers": 7627}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62059, 41.71649], [-87.62059, 41.71649]]}, "type": "Feature", "properties": {"num_passengers": 7627}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62065, 41.7186], [-87.62063, 41.71856]]}, "type": "Feature", "properties": {"num_passengers": 7627}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6206, 41.71698], [-87.6206, 41.71678]]}, "type": "Feature", "properties": {"num_passengers": 7627}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6206, 41.71757], [-87.6206, 41.71738]]}, "type": "Feature", "properties": {"num_passengers": 7627}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62066, 41.71949], [-87.62065, 41.71929]]}, "type": "Feature", "properties": {"num_passengers": 7627}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6206, 41.71662], [-87.62059, 41.71649]]}, "type": "Feature", "properties": {"num_passengers": 7627}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62068, 41.72183], [-87.62065, 41.72168]]}, "type": "Feature", "properties": {"num_passengers": 7627}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62065, 41.72062], [-87.62065, 41.72047]]}, "type": "Feature", "properties": {"num_passengers": 7627}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62065, 41.72133], [-87.62065, 41.72116]]}, "type": "Feature", "properties": {"num_passengers": 7627}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62062, 41.71794], [-87.62062, 41.71777]]}, "type": "Feature", "properties": {"num_passengers": 7627}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62065, 41.7191], [-87.62065, 41.71892]]}, "type": "Feature", "properties": {"num_passengers": 7627}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6206, 41.71719], [-87.6206, 41.71698]]}, "type": "Feature", "properties": {"num_passengers": 7627}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62065, 41.72098], [-87.62065, 41.7208]]}, "type": "Feature", "properties": {"num_passengers": 7627}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62066, 41.71984], [-87.62066, 41.71967]]}, "type": "Feature", "properties": {"num_passengers": 7627}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62066, 41.7202], [-87.62066, 41.71997]]}, "type": "Feature", "properties": {"num_passengers": 7627}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62063, 41.71842], [-87.62062, 41.71825]]}, "type": "Feature", "properties": {"num_passengers": 7627}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62062, 41.71777], [-87.6206, 41.71757]]}, "type": "Feature", "properties": {"num_passengers": 7627}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62062, 41.71825], [-87.62062, 41.71808]]}, "type": "Feature", "properties": {"num_passengers": 7627}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62065, 41.72148], [-87.62065, 41.72133]]}, "type": "Feature", "properties": {"num_passengers": 7627}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62062, 41.71808], [-87.62062, 41.71794]]}, "type": "Feature", "properties": {"num_passengers": 7627}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62065, 41.71876], [-87.62065, 41.7186]]}, "type": "Feature", "properties": {"num_passengers": 7627}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62065, 41.72047], [-87.62066, 41.72031]]}, "type": "Feature", "properties": {"num_passengers": 7627}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62065, 41.71892], [-87.62065, 41.71876]]}, "type": "Feature", "properties": {"num_passengers": 7627}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62065, 41.71929], [-87.62065, 41.7191]]}, "type": "Feature", "properties": {"num_passengers": 7627}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62065, 41.7208], [-87.62065, 41.72062]]}, "type": "Feature", "properties": {"num_passengers": 7627}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62065, 41.72116], [-87.62065, 41.72098]]}, "type": "Feature", "properties": {"num_passengers": 7627}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62059, 41.71649], [-87.62054, 41.71626]]}, "type": "Feature", "properties": {"num_passengers": 7627}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62065, 41.72168], [-87.62065, 41.72148]]}, "type": "Feature", "properties": {"num_passengers": 7627}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62063, 41.71856], [-87.62063, 41.71842]]}, "type": "Feature", "properties": {"num_passengers": 7627}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62066, 41.71967], [-87.62066, 41.71949]]}, "type": "Feature", "properties": {"num_passengers": 7627}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62066, 41.72031], [-87.62066, 41.7202]]}, "type": "Feature", "properties": {"num_passengers": 7627}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6206, 41.71738], [-87.6206, 41.71719]]}, "type": "Feature", "properties": {"num_passengers": 7627}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6206, 41.71678], [-87.6206, 41.71662]]}, "type": "Feature", "properties": {"num_passengers": 7627}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62057, 41.71498], [-87.62052, 41.71479]]}, "type": "Feature", "properties": {"num_passengers": 7628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62749, 41.86641], [-87.62747, 41.86569]]}, "type": "Feature", "properties": {"num_passengers": 7628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62748, 41.86753], [-87.62748, 41.86726]]}, "type": "Feature", "properties": {"num_passengers": 7628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62748, 41.86763], [-87.62748, 41.86763]]}, "type": "Feature", "properties": {"num_passengers": 7628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62748, 41.86559], [-87.62747, 41.86515]]}, "type": "Feature", "properties": {"num_passengers": 7628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62747, 41.86569], [-87.62748, 41.86559]]}, "type": "Feature", "properties": {"num_passengers": 7628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62748, 41.86726], [-87.62749, 41.86689]]}, "type": "Feature", "properties": {"num_passengers": 7628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62749, 41.86689], [-87.62749, 41.86641]]}, "type": "Feature", "properties": {"num_passengers": 7628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62749, 41.86786], [-87.62748, 41.86763]]}, "type": "Feature", "properties": {"num_passengers": 7628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62748, 41.86763], [-87.62748, 41.86753]]}, "type": "Feature", "properties": {"num_passengers": 7628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62752, 41.86807], [-87.62749, 41.86786]]}, "type": "Feature", "properties": {"num_passengers": 7633}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68744, 41.91477], [-87.68744, 41.91461]]}, "type": "Feature", "properties": {"num_passengers": 7635}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62054, 41.70493], [-87.62057, 41.7048]]}, "type": "Feature", "properties": {"num_passengers": 7637}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62755, 41.86844], [-87.62752, 41.86807]]}, "type": "Feature", "properties": {"num_passengers": 7638}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6292, 41.87638], [-87.6292, 41.87652]]}, "type": "Feature", "properties": {"num_passengers": 7639}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62925, 41.8788], [-87.62926, 41.87899]]}, "type": "Feature", "properties": {"num_passengers": 7643}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62931, 41.88073], [-87.6293, 41.8809]]}, "type": "Feature", "properties": {"num_passengers": 7643}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62928, 41.87962], [-87.62928, 41.87975]]}, "type": "Feature", "properties": {"num_passengers": 7643}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62927, 41.87915], [-87.62928, 41.87934]]}, "type": "Feature", "properties": {"num_passengers": 7643}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62923, 41.8781], [-87.62925, 41.87832]]}, "type": "Feature", "properties": {"num_passengers": 7643}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62926, 41.87899], [-87.62927, 41.87915]]}, "type": "Feature", "properties": {"num_passengers": 7643}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62929, 41.87988], [-87.62929, 41.88003]]}, "type": "Feature", "properties": {"num_passengers": 7643}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62928, 41.87934], [-87.62928, 41.87949]]}, "type": "Feature", "properties": {"num_passengers": 7643}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6293, 41.88016], [-87.62931, 41.88033]]}, "type": "Feature", "properties": {"num_passengers": 7643}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62925, 41.87832], [-87.62925, 41.87845]]}, "type": "Feature", "properties": {"num_passengers": 7643}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62929, 41.88003], [-87.6293, 41.88016]]}, "type": "Feature", "properties": {"num_passengers": 7643}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62928, 41.87949], [-87.62928, 41.87962]]}, "type": "Feature", "properties": {"num_passengers": 7643}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62923, 41.87795], [-87.62923, 41.8781]]}, "type": "Feature", "properties": {"num_passengers": 7643}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62925, 41.87864], [-87.62925, 41.8788]]}, "type": "Feature", "properties": {"num_passengers": 7643}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62931, 41.88065], [-87.62931, 41.88073]]}, "type": "Feature", "properties": {"num_passengers": 7643}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62928, 41.87975], [-87.62929, 41.87988]]}, "type": "Feature", "properties": {"num_passengers": 7643}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6293, 41.8809], [-87.6293, 41.88094]]}, "type": "Feature", "properties": {"num_passengers": 7643}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62925, 41.87845], [-87.62925, 41.87864]]}, "type": "Feature", "properties": {"num_passengers": 7643}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62931, 41.88033], [-87.62931, 41.88051]]}, "type": "Feature", "properties": {"num_passengers": 7643}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62931, 41.88051], [-87.62931, 41.88065]]}, "type": "Feature", "properties": {"num_passengers": 7643}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62405, 41.89976], [-87.62407, 41.8999]]}, "type": "Feature", "properties": {"num_passengers": 7644}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65531, 41.98315], [-87.65531, 41.98298]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65527, 41.98183], [-87.65527, 41.98177]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65511, 41.97796], [-87.65509, 41.97789]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65527, 41.98213], [-87.65527, 41.98199]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58662, 41.75153], [-87.58681, 41.75153]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65514, 41.97933], [-87.65512, 41.97912]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65509, 41.97789], [-87.65507, 41.97791]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65514, 41.97965], [-87.65514, 41.9795]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65517, 41.97995], [-87.65517, 41.9798]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65512, 41.9789], [-87.65511, 41.97868]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65517, 41.98058], [-87.65517, 41.98033]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65527, 41.98199], [-87.65527, 41.98183]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65511, 41.97848], [-87.65511, 41.97833]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65507, 41.97791], [-87.65503, 41.97637]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65519, 41.98082], [-87.65517, 41.98058]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65528, 41.9823], [-87.65527, 41.98213]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65535, 41.98387], [-87.65535, 41.98371]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65517, 41.98011], [-87.65517, 41.97995]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65511, 41.97833], [-87.65511, 41.97814]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6553, 41.98261], [-87.6553, 41.98243]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65535, 41.9836], [-87.65535, 41.98346]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65517, 41.9798], [-87.65514, 41.97978]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65531, 41.98281], [-87.6553, 41.98261]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65527, 41.98177], [-87.65519, 41.98127]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65511, 41.97814], [-87.65511, 41.97796]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6553, 41.98243], [-87.65528, 41.9823]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65514, 41.97978], [-87.65514, 41.97965]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65511, 41.97868], [-87.65511, 41.97848]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65535, 41.98346], [-87.65533, 41.98332]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65514, 41.9795], [-87.65514, 41.97933]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65535, 41.98402], [-87.65535, 41.98387]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65531, 41.98298], [-87.65531, 41.98281]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65512, 41.97912], [-87.65512, 41.9789]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65535, 41.98371], [-87.65535, 41.9836]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65519, 41.98127], [-87.65519, 41.98107]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65533, 41.98332], [-87.65531, 41.98315]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65519, 41.98107], [-87.65519, 41.98082]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65517, 41.98033], [-87.65517, 41.98011]]}, "type": "Feature", "properties": {"num_passengers": 7653}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62038, 41.71367], [-87.62036, 41.71353]]}, "type": "Feature", "properties": {"num_passengers": 7658}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62922, 41.87721], [-87.62922, 41.87735]]}, "type": "Feature", "properties": {"num_passengers": 7664}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62922, 41.87735], [-87.62922, 41.87756]]}, "type": "Feature", "properties": {"num_passengers": 7664}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62922, 41.87773], [-87.62923, 41.87785]]}, "type": "Feature", "properties": {"num_passengers": 7664}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62922, 41.87756], [-87.62922, 41.87773]]}, "type": "Feature", "properties": {"num_passengers": 7664}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62923, 41.87785], [-87.62923, 41.87795]]}, "type": "Feature", "properties": {"num_passengers": 7664}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62574, 41.88212], [-87.62594, 41.88212]]}, "type": "Feature", "properties": {"num_passengers": 7667}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62052, 41.70511], [-87.62051, 41.70526]]}, "type": "Feature", "properties": {"num_passengers": 7671}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62444, 41.88661], [-87.62444, 41.88679]]}, "type": "Feature", "properties": {"num_passengers": 7672}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64625, 41.86711], [-87.64601, 41.86711]]}, "type": "Feature", "properties": {"num_passengers": 7677}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64552, 41.86713], [-87.64529, 41.86713]]}, "type": "Feature", "properties": {"num_passengers": 7677}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64575, 41.86712], [-87.64552, 41.86713]]}, "type": "Feature", "properties": {"num_passengers": 7677}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64601, 41.86711], [-87.64575, 41.86712]]}, "type": "Feature", "properties": {"num_passengers": 7677}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64529, 41.86713], [-87.64505, 41.86712]]}, "type": "Feature", "properties": {"num_passengers": 7677}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58621, 41.7772], [-87.58622, 41.77733]]}, "type": "Feature", "properties": {"num_passengers": 7678}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6292, 41.87652], [-87.6292, 41.87669]]}, "type": "Feature", "properties": {"num_passengers": 7686}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58681, 41.75153], [-87.5871, 41.75152]]}, "type": "Feature", "properties": {"num_passengers": 7687}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63584, 41.92463], [-87.63582, 41.92438]]}, "type": "Feature", "properties": {"num_passengers": 7688}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58651, 41.78576], [-87.58652, 41.78591]]}, "type": "Feature", "properties": {"num_passengers": 7689}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62922, 41.87706], [-87.62922, 41.87721]]}, "type": "Feature", "properties": {"num_passengers": 7689}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62404, 41.89961], [-87.62405, 41.89976]]}, "type": "Feature", "properties": {"num_passengers": 7694}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62498, 41.90487], [-87.62495, 41.90461]]}, "type": "Feature", "properties": {"num_passengers": 7699}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67402, 41.93961], [-87.67382, 41.93961]]}, "type": "Feature", "properties": {"num_passengers": 7701}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62054, 41.70519], [-87.62054, 41.70493]]}, "type": "Feature", "properties": {"num_passengers": 7703}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68744, 41.91495], [-87.68744, 41.91477]]}, "type": "Feature", "properties": {"num_passengers": 7703}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58826, 41.8034], [-87.58821, 41.80326]]}, "type": "Feature", "properties": {"num_passengers": 7705}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58821, 41.80326], [-87.58818, 41.8032]]}, "type": "Feature", "properties": {"num_passengers": 7705}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58833, 41.80355], [-87.58826, 41.8034]]}, "type": "Feature", "properties": {"num_passengers": 7705}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5871, 41.75152], [-87.58741, 41.75152]]}, "type": "Feature", "properties": {"num_passengers": 7709}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68744, 41.91516], [-87.68744, 41.91495]]}, "type": "Feature", "properties": {"num_passengers": 7713}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67442, 41.89599], [-87.67456, 41.89599]]}, "type": "Feature", "properties": {"num_passengers": 7714}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66961, 41.89604], [-87.67246, 41.89603]]}, "type": "Feature", "properties": {"num_passengers": 7714}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66953, 41.89607], [-87.66961, 41.89604]]}, "type": "Feature", "properties": {"num_passengers": 7714}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66818, 41.8961], [-87.66887, 41.89609]]}, "type": "Feature", "properties": {"num_passengers": 7714}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66887, 41.89609], [-87.66953, 41.89607]]}, "type": "Feature", "properties": {"num_passengers": 7714}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67258, 41.89603], [-87.67442, 41.89599]]}, "type": "Feature", "properties": {"num_passengers": 7714}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67246, 41.89603], [-87.67258, 41.89603]]}, "type": "Feature", "properties": {"num_passengers": 7714}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62922, 41.87685], [-87.62922, 41.87706]]}, "type": "Feature", "properties": {"num_passengers": 7715}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64223, 41.92855], [-87.64233, 41.92871]]}, "type": "Feature", "properties": {"num_passengers": 7718}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68757, 41.91837], [-87.68757, 41.91824]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68766, 41.9223], [-87.68766, 41.92213]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68752, 41.91663], [-87.68752, 41.91648]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68758, 41.91973], [-87.68758, 41.91953]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68753, 41.91722], [-87.68753, 41.91711]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64075, 41.77985], [-87.64075, 41.77985]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68745, 41.91535], [-87.68744, 41.91516]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68766, 41.92213], [-87.68764, 41.922]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68755, 41.92049], [-87.68755, 41.9203]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68771, 41.92318], [-87.68771, 41.92303]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68758, 41.91777], [-87.68757, 41.91776]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68752, 41.91632], [-87.68749, 41.91617]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68758, 41.92123], [-87.68757, 41.92103]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68757, 41.91824], [-87.68755, 41.91807]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68757, 41.92103], [-87.68757, 41.92084]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68758, 41.91933], [-87.68758, 41.91915]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68753, 41.91758], [-87.68749, 41.91739]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68749, 41.916], [-87.68749, 41.9159]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68755, 41.92068], [-87.68755, 41.92049]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68766, 41.92248], [-87.68766, 41.9223]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68745, 41.91554], [-87.68745, 41.91535]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68757, 41.92084], [-87.68755, 41.92068]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68758, 41.92013], [-87.68758, 41.9201]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68758, 41.91867], [-87.68758, 41.91853]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68766, 41.9218], [-87.68761, 41.92157]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68758, 41.91953], [-87.68758, 41.91933]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68744, 41.91575], [-87.68745, 41.91554]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68758, 41.91915], [-87.68758, 41.91897]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68758, 41.91792], [-87.68758, 41.91777]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68764, 41.922], [-87.68766, 41.92184]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68758, 41.9201], [-87.6876, 41.91993]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68749, 41.9159], [-87.68744, 41.91575]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68758, 41.91853], [-87.68757, 41.91837]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68749, 41.91739], [-87.68753, 41.91722]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68752, 41.91648], [-87.68752, 41.91632]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68758, 41.92142], [-87.68758, 41.92123]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68766, 41.92184], [-87.68766, 41.9218]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68771, 41.92303], [-87.68769, 41.92285]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68755, 41.9203], [-87.68758, 41.92013]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68758, 41.91882], [-87.68758, 41.91867]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68758, 41.91897], [-87.68758, 41.91882]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68755, 41.91807], [-87.68758, 41.91792]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6876, 41.91993], [-87.68758, 41.91973]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68752, 41.91678], [-87.68752, 41.91663]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68749, 41.91617], [-87.68749, 41.916]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68753, 41.91692], [-87.68752, 41.91678]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68768, 41.92267], [-87.68766, 41.92248]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68769, 41.92285], [-87.68768, 41.92267]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68761, 41.92157], [-87.68758, 41.92142]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68757, 41.91776], [-87.68753, 41.91758]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68753, 41.91711], [-87.68753, 41.91692]]}, "type": "Feature", "properties": {"num_passengers": 7722}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65519, 41.98495], [-87.65519, 41.98512]]}, "type": "Feature", "properties": {"num_passengers": 7723}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62404, 41.89935], [-87.62404, 41.89961]]}, "type": "Feature", "properties": {"num_passengers": 7730}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6358, 41.92504], [-87.63584, 41.92522]]}, "type": "Feature", "properties": {"num_passengers": 7731}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58741, 41.75152], [-87.58775, 41.75152]]}, "type": "Feature", "properties": {"num_passengers": 7731}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5884, 41.80373], [-87.58833, 41.80355]]}, "type": "Feature", "properties": {"num_passengers": 7731}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64435, 41.86714], [-87.64414, 41.86714]]}, "type": "Feature", "properties": {"num_passengers": 7741}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6292, 41.87669], [-87.62922, 41.87685]]}, "type": "Feature", "properties": {"num_passengers": 7742}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64505, 41.86712], [-87.64479, 41.86714]]}, "type": "Feature", "properties": {"num_passengers": 7750}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58846, 41.80386], [-87.5884, 41.80373]]}, "type": "Feature", "properties": {"num_passengers": 7756}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58398, 41.79841], [-87.58402, 41.79942]]}, "type": "Feature", "properties": {"num_passengers": 7759}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61989, 41.71035], [-87.6199, 41.71011]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62, 41.71116], [-87.61998, 41.71103]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62001, 41.70811], [-87.62004, 41.70798]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62016, 41.70749], [-87.62019, 41.70737]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62006, 41.71183], [-87.62001, 41.71157]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61993, 41.70864], [-87.61997, 41.70848]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62, 41.7083], [-87.62001, 41.70811]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6199, 41.70964], [-87.6199, 41.70944]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62041, 41.70604], [-87.62044, 41.70589]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62019, 41.70737], [-87.62025, 41.70719]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61995, 41.70916], [-87.61995, 41.70914]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6199, 41.70987], [-87.6199, 41.70964]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62009, 41.70766], [-87.62016, 41.70749]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62004, 41.70798], [-87.62006, 41.70782]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62014, 41.71207], [-87.62006, 41.71183]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62025, 41.71274], [-87.62024, 41.71259]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61989, 41.70912], [-87.6199, 41.70894]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62001, 41.71134], [-87.62, 41.71116]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6199, 41.70881], [-87.61993, 41.70864]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61993, 41.70929], [-87.61995, 41.70916]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62047, 41.70575], [-87.62049, 41.70561]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6202, 41.71244], [-87.6202, 41.71244]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62038, 41.70622], [-87.62041, 41.70604]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6199, 41.71076], [-87.61989, 41.71057]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62006, 41.70782], [-87.62009, 41.70766]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61989, 41.71057], [-87.61989, 41.71035]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6202, 41.71244], [-87.62019, 41.71227]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62028, 41.707], [-87.62028, 41.70685]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62044, 41.70589], [-87.62047, 41.70575]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62028, 41.7129], [-87.62025, 41.71274]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61997, 41.70848], [-87.62, 41.7083]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62025, 41.70719], [-87.62028, 41.707]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6199, 41.71011], [-87.6199, 41.70987]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6199, 41.70944], [-87.61993, 41.70929]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62049, 41.70561], [-87.62051, 41.70554]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6199, 41.70894], [-87.6199, 41.70881]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62032, 41.7067], [-87.62033, 41.70655]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62033, 41.70655], [-87.62036, 41.70638]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61998, 41.71103], [-87.6199, 41.71076]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62054, 41.70537], [-87.62054, 41.70519]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62019, 41.71227], [-87.62014, 41.71207]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62028, 41.70685], [-87.62032, 41.7067]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62036, 41.70638], [-87.62038, 41.70622]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62001, 41.71157], [-87.62001, 41.71134]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61995, 41.70914], [-87.61989, 41.70912]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62032, 41.71308], [-87.62028, 41.7129]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62024, 41.71259], [-87.6202, 41.71244]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62051, 41.70554], [-87.62054, 41.70537]]}, "type": "Feature", "properties": {"num_passengers": 7767}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67537, 41.8959], [-87.6748, 41.89591]]}, "type": "Feature", "properties": {"num_passengers": 7770}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64219, 41.92857], [-87.64223, 41.92855]]}, "type": "Feature", "properties": {"num_passengers": 7775}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62033, 41.71328], [-87.62032, 41.71308]]}, "type": "Feature", "properties": {"num_passengers": 7775}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67382, 41.93961], [-87.67358, 41.93961]]}, "type": "Feature", "properties": {"num_passengers": 7775}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62081, 41.69607], [-87.62081, 41.69622]]}, "type": "Feature", "properties": {"num_passengers": 7778}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62036, 41.71353], [-87.62033, 41.71328]]}, "type": "Feature", "properties": {"num_passengers": 7782}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64457, 41.86714], [-87.64435, 41.86714]]}, "type": "Feature", "properties": {"num_passengers": 7782}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62054, 41.70496], [-87.62052, 41.70511]]}, "type": "Feature", "properties": {"num_passengers": 7785}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62081, 41.69622], [-87.62081, 41.69641]]}, "type": "Feature", "properties": {"num_passengers": 7789}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58851, 41.80399], [-87.58846, 41.80386]]}, "type": "Feature", "properties": {"num_passengers": 7796}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62081, 41.69641], [-87.62082, 41.69652]]}, "type": "Feature", "properties": {"num_passengers": 7800}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63191, 41.77999], [-87.63201, 41.77999]]}, "type": "Feature", "properties": {"num_passengers": 7802}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58905, 41.80513], [-87.58899, 41.80495]]}, "type": "Feature", "properties": {"num_passengers": 7809}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63201, 41.77999], [-87.6334, 41.77996]]}, "type": "Feature", "properties": {"num_passengers": 7818}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63211, 41.86725], [-87.63069, 41.86729]]}, "type": "Feature", "properties": {"num_passengers": 7821}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58775, 41.75152], [-87.58807, 41.75152]]}, "type": "Feature", "properties": {"num_passengers": 7822}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64479, 41.86714], [-87.64457, 41.86714]]}, "type": "Feature", "properties": {"num_passengers": 7823}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64128, 41.92702], [-87.64219, 41.92857]]}, "type": "Feature", "properties": {"num_passengers": 7831}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62441, 41.88503], [-87.6244, 41.88536]]}, "type": "Feature", "properties": {"num_passengers": 7832}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6334, 41.77996], [-87.6334, 41.77996]]}, "type": "Feature", "properties": {"num_passengers": 7833}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58857, 41.80413], [-87.58851, 41.80399]]}, "type": "Feature", "properties": {"num_passengers": 7835}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58652, 41.78591], [-87.58652, 41.78605]]}, "type": "Feature", "properties": {"num_passengers": 7836}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63909, 41.77988], [-87.64075, 41.77985]]}, "type": "Feature", "properties": {"num_passengers": 7846}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66571, 41.93977], [-87.66546, 41.93976]]}, "type": "Feature", "properties": {"num_passengers": 7848}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67386, 41.93961], [-87.67127, 41.93964]]}, "type": "Feature", "properties": {"num_passengers": 7848}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66759, 41.93974], [-87.66736, 41.93974]]}, "type": "Feature", "properties": {"num_passengers": 7848}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66677, 41.93973], [-87.66655, 41.93973]]}, "type": "Feature", "properties": {"num_passengers": 7848}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67127, 41.93964], [-87.67112, 41.93963]]}, "type": "Feature", "properties": {"num_passengers": 7848}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66643, 41.93973], [-87.66612, 41.93975]]}, "type": "Feature", "properties": {"num_passengers": 7848}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66781, 41.93974], [-87.66759, 41.93974]]}, "type": "Feature", "properties": {"num_passengers": 7848}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66834, 41.93968], [-87.66781, 41.93974]]}, "type": "Feature", "properties": {"num_passengers": 7848}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67112, 41.93963], [-87.66834, 41.93968]]}, "type": "Feature", "properties": {"num_passengers": 7848}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66736, 41.93974], [-87.66716, 41.93974]]}, "type": "Feature", "properties": {"num_passengers": 7848}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66546, 41.93976], [-87.6652, 41.93977]]}, "type": "Feature", "properties": {"num_passengers": 7848}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67358, 41.93961], [-87.6735, 41.93961]]}, "type": "Feature", "properties": {"num_passengers": 7848}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66612, 41.93975], [-87.66595, 41.93976]]}, "type": "Feature", "properties": {"num_passengers": 7848}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66716, 41.93974], [-87.66695, 41.93973]]}, "type": "Feature", "properties": {"num_passengers": 7848}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66655, 41.93973], [-87.66643, 41.93973]]}, "type": "Feature", "properties": {"num_passengers": 7848}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66595, 41.93976], [-87.66571, 41.93977]]}, "type": "Feature", "properties": {"num_passengers": 7848}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6735, 41.93961], [-87.67386, 41.93961]]}, "type": "Feature", "properties": {"num_passengers": 7848}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66695, 41.93973], [-87.66677, 41.93973]]}, "type": "Feature", "properties": {"num_passengers": 7848}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62082, 41.69652], [-87.62084, 41.69667]]}, "type": "Feature", "properties": {"num_passengers": 7850}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64178, 41.94581], [-87.64187, 41.94595]]}, "type": "Feature", "properties": {"num_passengers": 7857}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62942, 41.8848], [-87.62946, 41.88611]]}, "type": "Feature", "properties": {"num_passengers": 7860}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58864, 41.80429], [-87.58857, 41.80413]]}, "type": "Feature", "properties": {"num_passengers": 7863}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76448, 41.9721], [-87.76462, 41.97226]]}, "type": "Feature", "properties": {"num_passengers": 7867}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76384, 41.9714], [-87.76399, 41.97156]]}, "type": "Feature", "properties": {"num_passengers": 7867}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76432, 41.97192], [-87.76448, 41.9721]]}, "type": "Feature", "properties": {"num_passengers": 7867}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76462, 41.97226], [-87.76476, 41.97243]]}, "type": "Feature", "properties": {"num_passengers": 7867}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76362, 41.97115], [-87.7637, 41.97126]]}, "type": "Feature", "properties": {"num_passengers": 7867}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76416, 41.97175], [-87.76432, 41.97192]]}, "type": "Feature", "properties": {"num_passengers": 7867}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76476, 41.97243], [-87.76492, 41.97259]]}, "type": "Feature", "properties": {"num_passengers": 7867}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76399, 41.97156], [-87.76416, 41.97175]]}, "type": "Feature", "properties": {"num_passengers": 7867}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7637, 41.97126], [-87.76384, 41.9714]]}, "type": "Feature", "properties": {"num_passengers": 7867}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63565, 41.92035], [-87.63564, 41.92026]]}, "type": "Feature", "properties": {"num_passengers": 7873}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63576, 41.92229], [-87.63576, 41.92215]]}, "type": "Feature", "properties": {"num_passengers": 7873}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63582, 41.92438], [-87.63582, 41.92416]]}, "type": "Feature", "properties": {"num_passengers": 7873}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63582, 41.92416], [-87.63582, 41.9239]]}, "type": "Feature", "properties": {"num_passengers": 7873}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63569, 41.92073], [-87.63567, 41.92049]]}, "type": "Feature", "properties": {"num_passengers": 7873}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63561, 41.92015], [-87.63554, 41.92002]]}, "type": "Feature", "properties": {"num_passengers": 7873}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63575, 41.9218], [-87.63575, 41.92165]]}, "type": "Feature", "properties": {"num_passengers": 7873}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63574, 41.92127], [-87.63572, 41.92107]]}, "type": "Feature", "properties": {"num_passengers": 7873}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63547, 41.9199], [-87.63537, 41.91974]]}, "type": "Feature", "properties": {"num_passengers": 7873}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63528, 41.91964], [-87.63513, 41.91951]]}, "type": "Feature", "properties": {"num_passengers": 7873}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63582, 41.9239], [-87.63582, 41.92367]]}, "type": "Feature", "properties": {"num_passengers": 7873}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6358, 41.92337], [-87.6358, 41.92313]]}, "type": "Feature", "properties": {"num_passengers": 7873}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63513, 41.91951], [-87.635, 41.91938]]}, "type": "Feature", "properties": {"num_passengers": 7873}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63571, 41.92088], [-87.63569, 41.92073]]}, "type": "Feature", "properties": {"num_passengers": 7873}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63582, 41.92367], [-87.6358, 41.92337]]}, "type": "Feature", "properties": {"num_passengers": 7873}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63578, 41.92251], [-87.63576, 41.92229]]}, "type": "Feature", "properties": {"num_passengers": 7873}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63554, 41.92002], [-87.63547, 41.9199]]}, "type": "Feature", "properties": {"num_passengers": 7873}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63567, 41.92049], [-87.63565, 41.92035]]}, "type": "Feature", "properties": {"num_passengers": 7873}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63564, 41.92026], [-87.63561, 41.92015]]}, "type": "Feature", "properties": {"num_passengers": 7873}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63577, 41.92207], [-87.63577, 41.92196]]}, "type": "Feature", "properties": {"num_passengers": 7873}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63572, 41.92107], [-87.63571, 41.92088]]}, "type": "Feature", "properties": {"num_passengers": 7873}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63574, 41.92145], [-87.63574, 41.92127]]}, "type": "Feature", "properties": {"num_passengers": 7873}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63576, 41.92215], [-87.63576, 41.92215]]}, "type": "Feature", "properties": {"num_passengers": 7873}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63577, 41.92196], [-87.63575, 41.9218]]}, "type": "Feature", "properties": {"num_passengers": 7873}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6358, 41.92313], [-87.6358, 41.92284]]}, "type": "Feature", "properties": {"num_passengers": 7873}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6358, 41.92284], [-87.63578, 41.92251]]}, "type": "Feature", "properties": {"num_passengers": 7873}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63576, 41.92215], [-87.63577, 41.92207]]}, "type": "Feature", "properties": {"num_passengers": 7873}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63575, 41.92165], [-87.63574, 41.92145]]}, "type": "Feature", "properties": {"num_passengers": 7873}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63537, 41.91974], [-87.63528, 41.91964]]}, "type": "Feature", "properties": {"num_passengers": 7873}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66102, 41.93983], [-87.66081, 41.93985]]}, "type": "Feature", "properties": {"num_passengers": 7876}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65841, 41.93987], [-87.65816, 41.93987]]}, "type": "Feature", "properties": {"num_passengers": 7876}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66296, 41.93981], [-87.66277, 41.93981]]}, "type": "Feature", "properties": {"num_passengers": 7876}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66215, 41.93983], [-87.66194, 41.93983]]}, "type": "Feature", "properties": {"num_passengers": 7876}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65891, 41.93984], [-87.65862, 41.93987]]}, "type": "Feature", "properties": {"num_passengers": 7876}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65678, 41.93989], [-87.65663, 41.93989]]}, "type": "Feature", "properties": {"num_passengers": 7876}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66358, 41.93977], [-87.66336, 41.93981]]}, "type": "Feature", "properties": {"num_passengers": 7876}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66258, 41.93983], [-87.66236, 41.93983]]}, "type": "Feature", "properties": {"num_passengers": 7876}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65768, 41.93989], [-87.65743, 41.93989]]}, "type": "Feature", "properties": {"num_passengers": 7876}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65792, 41.93989], [-87.65768, 41.93989]]}, "type": "Feature", "properties": {"num_passengers": 7876}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65719, 41.93991], [-87.657, 41.93989]]}, "type": "Feature", "properties": {"num_passengers": 7876}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66059, 41.93985], [-87.66032, 41.93985]]}, "type": "Feature", "properties": {"num_passengers": 7876}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66194, 41.93983], [-87.66174, 41.93983]]}, "type": "Feature", "properties": {"num_passengers": 7876}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66123, 41.93981], [-87.66102, 41.93983]]}, "type": "Feature", "properties": {"num_passengers": 7876}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65919, 41.93981], [-87.65913, 41.93981]]}, "type": "Feature", "properties": {"num_passengers": 7876}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66336, 41.93981], [-87.66314, 41.93981]]}, "type": "Feature", "properties": {"num_passengers": 7876}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65816, 41.93987], [-87.65792, 41.93989]]}, "type": "Feature", "properties": {"num_passengers": 7876}}, {"geometry": {"type": "LineString", "coordinates": [[-87.657, 41.93989], [-87.65678, 41.93989]]}, "type": "Feature", "properties": {"num_passengers": 7876}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65862, 41.93987], [-87.65841, 41.93987]]}, "type": "Feature", "properties": {"num_passengers": 7876}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66236, 41.93983], [-87.66215, 41.93983]]}, "type": "Feature", "properties": {"num_passengers": 7876}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6615, 41.93983], [-87.66129, 41.93981]]}, "type": "Feature", "properties": {"num_passengers": 7876}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65663, 41.93989], [-87.6566, 41.93985]]}, "type": "Feature", "properties": {"num_passengers": 7876}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66032, 41.93985], [-87.66005, 41.93985]]}, "type": "Feature", "properties": {"num_passengers": 7876}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65743, 41.93989], [-87.65719, 41.93991]]}, "type": "Feature", "properties": {"num_passengers": 7876}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6598, 41.93985], [-87.65957, 41.93984]]}, "type": "Feature", "properties": {"num_passengers": 7876}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66314, 41.93981], [-87.66296, 41.93981]]}, "type": "Feature", "properties": {"num_passengers": 7876}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66005, 41.93985], [-87.6598, 41.93985]]}, "type": "Feature", "properties": {"num_passengers": 7876}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65957, 41.93984], [-87.65938, 41.93983]]}, "type": "Feature", "properties": {"num_passengers": 7876}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66377, 41.93975], [-87.66358, 41.93977]]}, "type": "Feature", "properties": {"num_passengers": 7876}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65938, 41.93983], [-87.65919, 41.93981]]}, "type": "Feature", "properties": {"num_passengers": 7876}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66129, 41.93981], [-87.66123, 41.93981]]}, "type": "Feature", "properties": {"num_passengers": 7876}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66174, 41.93983], [-87.6615, 41.93983]]}, "type": "Feature", "properties": {"num_passengers": 7876}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65913, 41.93981], [-87.65891, 41.93984]]}, "type": "Feature", "properties": {"num_passengers": 7876}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66277, 41.93981], [-87.66258, 41.93983]]}, "type": "Feature", "properties": {"num_passengers": 7876}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66081, 41.93985], [-87.66059, 41.93985]]}, "type": "Feature", "properties": {"num_passengers": 7876}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76492, 41.97259], [-87.76505, 41.97273]]}, "type": "Feature", "properties": {"num_passengers": 7885}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58666, 41.79104], [-87.58666, 41.79132]]}, "type": "Feature", "properties": {"num_passengers": 7898}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58651, 41.787], [-87.58651, 41.7872]]}, "type": "Feature", "properties": {"num_passengers": 7898}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58662, 41.78925], [-87.58662, 41.78959]]}, "type": "Feature", "properties": {"num_passengers": 7898}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58662, 41.78968], [-87.58663, 41.79006]]}, "type": "Feature", "properties": {"num_passengers": 7898}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58651, 41.7874], [-87.58652, 41.78758]]}, "type": "Feature", "properties": {"num_passengers": 7898}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58651, 41.7872], [-87.58651, 41.7874]]}, "type": "Feature", "properties": {"num_passengers": 7898}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5866, 41.7885], [-87.58661, 41.78887]]}, "type": "Feature", "properties": {"num_passengers": 7898}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58664, 41.79044], [-87.58665, 41.79072]]}, "type": "Feature", "properties": {"num_passengers": 7898}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58665, 41.79072], [-87.58666, 41.79104]]}, "type": "Feature", "properties": {"num_passengers": 7898}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5866, 41.78814], [-87.5866, 41.7885]]}, "type": "Feature", "properties": {"num_passengers": 7898}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58654, 41.78792], [-87.58654, 41.78796]]}, "type": "Feature", "properties": {"num_passengers": 7898}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58662, 41.78959], [-87.58662, 41.78968]]}, "type": "Feature", "properties": {"num_passengers": 7898}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58663, 41.79006], [-87.58664, 41.79044]]}, "type": "Feature", "properties": {"num_passengers": 7898}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58649, 41.78638], [-87.58649, 41.78657]]}, "type": "Feature", "properties": {"num_passengers": 7898}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58654, 41.78775], [-87.58654, 41.78792]]}, "type": "Feature", "properties": {"num_passengers": 7898}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58649, 41.78678], [-87.58651, 41.787]]}, "type": "Feature", "properties": {"num_passengers": 7898}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58652, 41.78758], [-87.58654, 41.78775]]}, "type": "Feature", "properties": {"num_passengers": 7898}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58654, 41.78796], [-87.5866, 41.78814]]}, "type": "Feature", "properties": {"num_passengers": 7898}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58661, 41.78887], [-87.58662, 41.78925]]}, "type": "Feature", "properties": {"num_passengers": 7898}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58649, 41.78657], [-87.58649, 41.78678]]}, "type": "Feature", "properties": {"num_passengers": 7898}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62078, 41.70214], [-87.62076, 41.70231]]}, "type": "Feature", "properties": {"num_passengers": 7900}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62079, 41.70198], [-87.62078, 41.70214]]}, "type": "Feature", "properties": {"num_passengers": 7900}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62076, 41.70163], [-87.62079, 41.70178]]}, "type": "Feature", "properties": {"num_passengers": 7900}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62084, 41.6978], [-87.62084, 41.69791]]}, "type": "Feature", "properties": {"num_passengers": 7900}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62087, 41.69684], [-87.62087, 41.69705]]}, "type": "Feature", "properties": {"num_passengers": 7900}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62087, 41.69764], [-87.62084, 41.6978]]}, "type": "Feature", "properties": {"num_passengers": 7900}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62065, 41.70332], [-87.62065, 41.70344]]}, "type": "Feature", "properties": {"num_passengers": 7900}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6206, 41.70415], [-87.62057, 41.7043]]}, "type": "Feature", "properties": {"num_passengers": 7900}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62057, 41.70477], [-87.62054, 41.70496]]}, "type": "Feature", "properties": {"num_passengers": 7900}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6207, 41.70317], [-87.62065, 41.70332]]}, "type": "Feature", "properties": {"num_passengers": 7900}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62063, 41.70359], [-87.62062, 41.7038]]}, "type": "Feature", "properties": {"num_passengers": 7900}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62087, 41.69725], [-87.62089, 41.69745]]}, "type": "Feature", "properties": {"num_passengers": 7900}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62057, 41.7043], [-87.62057, 41.70445]]}, "type": "Feature", "properties": {"num_passengers": 7900}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62071, 41.70297], [-87.6207, 41.70317]]}, "type": "Feature", "properties": {"num_passengers": 7900}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6206, 41.70398], [-87.6206, 41.70415]]}, "type": "Feature", "properties": {"num_passengers": 7900}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62065, 41.70344], [-87.62063, 41.70359]]}, "type": "Feature", "properties": {"num_passengers": 7900}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62089, 41.69745], [-87.62087, 41.69764]]}, "type": "Feature", "properties": {"num_passengers": 7900}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62084, 41.69791], [-87.62084, 41.69811]]}, "type": "Feature", "properties": {"num_passengers": 7900}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62084, 41.69667], [-87.62087, 41.69684]]}, "type": "Feature", "properties": {"num_passengers": 7900}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62076, 41.70247], [-87.62074, 41.70265]]}, "type": "Feature", "properties": {"num_passengers": 7900}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62084, 41.69811], [-87.6209, 41.69972]]}, "type": "Feature", "properties": {"num_passengers": 7900}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62057, 41.70461], [-87.62057, 41.70477]]}, "type": "Feature", "properties": {"num_passengers": 7900}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6209, 41.69988], [-87.6209, 41.70011]]}, "type": "Feature", "properties": {"num_passengers": 7900}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62076, 41.70231], [-87.62076, 41.70247]]}, "type": "Feature", "properties": {"num_passengers": 7900}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62062, 41.7038], [-87.6206, 41.70398]]}, "type": "Feature", "properties": {"num_passengers": 7900}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62087, 41.69705], [-87.62087, 41.69725]]}, "type": "Feature", "properties": {"num_passengers": 7900}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62074, 41.70265], [-87.62073, 41.70282]]}, "type": "Feature", "properties": {"num_passengers": 7900}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62057, 41.70445], [-87.62057, 41.70461]]}, "type": "Feature", "properties": {"num_passengers": 7900}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62079, 41.70178], [-87.62079, 41.70198]]}, "type": "Feature", "properties": {"num_passengers": 7900}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62073, 41.70282], [-87.62071, 41.70297]]}, "type": "Feature", "properties": {"num_passengers": 7900}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6209, 41.70011], [-87.62076, 41.70163]]}, "type": "Feature", "properties": {"num_passengers": 7900}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6209, 41.69972], [-87.6209, 41.69988]]}, "type": "Feature", "properties": {"num_passengers": 7900}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76505, 41.97273], [-87.76513, 41.97282]]}, "type": "Feature", "properties": {"num_passengers": 7901}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65555, 41.99406], [-87.65555, 41.99387]]}, "type": "Feature", "properties": {"num_passengers": 7902}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6244, 41.88536], [-87.62441, 41.88569]]}, "type": "Feature", "properties": {"num_passengers": 7907}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58807, 41.75152], [-87.58835, 41.75149]]}, "type": "Feature", "properties": {"num_passengers": 7913}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6334, 41.77996], [-87.6335, 41.77996]]}, "type": "Feature", "properties": {"num_passengers": 7920}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58649, 41.7862], [-87.58649, 41.78638]]}, "type": "Feature", "properties": {"num_passengers": 7922}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6652, 41.93977], [-87.66498, 41.93977]]}, "type": "Feature", "properties": {"num_passengers": 7924}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62417, 41.87624], [-87.62418, 41.8764]]}, "type": "Feature", "properties": {"num_passengers": 7925}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62559, 41.89674], [-87.62611, 41.89674]]}, "type": "Feature", "properties": {"num_passengers": 7926}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6748, 41.89591], [-87.67466, 41.89591]]}, "type": "Feature", "properties": {"num_passengers": 7938}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58648, 41.78605], [-87.58649, 41.7862]]}, "type": "Feature", "properties": {"num_passengers": 7945}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62779, 41.86749], [-87.62793, 41.86748]]}, "type": "Feature", "properties": {"num_passengers": 7951}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63222, 41.87842], [-87.63223, 41.87869]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63228, 41.88042], [-87.63228, 41.88059]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63227, 41.87985], [-87.63227, 41.88004]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63235, 41.88478], [-87.63234, 41.88496]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6323, 41.88104], [-87.6323, 41.88123]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63235, 41.88345], [-87.63236, 41.88364]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63232, 41.8824], [-87.63233, 41.8826]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63232, 41.88221], [-87.63232, 41.8824]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63236, 41.88381], [-87.63236, 41.88395]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63236, 41.88364], [-87.63236, 41.88381]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6323, 41.88205], [-87.63232, 41.88221]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63267, 41.8781], [-87.6322, 41.87811]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63227, 41.88022], [-87.63228, 41.88042]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63235, 41.8828], [-87.63236, 41.883]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6322, 41.87811], [-87.63222, 41.87842]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63225, 41.87951], [-87.63226, 41.87967]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63231, 41.8819], [-87.6323, 41.88205]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63228, 41.88059], [-87.63229, 41.88082]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63224, 41.87932], [-87.63225, 41.87951]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6323, 41.88142], [-87.6323, 41.88157]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6323, 41.88123], [-87.6323, 41.88142]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63237, 41.88441], [-87.63237, 41.88461]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63234, 41.88326], [-87.63235, 41.88345]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63237, 41.88427], [-87.63237, 41.88441]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63236, 41.88411], [-87.63237, 41.88427]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63236, 41.883], [-87.63234, 41.88326]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6323, 41.88157], [-87.63231, 41.88171]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63223, 41.87869], [-87.63223, 41.87879]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63236, 41.88395], [-87.63236, 41.88411]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63226, 41.87967], [-87.63227, 41.87985]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63223, 41.87879], [-87.63223, 41.87895]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63231, 41.8818], [-87.63231, 41.8819]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63229, 41.88082], [-87.6323, 41.88104]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63224, 41.87916], [-87.63224, 41.87932]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63223, 41.87895], [-87.63224, 41.87916]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63231, 41.88171], [-87.63231, 41.8818]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63237, 41.88461], [-87.63235, 41.88478]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63227, 41.88004], [-87.63227, 41.88022]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63233, 41.8826], [-87.63235, 41.8828]]}, "type": "Feature", "properties": {"num_passengers": 7955}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66761, 41.89611], [-87.66818, 41.8961]]}, "type": "Feature", "properties": {"num_passengers": 7956}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64233, 41.92871], [-87.64241, 41.92885]]}, "type": "Feature", "properties": {"num_passengers": 7957}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63939, 41.93424], [-87.63938, 41.93413]]}, "type": "Feature", "properties": {"num_passengers": 7961}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58523, 41.80242], [-87.58537, 41.80256]]}, "type": "Feature", "properties": {"num_passengers": 7961}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58398, 41.79493], [-87.58394, 41.79356]]}, "type": "Feature", "properties": {"num_passengers": 7962}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58835, 41.75149], [-87.58854, 41.7515]]}, "type": "Feature", "properties": {"num_passengers": 7963}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63578, 41.92488], [-87.6358, 41.92504]]}, "type": "Feature", "properties": {"num_passengers": 7964}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58652, 41.78606], [-87.58648, 41.78605]]}, "type": "Feature", "properties": {"num_passengers": 7964}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65503, 41.97637], [-87.65483, 41.97637]]}, "type": "Feature", "properties": {"num_passengers": 7965}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62445, 41.88666], [-87.62445, 41.88666]]}, "type": "Feature", "properties": {"num_passengers": 7966}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6373, 41.77991], [-87.63738, 41.77991]]}, "type": "Feature", "properties": {"num_passengers": 7968}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63738, 41.77991], [-87.63895, 41.77988]]}, "type": "Feature", "properties": {"num_passengers": 7970}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63895, 41.77988], [-87.63909, 41.77988]]}, "type": "Feature", "properties": {"num_passengers": 7971}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62441, 41.88569], [-87.62444, 41.88603]]}, "type": "Feature", "properties": {"num_passengers": 7981}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58652, 41.78605], [-87.58652, 41.78606]]}, "type": "Feature", "properties": {"num_passengers": 7983}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66396, 41.93974], [-87.66377, 41.93975]]}, "type": "Feature", "properties": {"num_passengers": 7983}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63495, 41.77994], [-87.6373, 41.77991]]}, "type": "Feature", "properties": {"num_passengers": 7988}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62444, 41.88603], [-87.62446, 41.8864]]}, "type": "Feature", "properties": {"num_passengers": 7991}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65514, 41.98339], [-87.65514, 41.98354]]}, "type": "Feature", "properties": {"num_passengers": 7992}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65517, 41.98413], [-87.65517, 41.98431]]}, "type": "Feature", "properties": {"num_passengers": 7992}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65513, 41.98285], [-87.65513, 41.98301]]}, "type": "Feature", "properties": {"num_passengers": 7992}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65517, 41.98466], [-87.65518, 41.9848]]}, "type": "Feature", "properties": {"num_passengers": 7992}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65517, 41.98431], [-87.65517, 41.98451]]}, "type": "Feature", "properties": {"num_passengers": 7992}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65512, 41.98257], [-87.65512, 41.98271]]}, "type": "Feature", "properties": {"num_passengers": 7992}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65511, 41.98213], [-87.65511, 41.98227]]}, "type": "Feature", "properties": {"num_passengers": 7992}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6551, 41.98186], [-87.65511, 41.982]]}, "type": "Feature", "properties": {"num_passengers": 7992}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65511, 41.98242], [-87.65512, 41.98257]]}, "type": "Feature", "properties": {"num_passengers": 7992}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65514, 41.98354], [-87.65514, 41.98363]]}, "type": "Feature", "properties": {"num_passengers": 7992}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65513, 41.98319], [-87.65514, 41.98339]]}, "type": "Feature", "properties": {"num_passengers": 7992}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65509, 41.9802], [-87.6551, 41.98167]]}, "type": "Feature", "properties": {"num_passengers": 7992}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65514, 41.98363], [-87.65515, 41.98381]]}, "type": "Feature", "properties": {"num_passengers": 7992}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65517, 41.98451], [-87.65517, 41.98466]]}, "type": "Feature", "properties": {"num_passengers": 7992}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65516, 41.98398], [-87.65517, 41.98413]]}, "type": "Feature", "properties": {"num_passengers": 7992}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65511, 41.98227], [-87.65511, 41.98242]]}, "type": "Feature", "properties": {"num_passengers": 7992}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65515, 41.98381], [-87.65516, 41.98398]]}, "type": "Feature", "properties": {"num_passengers": 7992}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65513, 41.98301], [-87.65513, 41.98319]]}, "type": "Feature", "properties": {"num_passengers": 7992}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65518, 41.9848], [-87.65519, 41.98495]]}, "type": "Feature", "properties": {"num_passengers": 7992}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6551, 41.98167], [-87.6551, 41.98186]]}, "type": "Feature", "properties": {"num_passengers": 7992}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65512, 41.98271], [-87.65513, 41.98285]]}, "type": "Feature", "properties": {"num_passengers": 7992}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65511, 41.982], [-87.65511, 41.98213]]}, "type": "Feature", "properties": {"num_passengers": 7992}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62446, 41.8864], [-87.62445, 41.88666]]}, "type": "Feature", "properties": {"num_passengers": 8000}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66498, 41.93977], [-87.66474, 41.93977]]}, "type": "Feature", "properties": {"num_passengers": 8001}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6335, 41.77996], [-87.63485, 41.77994]]}, "type": "Feature", "properties": {"num_passengers": 8007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63485, 41.77994], [-87.63495, 41.77994]]}, "type": "Feature", "properties": {"num_passengers": 8007}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59198, 41.75146], [-87.59217, 41.75146]]}, "type": "Feature", "properties": {"num_passengers": 8013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59217, 41.75146], [-87.59239, 41.75146]]}, "type": "Feature", "properties": {"num_passengers": 8013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59032, 41.75147], [-87.5905, 41.75147]]}, "type": "Feature", "properties": {"num_passengers": 8013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58884, 41.75149], [-87.58913, 41.75147]]}, "type": "Feature", "properties": {"num_passengers": 8013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58865, 41.75152], [-87.58884, 41.75149]]}, "type": "Feature", "properties": {"num_passengers": 8013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59263, 41.75146], [-87.59283, 41.75146]]}, "type": "Feature", "properties": {"num_passengers": 8013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5907, 41.75147], [-87.5907, 41.75147]]}, "type": "Feature", "properties": {"num_passengers": 8013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59404, 41.75142], [-87.59425, 41.75143]]}, "type": "Feature", "properties": {"num_passengers": 8013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59116, 41.75147], [-87.59136, 41.75146]]}, "type": "Feature", "properties": {"num_passengers": 8013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59136, 41.75146], [-87.59159, 41.75146]]}, "type": "Feature", "properties": {"num_passengers": 8013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59358, 41.75143], [-87.59383, 41.75142]]}, "type": "Feature", "properties": {"num_passengers": 8013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59293, 41.75146], [-87.59315, 41.75145]]}, "type": "Feature", "properties": {"num_passengers": 8013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59447, 41.75144], [-87.59469, 41.75144]]}, "type": "Feature", "properties": {"num_passengers": 8013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59283, 41.75146], [-87.59293, 41.75146]]}, "type": "Feature", "properties": {"num_passengers": 8013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58986, 41.75145], [-87.59012, 41.75146]]}, "type": "Feature", "properties": {"num_passengers": 8013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58913, 41.75147], [-87.58937, 41.75146]]}, "type": "Feature", "properties": {"num_passengers": 8013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59172, 41.75146], [-87.59198, 41.75146]]}, "type": "Feature", "properties": {"num_passengers": 8013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59469, 41.75144], [-87.59488, 41.75144]]}, "type": "Feature", "properties": {"num_passengers": 8013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58962, 41.75145], [-87.58986, 41.75145]]}, "type": "Feature", "properties": {"num_passengers": 8013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59315, 41.75145], [-87.59336, 41.75144]]}, "type": "Feature", "properties": {"num_passengers": 8013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59336, 41.75144], [-87.59358, 41.75143]]}, "type": "Feature", "properties": {"num_passengers": 8013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59012, 41.75146], [-87.59032, 41.75147]]}, "type": "Feature", "properties": {"num_passengers": 8013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58854, 41.7515], [-87.58865, 41.75152]]}, "type": "Feature", "properties": {"num_passengers": 8013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59425, 41.75143], [-87.59447, 41.75144]]}, "type": "Feature", "properties": {"num_passengers": 8013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59383, 41.75142], [-87.59404, 41.75142]]}, "type": "Feature", "properties": {"num_passengers": 8013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5907, 41.75147], [-87.59096, 41.75147]]}, "type": "Feature", "properties": {"num_passengers": 8013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59239, 41.75146], [-87.59263, 41.75146]]}, "type": "Feature", "properties": {"num_passengers": 8013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59096, 41.75147], [-87.59116, 41.75147]]}, "type": "Feature", "properties": {"num_passengers": 8013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59159, 41.75146], [-87.59172, 41.75146]]}, "type": "Feature", "properties": {"num_passengers": 8013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5905, 41.75147], [-87.5907, 41.75147]]}, "type": "Feature", "properties": {"num_passengers": 8013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58937, 41.75146], [-87.58962, 41.75145]]}, "type": "Feature", "properties": {"num_passengers": 8013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58934, 41.80588], [-87.58929, 41.80561]]}, "type": "Feature", "properties": {"num_passengers": 8018}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58942, 41.80602], [-87.58934, 41.80588]]}, "type": "Feature", "properties": {"num_passengers": 8018}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58916, 41.80531], [-87.58905, 41.80513]]}, "type": "Feature", "properties": {"num_passengers": 8018}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58959, 41.80631], [-87.5895, 41.80616]]}, "type": "Feature", "properties": {"num_passengers": 8018}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58921, 41.80547], [-87.58916, 41.80531]]}, "type": "Feature", "properties": {"num_passengers": 8018}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58977, 41.80666], [-87.58967, 41.8065]]}, "type": "Feature", "properties": {"num_passengers": 8018}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59031, 41.80747], [-87.59018, 41.8073]]}, "type": "Feature", "properties": {"num_passengers": 8018}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58967, 41.8065], [-87.58959, 41.80631]]}, "type": "Feature", "properties": {"num_passengers": 8018}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59056, 41.80775], [-87.59043, 41.80762]]}, "type": "Feature", "properties": {"num_passengers": 8018}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59043, 41.80762], [-87.59031, 41.80747]]}, "type": "Feature", "properties": {"num_passengers": 8018}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5905, 41.80772], [-87.59056, 41.80775]]}, "type": "Feature", "properties": {"num_passengers": 8018}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58997, 41.80697], [-87.58986, 41.80682]]}, "type": "Feature", "properties": {"num_passengers": 8018}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5895, 41.80616], [-87.58942, 41.80602]]}, "type": "Feature", "properties": {"num_passengers": 8018}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58934, 41.80588], [-87.58934, 41.80588]]}, "type": "Feature", "properties": {"num_passengers": 8018}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58929, 41.80561], [-87.58921, 41.80547]]}, "type": "Feature", "properties": {"num_passengers": 8018}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59018, 41.8073], [-87.59007, 41.80713]]}, "type": "Feature", "properties": {"num_passengers": 8018}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58986, 41.80682], [-87.58977, 41.80666]]}, "type": "Feature", "properties": {"num_passengers": 8018}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59007, 41.80713], [-87.58997, 41.80697]]}, "type": "Feature", "properties": {"num_passengers": 8018}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62802, 41.88671], [-87.62803, 41.88656]]}, "type": "Feature", "properties": {"num_passengers": 8026}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62661, 41.88733], [-87.6268, 41.88728]]}, "type": "Feature", "properties": {"num_passengers": 8026}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6273, 41.88708], [-87.62751, 41.887]]}, "type": "Feature", "properties": {"num_passengers": 8026}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62801, 41.88619], [-87.62801, 41.88603]]}, "type": "Feature", "properties": {"num_passengers": 8026}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62645, 41.88742], [-87.62661, 41.88733]]}, "type": "Feature", "properties": {"num_passengers": 8026}}, {"geometry": {"type": "LineString", "coordinates": [[-87.628, 41.88589], [-87.628, 41.88588]]}, "type": "Feature", "properties": {"num_passengers": 8026}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62801, 41.88637], [-87.62801, 41.88619]]}, "type": "Feature", "properties": {"num_passengers": 8026}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6268, 41.88728], [-87.62694, 41.88722]]}, "type": "Feature", "properties": {"num_passengers": 8026}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65576, 41.75056], [-87.65641, 41.75052]]}, "type": "Feature", "properties": {"num_passengers": 8026}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62791, 41.88683], [-87.62802, 41.88671]]}, "type": "Feature", "properties": {"num_passengers": 8026}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6271, 41.88715], [-87.6273, 41.88708]]}, "type": "Feature", "properties": {"num_passengers": 8026}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62801, 41.88603], [-87.628, 41.88589]]}, "type": "Feature", "properties": {"num_passengers": 8026}}, {"geometry": {"type": "LineString", "coordinates": [[-87.628, 41.88588], [-87.62802, 41.88581]]}, "type": "Feature", "properties": {"num_passengers": 8026}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62751, 41.887], [-87.62791, 41.88683]]}, "type": "Feature", "properties": {"num_passengers": 8026}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62632, 41.88749], [-87.62645, 41.88742]]}, "type": "Feature", "properties": {"num_passengers": 8026}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62694, 41.88722], [-87.6271, 41.88715]]}, "type": "Feature", "properties": {"num_passengers": 8026}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62803, 41.88656], [-87.62801, 41.88637]]}, "type": "Feature", "properties": {"num_passengers": 8026}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64119, 41.92686], [-87.64128, 41.92702]]}, "type": "Feature", "properties": {"num_passengers": 8030}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63235, 41.8966], [-87.63208, 41.8966]]}, "type": "Feature", "properties": {"num_passengers": 8031}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62498, 41.90501], [-87.62498, 41.90487]]}, "type": "Feature", "properties": {"num_passengers": 8033}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63969, 41.94176], [-87.63975, 41.94196]]}, "type": "Feature", "properties": {"num_passengers": 8050}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63954, 41.94121], [-87.63955, 41.94135]]}, "type": "Feature", "properties": {"num_passengers": 8050}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66474, 41.93977], [-87.66455, 41.93977]]}, "type": "Feature", "properties": {"num_passengers": 8050}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63955, 41.94135], [-87.63961, 41.94156]]}, "type": "Feature", "properties": {"num_passengers": 8050}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63983, 41.94217], [-87.63993, 41.94236]]}, "type": "Feature", "properties": {"num_passengers": 8050}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63993, 41.94236], [-87.63998, 41.94246]]}, "type": "Feature", "properties": {"num_passengers": 8050}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63954, 41.94075], [-87.63954, 41.94091]]}, "type": "Feature", "properties": {"num_passengers": 8050}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63961, 41.94156], [-87.63969, 41.94176]]}, "type": "Feature", "properties": {"num_passengers": 8050}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63993, 41.94236], [-87.63993, 41.94236]]}, "type": "Feature", "properties": {"num_passengers": 8050}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63952, 41.94058], [-87.63954, 41.94075]]}, "type": "Feature", "properties": {"num_passengers": 8050}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63954, 41.94105], [-87.63954, 41.94121]]}, "type": "Feature", "properties": {"num_passengers": 8050}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63954, 41.94091], [-87.63954, 41.94105]]}, "type": "Feature", "properties": {"num_passengers": 8050}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63975, 41.94196], [-87.63983, 41.94217]]}, "type": "Feature", "properties": {"num_passengers": 8050}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63952, 41.94042], [-87.63952, 41.94058]]}, "type": "Feature", "properties": {"num_passengers": 8050}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62414, 41.9038], [-87.62422, 41.90397]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62377, 41.90196], [-87.62373, 41.90213]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6319, 41.93292], [-87.63191, 41.93312]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62532, 41.90791], [-87.62537, 41.90813]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62516, 41.90723], [-87.62522, 41.90746]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62594, 41.91201], [-87.626, 41.91223]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62479, 41.9059], [-87.62486, 41.90612]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62665, 41.9138], [-87.62675, 41.91401]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62466, 41.90546], [-87.62473, 41.90567]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62579, 41.91088], [-87.6258, 41.91111]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6246, 41.90524], [-87.62466, 41.90546]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.632, 41.93374], [-87.63205, 41.93394]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63448, 41.93734], [-87.63469, 41.93749]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62906, 41.91909], [-87.62913, 41.91932]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62943, 41.92047], [-87.62948, 41.9207]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63194, 41.93333], [-87.63197, 41.93353]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63193, 41.93119], [-87.63193, 41.93142]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63191, 41.93208], [-87.6319, 41.9323]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62486, 41.90612], [-87.62492, 41.90633]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63254, 41.93519], [-87.63265, 41.93539]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62396, 41.90345], [-87.62405, 41.90363]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62388, 41.90329], [-87.62396, 41.90345]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.90102], [-87.62396, 41.90123]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63177, 41.92812], [-87.63181, 41.92834]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63292, 41.93578], [-87.63306, 41.93597]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63077, 41.9249], [-87.63084, 41.92513]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62567, 41.90925], [-87.6257, 41.90948]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62369, 41.90265], [-87.62371, 41.90281]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62848, 41.91749], [-87.62857, 41.91771]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62511, 41.90701], [-87.62516, 41.90723]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62444, 41.90453], [-87.62451, 41.90474]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62809, 41.91663], [-87.62817, 41.91682]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62913, 41.91932], [-87.6292, 41.91954]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62404, 41.89844], [-87.62405, 41.89862]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6332, 41.93615], [-87.63335, 41.93633]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62643, 41.91339], [-87.62654, 41.91359]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62396, 41.90123], [-87.62389, 41.9015]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62408, 41.89938], [-87.62406, 41.8999]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62875, 41.91817], [-87.62883, 41.9184]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63143, 41.92702], [-87.6315, 41.92724]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63194, 41.93052], [-87.63194, 41.93074]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63171, 41.9279], [-87.63177, 41.92812]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62576, 41.91018], [-87.62577, 41.91041]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63062, 41.92446], [-87.63069, 41.92468]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62579, 41.91064], [-87.62579, 41.91088]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62573, 41.90971], [-87.62575, 41.90994]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63306, 41.93597], [-87.6332, 41.93615]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6302, 41.92313], [-87.63027, 41.92335]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6257, 41.90948], [-87.62573, 41.90971]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62932, 41.92001], [-87.62937, 41.92024]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62528, 41.90768], [-87.62532, 41.90791]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63408, 41.93702], [-87.63428, 41.93718]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62948, 41.9207], [-87.62953, 41.92093]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63194, 41.93074], [-87.63194, 41.93097]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62937, 41.92024], [-87.62943, 41.92047]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62953, 41.92093], [-87.62959, 41.92116]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62899, 41.91885], [-87.62906, 41.91909]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62498, 41.90656], [-87.62505, 41.90678]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62612, 41.91278], [-87.62622, 41.91298]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6237, 41.9023], [-87.62368, 41.90247]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63191, 41.93312], [-87.63194, 41.93333]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62404, 41.89828], [-87.62404, 41.89844]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63469, 41.93749], [-87.6349, 41.93763]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62505, 41.90678], [-87.62511, 41.90701]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62633, 41.91318], [-87.62643, 41.91339]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62577, 41.91041], [-87.62579, 41.91064]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63265, 41.93539], [-87.63278, 41.93559]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62622, 41.91298], [-87.62633, 41.91318]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62368, 41.90247], [-87.62369, 41.90265]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63335, 41.93633], [-87.63352, 41.9365]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63233, 41.93477], [-87.63243, 41.93498]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62406, 41.89877], [-87.62405, 41.89892]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63197, 41.93353], [-87.632, 41.93374]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.626, 41.91223], [-87.62608, 41.91244]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62969, 41.92159], [-87.62977, 41.92181]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62407, 41.90069], [-87.62406, 41.90086]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62399, 41.89799], [-87.62403, 41.8981]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62742, 41.91531], [-87.62753, 41.91553]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63084, 41.92513], [-87.63091, 41.92534]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63027, 41.92335], [-87.63033, 41.92357]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63191, 41.92899], [-87.63193, 41.92921]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62464, 41.90514], [-87.6246, 41.90524]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62787, 41.91618], [-87.62798, 41.9164]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63123, 41.92638], [-87.63129, 41.92659]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62866, 41.91794], [-87.62875, 41.91817]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63013, 41.92291], [-87.6302, 41.92313]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63388, 41.93685], [-87.63408, 41.93702]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63193, 41.92921], [-87.63194, 41.92943]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62999, 41.92248], [-87.63006, 41.9227]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62406, 41.8999], [-87.62408, 41.90008]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62817, 41.91682], [-87.62828, 41.91705]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62984, 41.92204], [-87.62991, 41.92226]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62959, 41.92116], [-87.62962, 41.92136]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63006, 41.9227], [-87.63013, 41.92291]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63136, 41.92681], [-87.63143, 41.92702]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62457, 41.90493], [-87.62464, 41.90514]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63194, 41.92988], [-87.63194, 41.93007]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62798, 41.9164], [-87.62809, 41.91663]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62582, 41.91134], [-87.62585, 41.91156]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62405, 41.89892], [-87.62405, 41.89907]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62408, 41.90008], [-87.62409, 41.90031]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62405, 41.89907], [-87.62406, 41.89923]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63048, 41.92401], [-87.63055, 41.92423]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6272, 41.91488], [-87.6273, 41.91509]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62537, 41.90813], [-87.62543, 41.90836]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63194, 41.93029], [-87.63194, 41.93052]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62408, 41.90053], [-87.62407, 41.90069]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63194, 41.93097], [-87.63193, 41.93119]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62585, 41.91156], [-87.62589, 41.91179]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6273, 41.91509], [-87.62742, 41.91531]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62437, 41.90434], [-87.62444, 41.90453]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6292, 41.91954], [-87.62926, 41.91978]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63205, 41.93394], [-87.6321, 41.93416]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6319, 41.93272], [-87.6319, 41.93292]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62386, 41.90164], [-87.62381, 41.9018]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6255, 41.90857], [-87.62557, 41.90879]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63181, 41.92834], [-87.63186, 41.92855]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62708, 41.91466], [-87.6272, 41.91488]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62891, 41.91862], [-87.62899, 41.91885]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62563, 41.90902], [-87.62567, 41.90925]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62543, 41.90836], [-87.6255, 41.90857]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62473, 41.90567], [-87.62479, 41.9059]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62406, 41.89923], [-87.62408, 41.89938]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62775, 41.91597], [-87.62787, 41.91618]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62557, 41.90879], [-87.62563, 41.90902]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63069, 41.92468], [-87.63077, 41.9249]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62675, 41.91401], [-87.62686, 41.91423]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62522, 41.90746], [-87.62528, 41.90768]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6258, 41.91111], [-87.62582, 41.91134]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6238, 41.90313], [-87.62388, 41.90329]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63352, 41.9365], [-87.63369, 41.93668]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6315, 41.92724], [-87.63157, 41.92746]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6304, 41.92379], [-87.63048, 41.92401]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63091, 41.92534], [-87.63098, 41.92556]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62451, 41.90474], [-87.62457, 41.90493]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62686, 41.91423], [-87.62698, 41.91444]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62698, 41.91444], [-87.62708, 41.91466]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62654, 41.91359], [-87.62665, 41.9138]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62381, 41.9018], [-87.62377, 41.90196]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63157, 41.92746], [-87.63164, 41.92768]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62828, 41.91705], [-87.62838, 41.91727]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6321, 41.93416], [-87.63216, 41.93435]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62422, 41.90397], [-87.6243, 41.90415]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62389, 41.9015], [-87.62386, 41.90164]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62765, 41.91575], [-87.62775, 41.91597]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63192, 41.93164], [-87.63191, 41.93186]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63164, 41.92768], [-87.63171, 41.9279]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63103, 41.92575], [-87.6311, 41.92596]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62371, 41.90281], [-87.62375, 41.90297]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63278, 41.93559], [-87.63292, 41.93578]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63055, 41.92423], [-87.63062, 41.92446]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63194, 41.92943], [-87.63194, 41.92965]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63189, 41.92877], [-87.63191, 41.92899]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6319, 41.93251], [-87.6319, 41.93272]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62962, 41.92136], [-87.62969, 41.92159]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62608, 41.91244], [-87.62601, 41.91257]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63194, 41.93007], [-87.63194, 41.93029]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63193, 41.93142], [-87.63192, 41.93164]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6311, 41.92596], [-87.63116, 41.92617]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62991, 41.92226], [-87.62999, 41.92248]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63216, 41.93435], [-87.63224, 41.93456]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62403, 41.8981], [-87.62404, 41.89828]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63098, 41.92556], [-87.63103, 41.92575]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62857, 41.91771], [-87.62866, 41.91794]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63033, 41.92357], [-87.6304, 41.92379]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63428, 41.93718], [-87.63448, 41.93734]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62575, 41.90994], [-87.62576, 41.91018]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62838, 41.91727], [-87.62848, 41.91749]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62373, 41.90213], [-87.6237, 41.9023]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63191, 41.93186], [-87.63191, 41.93208]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62753, 41.91553], [-87.62765, 41.91575]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63186, 41.92855], [-87.63189, 41.92877]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62405, 41.90363], [-87.62414, 41.9038]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63194, 41.92965], [-87.63194, 41.92988]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63369, 41.93668], [-87.63388, 41.93685]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62375, 41.90297], [-87.6238, 41.90313]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63224, 41.93456], [-87.63233, 41.93477]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62601, 41.91257], [-87.62612, 41.91278]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62977, 41.92181], [-87.62984, 41.92204]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62883, 41.9184], [-87.62891, 41.91862]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62492, 41.90633], [-87.62498, 41.90656]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63243, 41.93498], [-87.63254, 41.93519]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62405, 41.89862], [-87.62406, 41.89877]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6243, 41.90415], [-87.62437, 41.90434]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62926, 41.91978], [-87.62932, 41.92001]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62589, 41.91179], [-87.62594, 41.91201]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63116, 41.92617], [-87.63123, 41.92638]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62406, 41.90086], [-87.62402, 41.90102]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62409, 41.90031], [-87.62408, 41.90053]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6319, 41.9323], [-87.6319, 41.93251]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63129, 41.92659], [-87.63136, 41.92681]]}, "type": "Feature", "properties": {"num_passengers": 8059}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62079, 41.89682], [-87.62101, 41.89682]]}, "type": "Feature", "properties": {"num_passengers": 8060}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62041, 41.71621], [-87.62041, 41.71637]]}, "type": "Feature", "properties": {"num_passengers": 8060}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62793, 41.86748], [-87.6293, 41.86747]]}, "type": "Feature", "properties": {"num_passengers": 8072}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62739, 41.86955], [-87.62741, 41.86976]]}, "type": "Feature", "properties": {"num_passengers": 8081}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62741, 41.86976], [-87.62741, 41.86995]]}, "type": "Feature", "properties": {"num_passengers": 8081}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6274, 41.86934], [-87.62739, 41.86955]]}, "type": "Feature", "properties": {"num_passengers": 8081}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62741, 41.87016], [-87.62743, 41.87037]]}, "type": "Feature", "properties": {"num_passengers": 8081}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62741, 41.86995], [-87.62741, 41.87016]]}, "type": "Feature", "properties": {"num_passengers": 8081}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6274, 41.8692], [-87.6274, 41.86934]]}, "type": "Feature", "properties": {"num_passengers": 8081}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6641, 41.93974], [-87.66396, 41.93974]]}, "type": "Feature", "properties": {"num_passengers": 8090}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64926, 41.97512], [-87.64929, 41.97529]]}, "type": "Feature", "properties": {"num_passengers": 8094}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6643, 41.93975], [-87.6641, 41.93974]]}, "type": "Feature", "properties": {"num_passengers": 8095}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62494, 41.90527], [-87.62484, 41.90416]]}, "type": "Feature", "properties": {"num_passengers": 8097}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67466, 41.89591], [-87.67397, 41.89592]]}, "type": "Feature", "properties": {"num_passengers": 8098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66455, 41.93977], [-87.6643, 41.93975]]}, "type": "Feature", "properties": {"num_passengers": 8100}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63079, 41.89988], [-87.63099, 41.89987]]}, "type": "Feature", "properties": {"num_passengers": 8135}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62947, 41.88802], [-87.62947, 41.88828]]}, "type": "Feature", "properties": {"num_passengers": 8138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6557, 41.75056], [-87.65576, 41.75056]]}, "type": "Feature", "properties": {"num_passengers": 8141}}, {"geometry": {"type": "LineString", "coordinates": [[-87.635, 41.91938], [-87.63487, 41.91928]]}, "type": "Feature", "properties": {"num_passengers": 8155}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63226, 41.86725], [-87.63211, 41.86725]]}, "type": "Feature", "properties": {"num_passengers": 8161}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64414, 41.86714], [-87.64394, 41.86714]]}, "type": "Feature", "properties": {"num_passengers": 8171}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59488, 41.75144], [-87.59514, 41.75144]]}, "type": "Feature", "properties": {"num_passengers": 8179}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6293, 41.86747], [-87.63076, 41.86744]]}, "type": "Feature", "properties": {"num_passengers": 8194}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6357, 41.92265], [-87.63572, 41.92283]]}, "type": "Feature", "properties": {"num_passengers": 8196}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63574, 41.92342], [-87.63574, 41.92359]]}, "type": "Feature", "properties": {"num_passengers": 8196}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63571, 41.92247], [-87.6357, 41.92265]]}, "type": "Feature", "properties": {"num_passengers": 8196}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63573, 41.92324], [-87.63574, 41.92342]]}, "type": "Feature", "properties": {"num_passengers": 8196}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63576, 41.92433], [-87.63576, 41.92452]]}, "type": "Feature", "properties": {"num_passengers": 8196}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63565, 41.92144], [-87.63567, 41.92167]]}, "type": "Feature", "properties": {"num_passengers": 8196}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63565, 41.92124], [-87.63565, 41.92144]]}, "type": "Feature", "properties": {"num_passengers": 8196}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63574, 41.92396], [-87.63575, 41.92415]]}, "type": "Feature", "properties": {"num_passengers": 8196}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63564, 41.92099], [-87.63565, 41.92124]]}, "type": "Feature", "properties": {"num_passengers": 8196}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63532, 41.91981], [-87.6354, 41.91991]]}, "type": "Feature", "properties": {"num_passengers": 8196}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6354, 41.91991], [-87.63545, 41.92001]]}, "type": "Feature", "properties": {"num_passengers": 8196}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6355, 41.92011], [-87.63554, 41.9202]]}, "type": "Feature", "properties": {"num_passengers": 8196}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63571, 41.92305], [-87.63573, 41.92324]]}, "type": "Feature", "properties": {"num_passengers": 8196}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63545, 41.92001], [-87.6355, 41.92011]]}, "type": "Feature", "properties": {"num_passengers": 8196}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63568, 41.92197], [-87.63569, 41.92213]]}, "type": "Feature", "properties": {"num_passengers": 8196}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63574, 41.92379], [-87.63574, 41.92396]]}, "type": "Feature", "properties": {"num_passengers": 8196}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63563, 41.92082], [-87.63564, 41.92099]]}, "type": "Feature", "properties": {"num_passengers": 8196}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63572, 41.92283], [-87.63571, 41.92305]]}, "type": "Feature", "properties": {"num_passengers": 8196}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63562, 41.92065], [-87.63563, 41.92082]]}, "type": "Feature", "properties": {"num_passengers": 8196}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63568, 41.92186], [-87.63568, 41.92186]]}, "type": "Feature", "properties": {"num_passengers": 8196}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63569, 41.92228], [-87.63571, 41.92247]]}, "type": "Feature", "properties": {"num_passengers": 8196}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63568, 41.92186], [-87.63568, 41.92197]]}, "type": "Feature", "properties": {"num_passengers": 8196}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63575, 41.92415], [-87.63576, 41.92433]]}, "type": "Feature", "properties": {"num_passengers": 8196}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63554, 41.9202], [-87.63559, 41.92049]]}, "type": "Feature", "properties": {"num_passengers": 8196}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63576, 41.92452], [-87.63576, 41.9247]]}, "type": "Feature", "properties": {"num_passengers": 8196}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63559, 41.92049], [-87.63562, 41.92065]]}, "type": "Feature", "properties": {"num_passengers": 8196}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63574, 41.92359], [-87.63574, 41.92379]]}, "type": "Feature", "properties": {"num_passengers": 8196}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63569, 41.92213], [-87.63569, 41.92228]]}, "type": "Feature", "properties": {"num_passengers": 8196}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63524, 41.91971], [-87.63532, 41.91981]]}, "type": "Feature", "properties": {"num_passengers": 8196}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63576, 41.9247], [-87.63578, 41.92488]]}, "type": "Feature", "properties": {"num_passengers": 8196}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63567, 41.92167], [-87.63568, 41.92186]]}, "type": "Feature", "properties": {"num_passengers": 8196}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64241, 41.92885], [-87.64249, 41.92898]]}, "type": "Feature", "properties": {"num_passengers": 8196}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66714, 41.89612], [-87.66761, 41.89611]]}, "type": "Feature", "properties": {"num_passengers": 8198}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63076, 41.86744], [-87.63091, 41.86744]]}, "type": "Feature", "properties": {"num_passengers": 8204}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63091, 41.86744], [-87.63313, 41.86742]]}, "type": "Feature", "properties": {"num_passengers": 8213}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63313, 41.86742], [-87.63227, 41.86741]]}, "type": "Feature", "properties": {"num_passengers": 8213}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64709, 41.84708], [-87.647, 41.84708]]}, "type": "Feature", "properties": {"num_passengers": 8215}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6474, 41.84691], [-87.64726, 41.84698]]}, "type": "Feature", "properties": {"num_passengers": 8215}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64726, 41.84698], [-87.64709, 41.84708]]}, "type": "Feature", "properties": {"num_passengers": 8215}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6478, 41.84672], [-87.64761, 41.84684]]}, "type": "Feature", "properties": {"num_passengers": 8215}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64761, 41.84684], [-87.6474, 41.84691]]}, "type": "Feature", "properties": {"num_passengers": 8215}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64249, 41.92898], [-87.64254, 41.92912]]}, "type": "Feature", "properties": {"num_passengers": 8226}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64037, 41.9255], [-87.64119, 41.92686]]}, "type": "Feature", "properties": {"num_passengers": 8228}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62415, 41.87519], [-87.62415, 41.87536]]}, "type": "Feature", "properties": {"num_passengers": 8248}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63262, 41.89659], [-87.63235, 41.8966]]}, "type": "Feature", "properties": {"num_passengers": 8250}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65537, 41.98831], [-87.65537, 41.98812]]}, "type": "Feature", "properties": {"num_passengers": 8251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65546, 41.99142], [-87.65546, 41.99127]]}, "type": "Feature", "properties": {"num_passengers": 8251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65548, 41.99193], [-87.65548, 41.99173]]}, "type": "Feature", "properties": {"num_passengers": 8251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65541, 41.98994], [-87.65541, 41.98987]]}, "type": "Feature", "properties": {"num_passengers": 8251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6555, 41.99267], [-87.65549, 41.99252]]}, "type": "Feature", "properties": {"num_passengers": 8251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65548, 41.99212], [-87.65548, 41.99193]]}, "type": "Feature", "properties": {"num_passengers": 8251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65541, 41.98987], [-87.65541, 41.98971]]}, "type": "Feature", "properties": {"num_passengers": 8251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65537, 41.9885], [-87.65537, 41.98831]]}, "type": "Feature", "properties": {"num_passengers": 8251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65537, 41.98871], [-87.65537, 41.9885]]}, "type": "Feature", "properties": {"num_passengers": 8251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65555, 41.99387], [-87.65554, 41.99369]]}, "type": "Feature", "properties": {"num_passengers": 8251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65552, 41.99319], [-87.65552, 41.993]]}, "type": "Feature", "properties": {"num_passengers": 8251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65554, 41.99369], [-87.65552, 41.99353]]}, "type": "Feature", "properties": {"num_passengers": 8251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65548, 41.99159], [-87.65546, 41.99142]]}, "type": "Feature", "properties": {"num_passengers": 8251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65549, 41.99252], [-87.65549, 41.99234]]}, "type": "Feature", "properties": {"num_passengers": 8251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65544, 41.99094], [-87.65544, 41.9908]]}, "type": "Feature", "properties": {"num_passengers": 8251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6554, 41.98933], [-87.65538, 41.98913]]}, "type": "Feature", "properties": {"num_passengers": 8251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65544, 41.99045], [-87.65543, 41.99026]]}, "type": "Feature", "properties": {"num_passengers": 8251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65544, 41.9906], [-87.65544, 41.99045]]}, "type": "Feature", "properties": {"num_passengers": 8251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65548, 41.99173], [-87.65548, 41.99159]]}, "type": "Feature", "properties": {"num_passengers": 8251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65541, 41.98971], [-87.6554, 41.98954]]}, "type": "Feature", "properties": {"num_passengers": 8251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65552, 41.99353], [-87.65552, 41.99336]]}, "type": "Feature", "properties": {"num_passengers": 8251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65535, 41.98774], [-87.65534, 41.98749]]}, "type": "Feature", "properties": {"num_passengers": 8251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65552, 41.99336], [-87.65552, 41.99319]]}, "type": "Feature", "properties": {"num_passengers": 8251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65549, 41.99234], [-87.65549, 41.99218]]}, "type": "Feature", "properties": {"num_passengers": 8251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65537, 41.98812], [-87.65536, 41.98793]]}, "type": "Feature", "properties": {"num_passengers": 8251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65543, 41.99026], [-87.65543, 41.9901]]}, "type": "Feature", "properties": {"num_passengers": 8251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65546, 41.99127], [-87.65545, 41.99112]]}, "type": "Feature", "properties": {"num_passengers": 8251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65539, 41.98891], [-87.65537, 41.98871]]}, "type": "Feature", "properties": {"num_passengers": 8251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6554, 41.98954], [-87.6554, 41.98933]]}, "type": "Feature", "properties": {"num_passengers": 8251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65545, 41.99112], [-87.65544, 41.99094]]}, "type": "Feature", "properties": {"num_passengers": 8251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65549, 41.99218], [-87.65548, 41.99212]]}, "type": "Feature", "properties": {"num_passengers": 8251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6555, 41.99286], [-87.6555, 41.99267]]}, "type": "Feature", "properties": {"num_passengers": 8251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65536, 41.98793], [-87.65535, 41.98774]]}, "type": "Feature", "properties": {"num_passengers": 8251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65543, 41.9901], [-87.65541, 41.98994]]}, "type": "Feature", "properties": {"num_passengers": 8251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65538, 41.98913], [-87.65539, 41.98891]]}, "type": "Feature", "properties": {"num_passengers": 8251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65552, 41.993], [-87.6555, 41.99286]]}, "type": "Feature", "properties": {"num_passengers": 8251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65544, 41.9908], [-87.65544, 41.9906]]}, "type": "Feature", "properties": {"num_passengers": 8251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6417, 41.94565], [-87.64178, 41.94581]]}, "type": "Feature", "properties": {"num_passengers": 8255}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64343, 41.92995], [-87.64354, 41.93013]]}, "type": "Feature", "properties": {"num_passengers": 8256}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64265, 41.92932], [-87.64277, 41.92944]]}, "type": "Feature", "properties": {"num_passengers": 8256}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64384, 41.93069], [-87.64392, 41.93083]]}, "type": "Feature", "properties": {"num_passengers": 8256}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64417, 41.93125], [-87.64425, 41.93141]]}, "type": "Feature", "properties": {"num_passengers": 8256}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64328, 41.92979], [-87.64343, 41.92995]]}, "type": "Feature", "properties": {"num_passengers": 8256}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64362, 41.93027], [-87.64368, 41.93041]]}, "type": "Feature", "properties": {"num_passengers": 8256}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64368, 41.93041], [-87.64376, 41.93055]]}, "type": "Feature", "properties": {"num_passengers": 8256}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64392, 41.93083], [-87.64401, 41.93097]]}, "type": "Feature", "properties": {"num_passengers": 8256}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64401, 41.93097], [-87.64409, 41.93111]]}, "type": "Feature", "properties": {"num_passengers": 8256}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64312, 41.92966], [-87.64328, 41.92979]]}, "type": "Feature", "properties": {"num_passengers": 8256}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65551, 41.75056], [-87.6557, 41.75056]]}, "type": "Feature", "properties": {"num_passengers": 8256}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64376, 41.93055], [-87.64384, 41.93069]]}, "type": "Feature", "properties": {"num_passengers": 8256}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64425, 41.93141], [-87.64432, 41.93156]]}, "type": "Feature", "properties": {"num_passengers": 8256}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64295, 41.92955], [-87.64312, 41.92966]]}, "type": "Feature", "properties": {"num_passengers": 8256}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64254, 41.92912], [-87.64262, 41.92926]]}, "type": "Feature", "properties": {"num_passengers": 8256}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64409, 41.93111], [-87.64417, 41.93125]]}, "type": "Feature", "properties": {"num_passengers": 8256}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64432, 41.93156], [-87.64438, 41.93168]]}, "type": "Feature", "properties": {"num_passengers": 8256}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64277, 41.92944], [-87.64295, 41.92955]]}, "type": "Feature", "properties": {"num_passengers": 8256}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64354, 41.93013], [-87.64362, 41.93027]]}, "type": "Feature", "properties": {"num_passengers": 8256}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64262, 41.92926], [-87.64265, 41.92932]]}, "type": "Feature", "properties": {"num_passengers": 8256}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67397, 41.89592], [-87.67326, 41.89593]]}, "type": "Feature", "properties": {"num_passengers": 8258}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63099, 41.89987], [-87.63118, 41.89986]]}, "type": "Feature", "properties": {"num_passengers": 8265}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65483, 41.97637], [-87.65466, 41.97638]]}, "type": "Feature", "properties": {"num_passengers": 8278}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62594, 41.88212], [-87.62604, 41.8821]]}, "type": "Feature", "properties": {"num_passengers": 8290}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58668, 41.78961], [-87.58668, 41.78947]]}, "type": "Feature", "properties": {"num_passengers": 8308}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58667, 41.7901], [-87.58667, 41.7899]]}, "type": "Feature", "properties": {"num_passengers": 8308}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58667, 41.78582], [-87.58667, 41.78563]]}, "type": "Feature", "properties": {"num_passengers": 8308}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58667, 41.78611], [-87.58667, 41.78595]]}, "type": "Feature", "properties": {"num_passengers": 8308}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58671, 41.78786], [-87.5867, 41.78772]]}, "type": "Feature", "properties": {"num_passengers": 8308}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58668, 41.78691], [-87.58668, 41.78669]]}, "type": "Feature", "properties": {"num_passengers": 8308}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58663, 41.78899], [-87.5866, 41.78883]]}, "type": "Feature", "properties": {"num_passengers": 8308}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5867, 41.79088], [-87.58668, 41.79067]]}, "type": "Feature", "properties": {"num_passengers": 8308}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58665, 41.78548], [-87.58665, 41.78528]]}, "type": "Feature", "properties": {"num_passengers": 8308}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58667, 41.78627], [-87.58667, 41.78611]]}, "type": "Feature", "properties": {"num_passengers": 8308}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58659, 41.78816], [-87.5866, 41.78801]]}, "type": "Feature", "properties": {"num_passengers": 8308}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5866, 41.78867], [-87.5866, 41.7885]]}, "type": "Feature", "properties": {"num_passengers": 8308}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5866, 41.78883], [-87.5866, 41.78867]]}, "type": "Feature", "properties": {"num_passengers": 8308}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58667, 41.7899], [-87.58667, 41.78974]]}, "type": "Feature", "properties": {"num_passengers": 8308}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5866, 41.78801], [-87.58659, 41.78788]]}, "type": "Feature", "properties": {"num_passengers": 8308}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58668, 41.78947], [-87.58668, 41.78932]]}, "type": "Feature", "properties": {"num_passengers": 8308}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58668, 41.79067], [-87.58668, 41.7905]]}, "type": "Feature", "properties": {"num_passengers": 8308}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58668, 41.7903], [-87.58667, 41.7901]]}, "type": "Feature", "properties": {"num_passengers": 8308}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58665, 41.78528], [-87.58665, 41.78507]]}, "type": "Feature", "properties": {"num_passengers": 8308}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58668, 41.78932], [-87.58668, 41.78932]]}, "type": "Feature", "properties": {"num_passengers": 8308}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58668, 41.78932], [-87.58667, 41.78916]]}, "type": "Feature", "properties": {"num_passengers": 8308}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58667, 41.78916], [-87.58663, 41.78899]]}, "type": "Feature", "properties": {"num_passengers": 8308}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58659, 41.78832], [-87.58659, 41.78816]]}, "type": "Feature", "properties": {"num_passengers": 8308}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58668, 41.78669], [-87.58668, 41.78647]]}, "type": "Feature", "properties": {"num_passengers": 8308}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5867, 41.78736], [-87.58668, 41.78714]]}, "type": "Feature", "properties": {"num_passengers": 8308}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5867, 41.78756], [-87.5867, 41.78736]]}, "type": "Feature", "properties": {"num_passengers": 8308}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58667, 41.78595], [-87.58667, 41.78582]]}, "type": "Feature", "properties": {"num_passengers": 8308}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58668, 41.7905], [-87.58668, 41.7903]]}, "type": "Feature", "properties": {"num_passengers": 8308}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58659, 41.78788], [-87.58671, 41.78786]]}, "type": "Feature", "properties": {"num_passengers": 8308}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58667, 41.78563], [-87.58665, 41.78548]]}, "type": "Feature", "properties": {"num_passengers": 8308}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58668, 41.78714], [-87.58668, 41.78691]]}, "type": "Feature", "properties": {"num_passengers": 8308}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5867, 41.78772], [-87.5867, 41.78756]]}, "type": "Feature", "properties": {"num_passengers": 8308}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58667, 41.78974], [-87.58668, 41.78961]]}, "type": "Feature", "properties": {"num_passengers": 8308}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5866, 41.7885], [-87.58659, 41.78832]]}, "type": "Feature", "properties": {"num_passengers": 8308}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58668, 41.78647], [-87.58667, 41.78627]]}, "type": "Feature", "properties": {"num_passengers": 8308}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64052, 41.92544], [-87.64037, 41.9255]]}, "type": "Feature", "properties": {"num_passengers": 8322}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58665, 41.78507], [-87.58663, 41.78487]]}, "type": "Feature", "properties": {"num_passengers": 8326}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58663, 41.78447], [-87.58663, 41.78429]]}, "type": "Feature", "properties": {"num_passengers": 8327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62946, 41.88627], [-87.62947, 41.88802]]}, "type": "Feature", "properties": {"num_passengers": 8333}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58663, 41.78467], [-87.58663, 41.78447]]}, "type": "Feature", "properties": {"num_passengers": 8335}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62947, 41.88828], [-87.62949, 41.88845]]}, "type": "Feature", "properties": {"num_passengers": 8335}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58663, 41.78487], [-87.58663, 41.78467]]}, "type": "Feature", "properties": {"num_passengers": 8343}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67326, 41.89593], [-87.67255, 41.89594]]}, "type": "Feature", "properties": {"num_passengers": 8343}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59514, 41.75144], [-87.59531, 41.75144]]}, "type": "Feature", "properties": {"num_passengers": 8344}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63948, 41.87716], [-87.63952, 41.87901]]}, "type": "Feature", "properties": {"num_passengers": 8350}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66705, 41.89611], [-87.66714, 41.89612]]}, "type": "Feature", "properties": {"num_passengers": 8352}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62041, 41.71612], [-87.62041, 41.71621]]}, "type": "Feature", "properties": {"num_passengers": 8356}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63377, 41.91456], [-87.63371, 41.91445]]}, "type": "Feature", "properties": {"num_passengers": 8356}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58537, 41.80256], [-87.58558, 41.80261]]}, "type": "Feature", "properties": {"num_passengers": 8364}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62946, 41.88611], [-87.62946, 41.88627]]}, "type": "Feature", "properties": {"num_passengers": 8368}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59531, 41.75144], [-87.59533, 41.75144]]}, "type": "Feature", "properties": {"num_passengers": 8368}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63232, 41.93339], [-87.63231, 41.9332]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63786, 41.9394], [-87.6377, 41.93931]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62541, 41.90682], [-87.62537, 41.90667]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63116, 41.92513], [-87.63111, 41.92495]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63163, 41.92654], [-87.63158, 41.92636]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62838, 41.91651], [-87.62829, 41.91632]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63626, 41.9383], [-87.6361, 41.93818]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62872, 41.91723], [-87.62863, 41.91705]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63247, 41.93412], [-87.63242, 41.93393]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63017, 41.92194], [-87.63011, 41.92178]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63296, 41.93517], [-87.63286, 41.935]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63158, 41.92636], [-87.63152, 41.92618]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63124, 41.92528], [-87.63116, 41.92513]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63894, 41.94052], [-87.63885, 41.94038]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63231, 41.92974], [-87.63231, 41.92955]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63193, 41.92747], [-87.63187, 41.92728]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62609, 41.91111], [-87.62608, 41.91097]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62914, 41.91828], [-87.62908, 41.9181]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62636, 41.91258], [-87.62628, 41.91242]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6385, 41.93989], [-87.63829, 41.93969]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63866, 41.94009], [-87.6385, 41.93989]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62507, 41.90543], [-87.62504, 41.90529]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62684, 41.91356], [-87.62675, 41.91339]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6299, 41.9211], [-87.62986, 41.92092]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62567, 41.90789], [-87.62563, 41.90774]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6261, 41.91145], [-87.62609, 41.91128]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63705, 41.93891], [-87.63689, 41.9388]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62955, 41.9196], [-87.6295, 41.91941]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63427, 41.93679], [-87.63411, 41.93663]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62908, 41.9181], [-87.62901, 41.91796]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62603, 41.90956], [-87.62601, 41.90939]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63032, 41.92243], [-87.63027, 41.92227]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62605, 41.91019], [-87.62605, 41.91004]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63229, 41.92897], [-87.63225, 41.9288]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63228, 41.93067], [-87.63229, 41.93048]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63305, 41.93534], [-87.63296, 41.93517]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63169, 41.92673], [-87.63163, 41.92654]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63055, 41.92318], [-87.63051, 41.92303]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63094, 41.92441], [-87.63088, 41.92424]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63229, 41.93157], [-87.6323, 41.93139]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62933, 41.91883], [-87.62927, 41.91865]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62605, 41.91004], [-87.62605, 41.90988]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63327, 41.93569], [-87.63316, 41.93552]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63088, 41.92424], [-87.63083, 41.92406]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6323, 41.93011], [-87.6323, 41.92992]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63277, 41.93482], [-87.63267, 41.93467]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62986, 41.92092], [-87.62982, 41.92073]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6256, 41.90759], [-87.62556, 41.90744]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62994, 41.92128], [-87.6299, 41.9211]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62708, 41.91406], [-87.627, 41.91389]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63223, 41.92861], [-87.63219, 41.92842]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63659, 41.93856], [-87.63642, 41.93843]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62753, 41.91491], [-87.62743, 41.91473]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.631, 41.92459], [-87.63094, 41.92441]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63518, 41.93752], [-87.63499, 41.93737]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62529, 41.90635], [-87.62525, 41.90619]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62604, 41.90972], [-87.62603, 41.90956]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63181, 41.92709], [-87.63175, 41.92691]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63242, 41.93393], [-87.63239, 41.93375]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62533, 41.90651], [-87.62529, 41.90635]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62879, 41.91741], [-87.62872, 41.91723]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63175, 41.92691], [-87.63169, 41.92673]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6348, 41.93723], [-87.63462, 41.93708]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6323, 41.93302], [-87.63225, 41.93286]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63802, 41.93949], [-87.63786, 41.9394]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63225, 41.93267], [-87.63226, 41.93249]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62945, 41.91922], [-87.62939, 41.91903]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63083, 41.92406], [-87.63078, 41.92391]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6321, 41.92804], [-87.63204, 41.92785]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62894, 41.91778], [-87.62887, 41.91759]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63231, 41.9312], [-87.63227, 41.93104]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63689, 41.9388], [-87.63674, 41.93868]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63022, 41.92211], [-87.63017, 41.92194]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63445, 41.93694], [-87.63427, 41.93679]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.627, 41.91389], [-87.62692, 41.91372]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63136, 41.92564], [-87.6313, 41.92546]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6313, 41.92546], [-87.63124, 41.92528]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63027, 41.92227], [-87.63022, 41.92211]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6377, 41.93931], [-87.63754, 41.93922]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62553, 41.90728], [-87.62549, 41.90713]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63226, 41.93249], [-87.63226, 41.93231]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62743, 41.91473], [-87.62735, 41.91455]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63286, 41.935], [-87.63277, 41.93482]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62617, 41.9121], [-87.62614, 41.91194]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62521, 41.90603], [-87.62518, 41.90588]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63146, 41.926], [-87.63141, 41.92582]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62537, 41.90667], [-87.62533, 41.90651]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62592, 41.90889], [-87.62589, 41.90873]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63198, 41.92765], [-87.63193, 41.92747]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63351, 41.93602], [-87.63338, 41.93585]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62563, 41.90774], [-87.6256, 41.90759]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63316, 41.93552], [-87.63305, 41.93534]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63105, 41.92477], [-87.631, 41.92459]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6258, 41.90838], [-87.62576, 41.90821]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63259, 41.93449], [-87.63253, 41.9343]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62609, 41.91128], [-87.62609, 41.91111]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6281, 41.91597], [-87.628, 41.91579]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6361, 41.93818], [-87.63593, 41.93805]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63411, 41.93663], [-87.63396, 41.93648]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62927, 41.91865], [-87.62921, 41.91846]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62601, 41.90939], [-87.62598, 41.90923]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63462, 41.93708], [-87.63445, 41.93694]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63228, 41.93085], [-87.63228, 41.93067]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63227, 41.93213], [-87.63228, 41.93194]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63187, 41.92728], [-87.63181, 41.92709]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63338, 41.93585], [-87.63327, 41.93569]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63231, 41.92916], [-87.63229, 41.92897]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62863, 41.91705], [-87.62855, 41.91687]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62772, 41.91526], [-87.62762, 41.91508]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62572, 41.90805], [-87.62567, 41.90789]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6297, 41.92017], [-87.62965, 41.91998]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62622, 41.91227], [-87.62617, 41.9121]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63642, 41.93843], [-87.63626, 41.9383]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63011, 41.92178], [-87.63005, 41.92163]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.628, 41.91579], [-87.62791, 41.91562]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63, 41.92146], [-87.62994, 41.92128]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63111, 41.92495], [-87.63105, 41.92477]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63379, 41.93635], [-87.63365, 41.93618]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62726, 41.91437], [-87.62717, 41.91423]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62819, 41.91615], [-87.6281, 41.91597]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62692, 41.91372], [-87.62684, 41.91356]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63239, 41.93375], [-87.63235, 41.93357]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62611, 41.91177], [-87.6261, 41.91161]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63754, 41.93922], [-87.63737, 41.93912]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6261, 41.91161], [-87.6261, 41.91145]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63231, 41.9332], [-87.6323, 41.93302]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63555, 41.93779], [-87.63537, 41.93766]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62518, 41.90588], [-87.62514, 41.90573]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63225, 41.93286], [-87.63225, 41.93267]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62608, 41.91097], [-87.62607, 41.91081]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62605, 41.90988], [-87.62604, 41.90972]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62781, 41.91544], [-87.62772, 41.91526]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63721, 41.93903], [-87.63705, 41.93891]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6306, 41.92331], [-87.63055, 41.92318]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62525, 41.90619], [-87.62521, 41.90603]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63069, 41.9236], [-87.63065, 41.92346]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63005, 41.92163], [-87.63, 41.92146]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63235, 41.93357], [-87.63232, 41.93339]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63228, 41.93194], [-87.63229, 41.93176]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63042, 41.92274], [-87.63037, 41.92259]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63737, 41.93912], [-87.63721, 41.93903]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63267, 41.93467], [-87.63259, 41.93449]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62556, 41.90744], [-87.62553, 41.90728]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62717, 41.91423], [-87.62708, 41.91406]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62628, 41.91242], [-87.62622, 41.91227]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63037, 41.92259], [-87.63032, 41.92243]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63046, 41.92289], [-87.63042, 41.92274]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62675, 41.91339], [-87.62667, 41.91322]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63231, 41.92936], [-87.63231, 41.92916]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62504, 41.90529], [-87.62501, 41.90515]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62606, 41.9105], [-87.62605, 41.91034]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62643, 41.91273], [-87.62636, 41.91258]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63074, 41.92376], [-87.63069, 41.9236]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6323, 41.93139], [-87.63231, 41.9312]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63575, 41.93791], [-87.63555, 41.93779]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62607, 41.91065], [-87.62606, 41.9105]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63152, 41.92618], [-87.63146, 41.926]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62829, 41.91632], [-87.62819, 41.91615]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63674, 41.93868], [-87.63659, 41.93856]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63229, 41.93176], [-87.63229, 41.93157]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62901, 41.91796], [-87.62894, 41.91778]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62651, 41.91289], [-87.62643, 41.91273]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62549, 41.90713], [-87.62545, 41.90697]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6296, 41.91979], [-87.62955, 41.9196]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6251, 41.90558], [-87.62507, 41.90543]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62659, 41.91306], [-87.62651, 41.91289]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62978, 41.92055], [-87.62974, 41.92036]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63219, 41.92842], [-87.63214, 41.92823]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62607, 41.91081], [-87.62607, 41.91065]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62965, 41.91998], [-87.6296, 41.91979]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62514, 41.90573], [-87.6251, 41.90558]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63829, 41.93969], [-87.63816, 41.93959]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63051, 41.92303], [-87.63046, 41.92289]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62501, 41.90515], [-87.62498, 41.90501]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63204, 41.92785], [-87.63198, 41.92765]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63078, 41.92391], [-87.63074, 41.92376]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63229, 41.9303], [-87.6323, 41.93011]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63226, 41.93231], [-87.63227, 41.93213]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63225, 41.9288], [-87.63223, 41.92861]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62576, 41.90821], [-87.62572, 41.90805]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62589, 41.90873], [-87.62584, 41.90855]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62791, 41.91562], [-87.62781, 41.91544]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62846, 41.91669], [-87.62838, 41.91651]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62614, 41.91194], [-87.62611, 41.91177]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62762, 41.91508], [-87.62753, 41.91491]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62595, 41.90906], [-87.62592, 41.90889]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63499, 41.93737], [-87.6348, 41.93723]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62605, 41.91034], [-87.62605, 41.91019]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62735, 41.91455], [-87.62726, 41.91437]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6323, 41.92992], [-87.63231, 41.92974]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62855, 41.91687], [-87.62846, 41.91669]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62921, 41.91846], [-87.62914, 41.91828]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63231, 41.92955], [-87.63231, 41.92936]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63816, 41.93959], [-87.63802, 41.93949]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63885, 41.94038], [-87.63876, 41.94025]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62939, 41.91903], [-87.62933, 41.91883]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63876, 41.94025], [-87.63866, 41.94009]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62667, 41.91322], [-87.62659, 41.91306]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62584, 41.90855], [-87.6258, 41.90838]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62598, 41.90923], [-87.62595, 41.90906]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63229, 41.93048], [-87.63229, 41.9303]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63214, 41.92823], [-87.6321, 41.92804]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63141, 41.92582], [-87.63136, 41.92564]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63537, 41.93766], [-87.63518, 41.93752]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63253, 41.9343], [-87.63247, 41.93412]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63227, 41.93104], [-87.63228, 41.93085]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62982, 41.92073], [-87.62978, 41.92055]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6295, 41.91941], [-87.62945, 41.91922]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62545, 41.90697], [-87.62541, 41.90682]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62887, 41.91759], [-87.62879, 41.91741]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63065, 41.92346], [-87.6306, 41.92331]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62974, 41.92036], [-87.6297, 41.92017]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63365, 41.93618], [-87.63351, 41.93602]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63396, 41.93648], [-87.63379, 41.93635]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63593, 41.93805], [-87.63575, 41.93791]]}, "type": "Feature", "properties": {"num_passengers": 8369}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63515, 41.91962], [-87.63524, 41.91971]]}, "type": "Feature", "properties": {"num_passengers": 8383}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58558, 41.80261], [-87.58578, 41.80262]]}, "type": "Feature", "properties": {"num_passengers": 8384}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59533, 41.75144], [-87.59554, 41.75144]]}, "type": "Feature", "properties": {"num_passengers": 8392}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63133, 41.90012], [-87.63131, 41.90026]]}, "type": "Feature", "properties": {"num_passengers": 8394}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63118, 41.89986], [-87.63134, 41.89993]]}, "type": "Feature", "properties": {"num_passengers": 8394}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63129, 41.90042], [-87.63129, 41.90046]]}, "type": "Feature", "properties": {"num_passengers": 8394}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63134, 41.89993], [-87.63133, 41.90012]]}, "type": "Feature", "properties": {"num_passengers": 8394}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63131, 41.90026], [-87.63129, 41.90042]]}, "type": "Feature", "properties": {"num_passengers": 8394}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65531, 41.75056], [-87.65551, 41.75056]]}, "type": "Feature", "properties": {"num_passengers": 8398}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.8753], [-87.62418, 41.87545]]}, "type": "Feature", "properties": {"num_passengers": 8400}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58654, 41.8026], [-87.58657, 41.8026]]}, "type": "Feature", "properties": {"num_passengers": 8404}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58657, 41.8026], [-87.58684, 41.80259]]}, "type": "Feature", "properties": {"num_passengers": 8404}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58589, 41.80261], [-87.58576, 41.8026]]}, "type": "Feature", "properties": {"num_passengers": 8404}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58635, 41.8026], [-87.58654, 41.8026]]}, "type": "Feature", "properties": {"num_passengers": 8404}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58684, 41.80259], [-87.58706, 41.80258]]}, "type": "Feature", "properties": {"num_passengers": 8404}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58776, 41.80288], [-87.58783, 41.80302]]}, "type": "Feature", "properties": {"num_passengers": 8404}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58725, 41.80258], [-87.58746, 41.80258]]}, "type": "Feature", "properties": {"num_passengers": 8404}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58616, 41.8026], [-87.58635, 41.8026]]}, "type": "Feature", "properties": {"num_passengers": 8404}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58576, 41.8026], [-87.58595, 41.8026]]}, "type": "Feature", "properties": {"num_passengers": 8404}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58772, 41.80274], [-87.58776, 41.80288]]}, "type": "Feature", "properties": {"num_passengers": 8404}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58595, 41.8026], [-87.58616, 41.8026]]}, "type": "Feature", "properties": {"num_passengers": 8404}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58746, 41.80258], [-87.58767, 41.80259]]}, "type": "Feature", "properties": {"num_passengers": 8404}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58706, 41.80258], [-87.58725, 41.80258]]}, "type": "Feature", "properties": {"num_passengers": 8404}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58578, 41.80262], [-87.58589, 41.80261]]}, "type": "Feature", "properties": {"num_passengers": 8404}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58767, 41.80259], [-87.58772, 41.80274]]}, "type": "Feature", "properties": {"num_passengers": 8404}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58783, 41.80302], [-87.58784, 41.80304]]}, "type": "Feature", "properties": {"num_passengers": 8404}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58784, 41.80304], [-87.58803, 41.80306]]}, "type": "Feature", "properties": {"num_passengers": 8404}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6378, 41.86732], [-87.63797, 41.86732]]}, "type": "Feature", "properties": {"num_passengers": 8405}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63821, 41.86732], [-87.6384, 41.86732]]}, "type": "Feature", "properties": {"num_passengers": 8405}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63756, 41.86732], [-87.6378, 41.86732]]}, "type": "Feature", "properties": {"num_passengers": 8405}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63704, 41.86733], [-87.63732, 41.86733]]}, "type": "Feature", "properties": {"num_passengers": 8405}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63899, 41.86732], [-87.63911, 41.86731]]}, "type": "Feature", "properties": {"num_passengers": 8405}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6384, 41.86732], [-87.6387, 41.86732]]}, "type": "Feature", "properties": {"num_passengers": 8405}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6387, 41.86732], [-87.63899, 41.86732]]}, "type": "Feature", "properties": {"num_passengers": 8405}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63732, 41.86733], [-87.63756, 41.86732]]}, "type": "Feature", "properties": {"num_passengers": 8405}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63911, 41.86731], [-87.64047, 41.86729]]}, "type": "Feature", "properties": {"num_passengers": 8405}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63797, 41.86732], [-87.63821, 41.86732]]}, "type": "Feature", "properties": {"num_passengers": 8405}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64065, 41.8673], [-87.64196, 41.86728]]}, "type": "Feature", "properties": {"num_passengers": 8405}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63899, 41.86732], [-87.63899, 41.86732]]}, "type": "Feature", "properties": {"num_passengers": 8405}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64047, 41.86729], [-87.64065, 41.8673]]}, "type": "Feature", "properties": {"num_passengers": 8405}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63384, 41.91468], [-87.63377, 41.91456]]}, "type": "Feature", "properties": {"num_passengers": 8410}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66634, 41.89605], [-87.66562, 41.89606]]}, "type": "Feature", "properties": {"num_passengers": 8411}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66935, 41.896], [-87.66753, 41.89603]]}, "type": "Feature", "properties": {"num_passengers": 8411}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66945, 41.896], [-87.66935, 41.896]]}, "type": "Feature", "properties": {"num_passengers": 8411}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6718, 41.89596], [-87.66945, 41.896]]}, "type": "Feature", "properties": {"num_passengers": 8411}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66705, 41.89604], [-87.66634, 41.89605]]}, "type": "Feature", "properties": {"num_passengers": 8411}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66753, 41.89603], [-87.66741, 41.89603]]}, "type": "Feature", "properties": {"num_passengers": 8411}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66741, 41.89603], [-87.66705, 41.89604]]}, "type": "Feature", "properties": {"num_passengers": 8411}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64049, 41.9254], [-87.64052, 41.92544]]}, "type": "Feature", "properties": {"num_passengers": 8414}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67191, 41.89596], [-87.6718, 41.89596]]}, "type": "Feature", "properties": {"num_passengers": 8420}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67255, 41.89594], [-87.67191, 41.89596]]}, "type": "Feature", "properties": {"num_passengers": 8429}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63487, 41.91928], [-87.6348, 41.91918]]}, "type": "Feature", "properties": {"num_passengers": 8436}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64923, 41.97493], [-87.64926, 41.97512]]}, "type": "Feature", "properties": {"num_passengers": 8447}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65466, 41.97638], [-87.65235, 41.97642]]}, "type": "Feature", "properties": {"num_passengers": 8453}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64162, 41.94551], [-87.6417, 41.94565]]}, "type": "Feature", "properties": {"num_passengers": 8465}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6339, 41.91478], [-87.63384, 41.91468]]}, "type": "Feature", "properties": {"num_passengers": 8465}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63284, 41.89659], [-87.63262, 41.89659]]}, "type": "Feature", "properties": {"num_passengers": 8470}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63675, 41.86734], [-87.63704, 41.86733]]}, "type": "Feature", "properties": {"num_passengers": 8487}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64105, 41.87629], [-87.64105, 41.87611]]}, "type": "Feature", "properties": {"num_passengers": 8494}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64104, 41.87648], [-87.64105, 41.87629]]}, "type": "Feature", "properties": {"num_passengers": 8494}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64104, 41.87593], [-87.64103, 41.87572]]}, "type": "Feature", "properties": {"num_passengers": 8494}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64103, 41.87555], [-87.64103, 41.87538]]}, "type": "Feature", "properties": {"num_passengers": 8494}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64103, 41.87538], [-87.64103, 41.87528]]}, "type": "Feature", "properties": {"num_passengers": 8494}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64107, 41.87691], [-87.64104, 41.87648]]}, "type": "Feature", "properties": {"num_passengers": 8494}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64103, 41.87572], [-87.64103, 41.87555]]}, "type": "Feature", "properties": {"num_passengers": 8494}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64105, 41.87611], [-87.64104, 41.87593]]}, "type": "Feature", "properties": {"num_passengers": 8494}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63327, 41.86724], [-87.63226, 41.86725]]}, "type": "Feature", "properties": {"num_passengers": 8501}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63395, 41.91487], [-87.6339, 41.91478]]}, "type": "Feature", "properties": {"num_passengers": 8502}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66651, 41.89612], [-87.66705, 41.89611]]}, "type": "Feature", "properties": {"num_passengers": 8505}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6382, 41.92175], [-87.63811, 41.92162]]}, "type": "Feature", "properties": {"num_passengers": 8528}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63751, 41.92063], [-87.63744, 41.92051]]}, "type": "Feature", "properties": {"num_passengers": 8528}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63779, 41.9211], [-87.6377, 41.92093]]}, "type": "Feature", "properties": {"num_passengers": 8528}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63831, 41.92194], [-87.6382, 41.92175]]}, "type": "Feature", "properties": {"num_passengers": 8528}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63735, 41.92036], [-87.6373, 41.92025]]}, "type": "Feature", "properties": {"num_passengers": 8528}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63619, 41.9185], [-87.63514, 41.91678]]}, "type": "Feature", "properties": {"num_passengers": 8528}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6377, 41.92093], [-87.63758, 41.92076]]}, "type": "Feature", "properties": {"num_passengers": 8528}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6373, 41.92025], [-87.63729, 41.92021]]}, "type": "Feature", "properties": {"num_passengers": 8528}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63628, 41.91864], [-87.63619, 41.9185]]}, "type": "Feature", "properties": {"num_passengers": 8528}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63514, 41.91678], [-87.63509, 41.91671]]}, "type": "Feature", "properties": {"num_passengers": 8528}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63801, 41.92145], [-87.63792, 41.92129]]}, "type": "Feature", "properties": {"num_passengers": 8528}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63744, 41.92051], [-87.63735, 41.92036]]}, "type": "Feature", "properties": {"num_passengers": 8528}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63811, 41.92162], [-87.63801, 41.92145]]}, "type": "Feature", "properties": {"num_passengers": 8528}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63792, 41.92129], [-87.63779, 41.9211]]}, "type": "Feature", "properties": {"num_passengers": 8528}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63758, 41.92076], [-87.63751, 41.92063]]}, "type": "Feature", "properties": {"num_passengers": 8528}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63729, 41.92021], [-87.63628, 41.91864]]}, "type": "Feature", "properties": {"num_passengers": 8528}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62949, 41.88845], [-87.6295, 41.88864]]}, "type": "Feature", "properties": {"num_passengers": 8533}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6253, 41.87311], [-87.62508, 41.87311]]}, "type": "Feature", "properties": {"num_passengers": 8534}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62722, 41.87307], [-87.62702, 41.87307]]}, "type": "Feature", "properties": {"num_passengers": 8534}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62606, 41.8731], [-87.62583, 41.87309]]}, "type": "Feature", "properties": {"num_passengers": 8534}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62737, 41.87307], [-87.62722, 41.87307]]}, "type": "Feature", "properties": {"num_passengers": 8534}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62583, 41.87309], [-87.6256, 41.8731]]}, "type": "Feature", "properties": {"num_passengers": 8534}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62702, 41.87307], [-87.62678, 41.87307]]}, "type": "Feature", "properties": {"num_passengers": 8534}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62678, 41.87307], [-87.62652, 41.87309]]}, "type": "Feature", "properties": {"num_passengers": 8534}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6256, 41.8731], [-87.6253, 41.87311]]}, "type": "Feature", "properties": {"num_passengers": 8534}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62652, 41.87309], [-87.62627, 41.8731]]}, "type": "Feature", "properties": {"num_passengers": 8534}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62627, 41.8731], [-87.62606, 41.8731]]}, "type": "Feature", "properties": {"num_passengers": 8534}}, {"geometry": {"type": "LineString", "coordinates": [[-87.634, 41.91496], [-87.63395, 41.91487]]}, "type": "Feature", "properties": {"num_passengers": 8539}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63371, 41.91445], [-87.63364, 41.91433]]}, "type": "Feature", "properties": {"num_passengers": 8540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59554, 41.75144], [-87.59573, 41.75143]]}, "type": "Feature", "properties": {"num_passengers": 8541}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65509, 41.75056], [-87.65531, 41.75056]]}, "type": "Feature", "properties": {"num_passengers": 8541}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66562, 41.89606], [-87.66489, 41.89607]]}, "type": "Feature", "properties": {"num_passengers": 8541}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63551, 41.86724], [-87.63327, 41.86724]]}, "type": "Feature", "properties": {"num_passengers": 8544}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63242, 41.88317], [-87.63221, 41.88318]]}, "type": "Feature", "properties": {"num_passengers": 8545}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63234, 41.88496], [-87.63237, 41.88514]]}, "type": "Feature", "properties": {"num_passengers": 8546}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6348, 41.91918], [-87.63472, 41.91907]]}, "type": "Feature", "properties": {"num_passengers": 8554}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63302, 41.89656], [-87.63284, 41.89659]]}, "type": "Feature", "properties": {"num_passengers": 8554}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62508, 41.87311], [-87.62481, 41.87312]]}, "type": "Feature", "properties": {"num_passengers": 8562}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63646, 41.86735], [-87.63675, 41.86734]]}, "type": "Feature", "properties": {"num_passengers": 8567}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63504, 41.91951], [-87.63515, 41.91962]]}, "type": "Feature", "properties": {"num_passengers": 8569}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64042, 41.92526], [-87.64049, 41.9254]]}, "type": "Feature", "properties": {"num_passengers": 8576}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64278, 41.86715], [-87.64257, 41.86715]]}, "type": "Feature", "properties": {"num_passengers": 8587}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63807, 41.8672], [-87.63782, 41.8672]]}, "type": "Feature", "properties": {"num_passengers": 8587}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63782, 41.8672], [-87.63758, 41.8672]]}, "type": "Feature", "properties": {"num_passengers": 8587}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63758, 41.8672], [-87.63726, 41.8672]]}, "type": "Feature", "properties": {"num_passengers": 8587}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64103, 41.86718], [-87.64079, 41.86718]]}, "type": "Feature", "properties": {"num_passengers": 8587}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64057, 41.8672], [-87.64055, 41.86718]]}, "type": "Feature", "properties": {"num_passengers": 8587}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64257, 41.86715], [-87.64238, 41.86715]]}, "type": "Feature", "properties": {"num_passengers": 8587}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63831, 41.8672], [-87.63807, 41.8672]]}, "type": "Feature", "properties": {"num_passengers": 8587}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63855, 41.86719], [-87.63831, 41.8672]]}, "type": "Feature", "properties": {"num_passengers": 8587}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64224, 41.86718], [-87.64205, 41.86717]]}, "type": "Feature", "properties": {"num_passengers": 8587}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63996, 41.8672], [-87.63971, 41.8672]]}, "type": "Feature", "properties": {"num_passengers": 8587}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63696, 41.86721], [-87.63664, 41.86721]]}, "type": "Feature", "properties": {"num_passengers": 8587}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63563, 41.86723], [-87.63551, 41.86724]]}, "type": "Feature", "properties": {"num_passengers": 8587}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6389, 41.86719], [-87.63877, 41.86719]]}, "type": "Feature", "properties": {"num_passengers": 8587}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64238, 41.86715], [-87.64224, 41.86718]]}, "type": "Feature", "properties": {"num_passengers": 8587}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64124, 41.86718], [-87.64103, 41.86718]]}, "type": "Feature", "properties": {"num_passengers": 8587}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64205, 41.86717], [-87.64184, 41.86718]]}, "type": "Feature", "properties": {"num_passengers": 8587}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6389, 41.86719], [-87.6389, 41.86719]]}, "type": "Feature", "properties": {"num_passengers": 8587}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64079, 41.86718], [-87.64057, 41.8672]]}, "type": "Feature", "properties": {"num_passengers": 8587}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63611, 41.86722], [-87.63588, 41.86722]]}, "type": "Feature", "properties": {"num_passengers": 8587}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63638, 41.86721], [-87.63611, 41.86722]]}, "type": "Feature", "properties": {"num_passengers": 8587}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64296, 41.86715], [-87.64278, 41.86715]]}, "type": "Feature", "properties": {"num_passengers": 8587}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63664, 41.86721], [-87.63638, 41.86721]]}, "type": "Feature", "properties": {"num_passengers": 8587}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63942, 41.86721], [-87.63917, 41.86719]]}, "type": "Feature", "properties": {"num_passengers": 8587}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64021, 41.86719], [-87.63996, 41.8672]]}, "type": "Feature", "properties": {"num_passengers": 8587}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64346, 41.86715], [-87.64319, 41.86714]]}, "type": "Feature", "properties": {"num_passengers": 8587}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63917, 41.86719], [-87.6389, 41.86719]]}, "type": "Feature", "properties": {"num_passengers": 8587}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63877, 41.86719], [-87.63855, 41.86719]]}, "type": "Feature", "properties": {"num_passengers": 8587}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64165, 41.86718], [-87.64145, 41.86718]]}, "type": "Feature", "properties": {"num_passengers": 8587}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63588, 41.86722], [-87.63563, 41.86723]]}, "type": "Feature", "properties": {"num_passengers": 8587}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63971, 41.8672], [-87.63942, 41.86721]]}, "type": "Feature", "properties": {"num_passengers": 8587}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64055, 41.86718], [-87.64043, 41.86719]]}, "type": "Feature", "properties": {"num_passengers": 8587}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64043, 41.86719], [-87.64021, 41.86719]]}, "type": "Feature", "properties": {"num_passengers": 8587}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64145, 41.86718], [-87.64124, 41.86718]]}, "type": "Feature", "properties": {"num_passengers": 8587}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63726, 41.8672], [-87.63696, 41.86721]]}, "type": "Feature", "properties": {"num_passengers": 8587}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64184, 41.86718], [-87.64165, 41.86718]]}, "type": "Feature", "properties": {"num_passengers": 8587}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64319, 41.86714], [-87.64296, 41.86715]]}, "type": "Feature", "properties": {"num_passengers": 8587}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62481, 41.87312], [-87.62456, 41.87314]]}, "type": "Feature", "properties": {"num_passengers": 8591}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62456, 41.87314], [-87.62437, 41.87315]]}, "type": "Feature", "properties": {"num_passengers": 8593}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63621, 41.86735], [-87.63646, 41.86735]]}, "type": "Feature", "properties": {"num_passengers": 8593}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64368, 41.86714], [-87.64346, 41.86715]]}, "type": "Feature", "properties": {"num_passengers": 8593}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62437, 41.87315], [-87.62412, 41.87313]]}, "type": "Feature", "properties": {"num_passengers": 8595}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64394, 41.86714], [-87.64368, 41.86714]]}, "type": "Feature", "properties": {"num_passengers": 8599}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65485, 41.75056], [-87.65509, 41.75056]]}, "type": "Feature", "properties": {"num_passengers": 8614}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63591, 41.86735], [-87.63621, 41.86735]]}, "type": "Feature", "properties": {"num_passengers": 8617}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66592, 41.89613], [-87.66651, 41.89612]]}, "type": "Feature", "properties": {"num_passengers": 8618}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64478, 41.95165], [-87.64463, 41.95104]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63353, 41.93629], [-87.63303, 41.93567]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64991, 41.97472], [-87.64943, 41.97389]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62874, 41.91754], [-87.62783, 41.91567]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62925, 41.919], [-87.62874, 41.91754]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63798, 41.93987], [-87.637, 41.939]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63082, 41.92444], [-87.62995, 41.92176]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64576, 41.95755], [-87.64514, 41.95597]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63921, 41.94143], [-87.63874, 41.94078]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63874, 41.94078], [-87.63798, 41.93987]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64613, 41.95884], [-87.64576, 41.95755]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62594, 41.90966], [-87.62592, 41.90927]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63964, 41.94213], [-87.63921, 41.94143]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6508, 41.97596], [-87.64991, 41.97472]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62592, 41.90927], [-87.62494, 41.90527]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6261, 41.91222], [-87.62598, 41.91163]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63512, 41.93766], [-87.63427, 41.93696]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63303, 41.93567], [-87.63264, 41.93501]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64514, 41.95597], [-87.64497, 41.95543]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64647, 41.96195], [-87.64633, 41.96133]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6415, 41.94558], [-87.63964, 41.94213]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62598, 41.91163], [-87.62594, 41.90966]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64633, 41.96133], [-87.64632, 41.95988]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64475, 41.954], [-87.64478, 41.95165]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64743, 41.96616], [-87.64647, 41.96195]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64445, 41.95062], [-87.6415, 41.94558]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65106, 41.97622], [-87.6508, 41.97596]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63427, 41.93696], [-87.63353, 41.93629]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64943, 41.97389], [-87.64902, 41.97279]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62783, 41.91567], [-87.62627, 41.91261]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64483, 41.95461], [-87.64475, 41.954]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63211, 41.93302], [-87.63216, 41.92969]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65144, 41.97639], [-87.65106, 41.97622]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63204, 41.92836], [-87.63082, 41.92444]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65216, 41.97642], [-87.65144, 41.97639]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63215, 41.92908], [-87.63204, 41.92836]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62995, 41.92176], [-87.62925, 41.919]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63232, 41.93421], [-87.63211, 41.93302]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63216, 41.92969], [-87.63215, 41.92908]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64463, 41.95104], [-87.64445, 41.95062]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64497, 41.95543], [-87.64483, 41.95461]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62627, 41.91261], [-87.6261, 41.91222]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.637, 41.939], [-87.63512, 41.93766]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64902, 41.97279], [-87.64856, 41.97108]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65235, 41.97642], [-87.65216, 41.97642]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64632, 41.95988], [-87.64613, 41.95884]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64856, 41.97108], [-87.64743, 41.96616]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63264, 41.93501], [-87.63232, 41.93421]]}, "type": "Feature", "properties": {"num_passengers": 8628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62759, 41.87027], [-87.62757, 41.8691]]}, "type": "Feature", "properties": {"num_passengers": 8632}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.8751], [-87.62418, 41.8753]]}, "type": "Feature", "properties": {"num_passengers": 8637}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63436, 41.89655], [-87.63302, 41.89656]]}, "type": "Feature", "properties": {"num_passengers": 8639}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6692, 41.93972], [-87.67132, 41.93967]]}, "type": "Feature", "properties": {"num_passengers": 8651}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62044, 41.71595], [-87.62041, 41.71612]]}, "type": "Feature", "properties": {"num_passengers": 8652}}, {"geometry": {"type": "LineString", "coordinates": [[-87.83116, 41.93775], [-87.83133, 41.93774]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.83348, 41.93769], [-87.83357, 41.93769]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70303, 41.9394], [-87.70313, 41.9394]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.83559, 41.9373], [-87.8354, 41.93737]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.80619, 41.93807], [-87.80638, 41.93808]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69098, 41.93934], [-87.69127, 41.93933]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71088, 41.93934], [-87.71109, 41.93933]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77131, 41.93859], [-87.77152, 41.93857]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76928, 41.93859], [-87.7695, 41.93858]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77904, 41.93846], [-87.77928, 41.93845]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.73718, 41.93899], [-87.73735, 41.93899]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.83578, 41.93749], [-87.83578, 41.93736]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.83073, 41.93775], [-87.83092, 41.93775]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.835, 41.93764], [-87.83521, 41.93764]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.78832, 41.93832], [-87.78853, 41.93832]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.79676, 41.93819], [-87.79702, 41.93819]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69715, 41.93938], [-87.69734, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77567, 41.93853], [-87.77591, 41.93853]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.79809, 41.93816], [-87.80152, 41.93811]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.79392, 41.93822], [-87.7942, 41.93822]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.73236, 41.93906], [-87.73443, 41.93904]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67385, 41.93966], [-87.67567, 41.93962]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.8264, 41.93783], [-87.82663, 41.93783]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.83437, 41.93767], [-87.83459, 41.93767]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.75853, 41.93874], [-87.75873, 41.93876]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6931, 41.93934], [-87.69333, 41.93935]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.79091, 41.9383], [-87.79102, 41.9383]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.774, 41.93855], [-87.77427, 41.93854]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.81213, 41.93803], [-87.81237, 41.93804]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.74378, 41.93895], [-87.74378, 41.93895]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.83324, 41.93769], [-87.83348, 41.93769]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77359, 41.93855], [-87.77382, 41.93855]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71314, 41.9393], [-87.71343, 41.93929]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76195, 41.93872], [-87.76217, 41.93872]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71187, 41.9393], [-87.71204, 41.93922]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7583, 41.93874], [-87.75853, 41.93874]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.82135, 41.93788], [-87.82371, 41.93784]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.83459, 41.93767], [-87.83475, 41.93767]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72053, 41.93924], [-87.72077, 41.93924]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.83047, 41.93775], [-87.83073, 41.93775]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71379, 41.93929], [-87.71406, 41.93928]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76764, 41.93858], [-87.76782, 41.93857]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77244, 41.93857], [-87.77265, 41.93856]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.82939, 41.93777], [-87.82968, 41.93776]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69054, 41.93934], [-87.69074, 41.93934]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.81294, 41.93803], [-87.81315, 41.93803]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.79299, 41.93826], [-87.79318, 41.93826]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76672, 41.93861], [-87.76699, 41.93864]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7612, 41.9387], [-87.76143, 41.93872]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68295, 41.93954], [-87.68308, 41.93954]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.79806, 41.93819], [-87.79809, 41.93816]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77181, 41.93857], [-87.772, 41.93857]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71252, 41.93921], [-87.71268, 41.93931]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76974, 41.93857], [-87.77001, 41.93857]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69546, 41.93934], [-87.69569, 41.93934]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67866, 41.9396], [-87.67875, 41.9396]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71792, 41.93927], [-87.71818, 41.93927]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70996, 41.93938], [-87.70999, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.81165, 41.93804], [-87.81188, 41.93804]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71228, 41.93901], [-87.71249, 41.93904]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.83475, 41.93767], [-87.835, 41.93764]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.75524, 41.93877], [-87.75543, 41.93877]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.74713, 41.93885], [-87.74727, 41.93885]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.79727, 41.93819], [-87.79752, 41.93819]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72367, 41.93917], [-87.72384, 41.93917]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.79581, 41.93822], [-87.79601, 41.93821]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.74034, 41.93899], [-87.74062, 41.93899]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77047, 41.93857], [-87.77069, 41.93856]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7671, 41.93864], [-87.76718, 41.93859]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71959, 41.93927], [-87.71969, 41.93927]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71049, 41.93934], [-87.71068, 41.93934]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.79125, 41.93826], [-87.79145, 41.93825]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68935, 41.93925], [-87.68958, 41.93925]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69594, 41.93934], [-87.6962, 41.93934]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.82397, 41.93786], [-87.82418, 41.93785]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7713, 41.93859], [-87.77131, 41.93859]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71743, 41.9393], [-87.71769, 41.93927]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71606, 41.93929], [-87.71632, 41.93929]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69801, 41.93938], [-87.69825, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.80724, 41.93806], [-87.80746, 41.93804]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71845, 41.93927], [-87.71872, 41.93927]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.79255, 41.93824], [-87.79279, 41.93825]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76828, 41.93857], [-87.76852, 41.93857]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.73227, 41.93905], [-87.73236, 41.93906]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.79347, 41.93824], [-87.79369, 41.93822]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72142, 41.93924], [-87.72163, 41.93925]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.79199, 41.93825], [-87.79226, 41.93825]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7657, 41.93863], [-87.76591, 41.93862]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.82472, 41.93784], [-87.82501, 41.93784]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70561, 41.93938], [-87.70583, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.8354, 41.93762], [-87.83564, 41.93758]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.81552, 41.93802], [-87.81579, 41.93801]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.79773, 41.93819], [-87.79795, 41.93819]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.80813, 41.93804], [-87.8084, 41.93804]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72031, 41.93925], [-87.72053, 41.93924]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.83303, 41.9377], [-87.83324, 41.93769]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68909, 41.93924], [-87.68935, 41.93925]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71724, 41.93931], [-87.71743, 41.9393]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.73227, 41.93905], [-87.73227, 41.93905]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69424, 41.93935], [-87.69446, 41.93935]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.73979, 41.93899], [-87.74003, 41.93899]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.78117, 41.93844], [-87.78136, 41.93842]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.79279, 41.93825], [-87.79299, 41.93826]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68982, 41.93925], [-87.69003, 41.93927]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.75501, 41.93878], [-87.75524, 41.93877]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.694, 41.93935], [-87.69424, 41.93935]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.81467, 41.93803], [-87.81493, 41.93802]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76591, 41.93862], [-87.76612, 41.93862]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.83203, 41.93772], [-87.83229, 41.93772]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76009, 41.93872], [-87.76031, 41.93872]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.83178, 41.93772], [-87.83203, 41.93772]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.82892, 41.93779], [-87.82915, 41.93779]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7087, 41.93939], [-87.70896, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71018, 41.93936], [-87.71049, 41.93934]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.81404, 41.93806], [-87.81424, 41.93806]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76629, 41.93862], [-87.76648, 41.93861]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7256, 41.93915], [-87.72728, 41.93912]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7578, 41.93874], [-87.75806, 41.93874]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.80657, 41.93809], [-87.80665, 41.93809]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.80491, 41.93807], [-87.80515, 41.93808]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.75728, 41.93876], [-87.75755, 41.93874]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71207, 41.93908], [-87.7122, 41.93901]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.81579, 41.93801], [-87.81604, 41.93801]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.79536, 41.93822], [-87.79554, 41.93822]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77023, 41.93857], [-87.77047, 41.93857]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.78921, 41.9383], [-87.78947, 41.9383]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7864, 41.93833], [-87.78832, 41.93832]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72204, 41.93926], [-87.72214, 41.93925]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.81143, 41.93807], [-87.81165, 41.93804]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7221, 41.93919], [-87.72367, 41.93917]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69446, 41.93935], [-87.69465, 41.93936]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71406, 41.93928], [-87.71425, 41.93928]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71343, 41.93929], [-87.71362, 41.93929]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70688, 41.9394], [-87.7071, 41.93941]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7617, 41.93872], [-87.76195, 41.93872]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.82501, 41.93784], [-87.82529, 41.93783]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71165, 41.93931], [-87.71187, 41.9393]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69519, 41.93936], [-87.69546, 41.93934]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69376, 41.93935], [-87.694, 41.93935]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70497, 41.93939], [-87.70519, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.81396, 41.93807], [-87.81404, 41.93806]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.80569, 41.93807], [-87.80596, 41.93807]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70646, 41.93939], [-87.70669, 41.93939]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.79226, 41.93825], [-87.79255, 41.93824]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.78328, 41.9384], [-87.78341, 41.93841]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.83279, 41.93771], [-87.83303, 41.9377]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69759, 41.93938], [-87.69777, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.80703, 41.93807], [-87.80724, 41.93806]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.81086, 41.93807], [-87.81105, 41.93807]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.74315, 41.93895], [-87.7434, 41.93895]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.78088, 41.93846], [-87.78098, 41.93845]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.83521, 41.93764], [-87.8354, 41.93762]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.79563, 41.93822], [-87.79581, 41.93822]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.74239, 41.93895], [-87.74264, 41.93896]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71632, 41.93929], [-87.7166, 41.93929]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72384, 41.93917], [-87.7256, 41.93915]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.8258, 41.93784], [-87.82599, 41.93786]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.82915, 41.93779], [-87.82939, 41.93777]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.78187, 41.93841], [-87.78212, 41.93841]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7709, 41.93857], [-87.77109, 41.93858]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.82863, 41.9378], [-87.82871, 41.93779]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70583, 41.93938], [-87.70605, 41.93939]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.81272, 41.93804], [-87.81294, 41.93803]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77152, 41.93857], [-87.77181, 41.93857]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.82768, 41.93781], [-87.82796, 41.93781]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.75946, 41.93872], [-87.75968, 41.93874]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7054, 41.93938], [-87.70561, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76852, 41.93857], [-87.76871, 41.93857]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76782, 41.93857], [-87.76802, 41.93857]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.80542, 41.93807], [-87.80569, 41.93807]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77382, 41.93855], [-87.774, 41.93855]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7418, 41.93896], [-87.74208, 41.93895]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.75873, 41.93876], [-87.75895, 41.93877]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70754, 41.93942], [-87.70778, 41.93942]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.75475, 41.93879], [-87.75501, 41.93878]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77069, 41.93856], [-87.7709, 41.93857]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76079, 41.93872], [-87.761, 41.9387]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.83378, 41.93768], [-87.83395, 41.93768]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68054, 41.93958], [-87.68066, 41.93958]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.75755, 41.93874], [-87.7578, 41.93874]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76612, 41.93862], [-87.76629, 41.93862]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69756, 41.93938], [-87.69759, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71525, 41.9393], [-87.71549, 41.9393]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.772, 41.93857], [-87.77219, 41.93857]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.78212, 41.93841], [-87.78241, 41.9384]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70605, 41.93939], [-87.70626, 41.93939]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69845, 41.93938], [-87.69874, 41.93936]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.82418, 41.93785], [-87.82445, 41.93784]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7491, 41.93882], [-87.7491, 41.93882]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.79145, 41.93825], [-87.79171, 41.93825]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.80911, 41.93807], [-87.8093, 41.93807]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7637, 41.9387], [-87.76391, 41.9387]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71942, 41.93925], [-87.71959, 41.93927]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.81925, 41.93793], [-87.82126, 41.93789]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.82599, 41.93786], [-87.82617, 41.93785]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.81035, 41.93807], [-87.8106, 41.93807]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77219, 41.93857], [-87.77244, 41.93857]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.78832, 41.93832], [-87.78832, 41.93832]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.75434, 41.93882], [-87.75451, 41.9388]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7816, 41.93841], [-87.78187, 41.93841]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77613, 41.93853], [-87.77638, 41.93849]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.79795, 41.93819], [-87.79806, 41.93819]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.80905, 41.93807], [-87.80911, 41.93807]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.75543, 41.93877], [-87.75564, 41.93878]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7695, 41.93858], [-87.76974, 41.93857]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.8079, 41.93804], [-87.80813, 41.93804]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76429, 41.93866], [-87.76448, 41.93866]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71923, 41.93925], [-87.71942, 41.93925]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76151, 41.93872], [-87.7617, 41.93872]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.81337, 41.93803], [-87.81359, 41.93803]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.80163, 41.93811], [-87.80408, 41.93807]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.79625, 41.9382], [-87.79651, 41.9382]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.8084, 41.93804], [-87.80865, 41.93804]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63249, 41.88495], [-87.6325, 41.88474]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77657, 41.93849], [-87.7768, 41.93849]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69022, 41.93927], [-87.69033, 41.93928]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76874, 41.93857], [-87.76907, 41.9386]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.74123, 41.93897], [-87.74153, 41.93896]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76264, 41.93872], [-87.76287, 41.9387]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.73443, 41.93904], [-87.73454, 41.93903]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.81915, 41.93793], [-87.81925, 41.93793]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.8106, 41.93807], [-87.81086, 41.93807]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.80746, 41.93804], [-87.80768, 41.93804]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.79469, 41.93822], [-87.79495, 41.9382]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71721, 41.93931], [-87.71724, 41.93931]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.83133, 41.93774], [-87.83155, 41.93774]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.81523, 41.93802], [-87.81552, 41.93802]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.81623, 41.93802], [-87.81642, 41.93804]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7434, 41.93895], [-87.74359, 41.93896]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.81378, 41.93804], [-87.81396, 41.93807]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.83418, 41.93768], [-87.83437, 41.93767]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.79369, 41.93822], [-87.79392, 41.93822]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70014, 41.93941], [-87.70303, 41.9394]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.83357, 41.93769], [-87.83378, 41.93768]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76718, 41.93859], [-87.76744, 41.93858]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77979, 41.93845], [-87.78002, 41.93844]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77519, 41.93853], [-87.7754, 41.93853]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77727, 41.93848], [-87.77753, 41.93848]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.83256, 41.93771], [-87.83279, 41.93771]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70313, 41.9394], [-87.70497, 41.93939]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69033, 41.93928], [-87.69054, 41.93934]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71684, 41.93929], [-87.71702, 41.9393]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.79171, 41.93825], [-87.79199, 41.93825]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.82741, 41.93782], [-87.82768, 41.93781]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70519, 41.93938], [-87.7054, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71872, 41.93927], [-87.71897, 41.93927]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.8093, 41.93807], [-87.80951, 41.93807]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76054, 41.93872], [-87.76079, 41.93872]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71204, 41.93922], [-87.71207, 41.93908]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.81359, 41.93803], [-87.81378, 41.93804]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.78853, 41.93832], [-87.78873, 41.93831]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70626, 41.93939], [-87.70646, 41.93939]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7166, 41.93929], [-87.71684, 41.93929]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70004, 41.93938], [-87.70014, 41.93941]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.79516, 41.93822], [-87.79536, 41.93822]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.81006, 41.93807], [-87.81035, 41.93807]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71295, 41.93931], [-87.71314, 41.9393]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71268, 41.93931], [-87.71295, 41.93931]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6999, 41.93938], [-87.70004, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69694, 41.93938], [-87.69715, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76217, 41.93872], [-87.76241, 41.93872]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.81124, 41.93807], [-87.81143, 41.93807]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77336, 41.93855], [-87.77359, 41.93855]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.74264, 41.93896], [-87.74289, 41.93896]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76648, 41.93861], [-87.76672, 41.93861]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.79001, 41.9383], [-87.79024, 41.93828]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.75968, 41.93874], [-87.75989, 41.93874]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7122, 41.93901], [-87.71228, 41.93901]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.79048, 41.93827], [-87.79069, 41.93827]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.78897, 41.9383], [-87.78921, 41.9383]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71425, 41.93928], [-87.71444, 41.93928]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.75928, 41.93874], [-87.75946, 41.93872]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72747, 41.93912], [-87.72973, 41.93909]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70977, 41.93938], [-87.70996, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72099, 41.93924], [-87.72117, 41.93924]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.73735, 41.93899], [-87.73934, 41.93896]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.74094, 41.93899], [-87.74123, 41.93897]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.83092, 41.93775], [-87.83111, 41.93775]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76241, 41.93872], [-87.76264, 41.93872]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7761, 41.93853], [-87.77613, 41.93853]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.80445, 41.93808], [-87.80466, 41.93808]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76448, 41.93866], [-87.76472, 41.93865]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.78266, 41.9384], [-87.78287, 41.9384]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71769, 41.93927], [-87.71792, 41.93927]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71487, 41.93929], [-87.71505, 41.9393]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.78287, 41.9384], [-87.78308, 41.93838]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71505, 41.9393], [-87.71525, 41.9393]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77483, 41.93853], [-87.77506, 41.93853]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.79554, 41.93822], [-87.79563, 41.93822]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76497, 41.93865], [-87.76521, 41.93865]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7633, 41.9387], [-87.76353, 41.9387]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.78947, 41.9383], [-87.78975, 41.9383]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76545, 41.93864], [-87.7657, 41.93863]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68308, 41.93954], [-87.68547, 41.93952]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.82796, 41.93781], [-87.82822, 41.9378]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.81604, 41.93801], [-87.81623, 41.93802]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68843, 41.9395], [-87.68888, 41.93925]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76031, 41.93872], [-87.76054, 41.93872]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7782, 41.93849], [-87.77843, 41.93849]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.79318, 41.93826], [-87.7932, 41.93826]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77265, 41.93856], [-87.77287, 41.93854]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.75215, 41.93879], [-87.75406, 41.93877]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.74289, 41.93896], [-87.74315, 41.93895]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.73957, 41.93901], [-87.73979, 41.93899]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.78623, 41.93834], [-87.7864, 41.93833]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71897, 41.93927], [-87.71923, 41.93925]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.81647, 41.93804], [-87.8164, 41.93798]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.83023, 41.93776], [-87.83047, 41.93775]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.79702, 41.93819], [-87.79727, 41.93819]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68559, 41.93952], [-87.68843, 41.9395]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.75564, 41.93878], [-87.7559, 41.93877]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69645, 41.93935], [-87.69669, 41.93936]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71249, 41.93904], [-87.71252, 41.93921]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.80466, 41.93808], [-87.80491, 41.93807]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.81105, 41.93807], [-87.81122, 41.93807]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.80515, 41.93808], [-87.80542, 41.93807]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68958, 41.93925], [-87.68982, 41.93925]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67567, 41.93962], [-87.67866, 41.9396]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.78002, 41.93844], [-87.78025, 41.93844]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68066, 41.93958], [-87.68295, 41.93954]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.74385, 41.93891], [-87.74713, 41.93885]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.75906, 41.93877], [-87.75928, 41.93874]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77883, 41.93847], [-87.77904, 41.93846]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.73934, 41.93896], [-87.73957, 41.93901]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76871, 41.93857], [-87.76874, 41.93857]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.80685, 41.93808], [-87.80703, 41.93807]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77928, 41.93845], [-87.77952, 41.93845]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69488, 41.93936], [-87.69496, 41.93936]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76907, 41.9386], [-87.76928, 41.93859]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.82663, 41.93783], [-87.82688, 41.93783]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69297, 41.93934], [-87.6931, 41.93934]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.79102, 41.9383], [-87.79125, 41.93826]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.83229, 41.93772], [-87.83256, 41.93771]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.75648, 41.9388], [-87.7566, 41.9388]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7147, 41.93929], [-87.71487, 41.93929]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69074, 41.93934], [-87.69098, 41.93934]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.81493, 41.93802], [-87.81523, 41.93802]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.79069, 41.93827], [-87.79091, 41.9383]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69964, 41.93935], [-87.6999, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7566, 41.9388], [-87.75679, 41.93879]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.81642, 41.93804], [-87.81647, 41.93804]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7559, 41.93877], [-87.7561, 41.93877]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.75628, 41.9388], [-87.75648, 41.9388]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.82996, 41.93776], [-87.83023, 41.93776]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.82126, 41.93789], [-87.82135, 41.93788]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.74359, 41.93896], [-87.74378, 41.93895]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77109, 41.93858], [-87.7713, 41.93859]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69229, 41.93934], [-87.69254, 41.93934]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.82822, 41.9378], [-87.82842, 41.9378]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.83111, 41.93775], [-87.83116, 41.93775]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.74727, 41.93885], [-87.7491, 41.93882]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.78341, 41.93841], [-87.78349, 41.93837]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.80884, 41.93804], [-87.80905, 41.93807]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69182, 41.93933], [-87.69206, 41.93933]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76802, 41.93857], [-87.76828, 41.93857]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69569, 41.93934], [-87.69594, 41.93934]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.80596, 41.93807], [-87.80619, 41.93807]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7754, 41.93853], [-87.77567, 41.93853]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77777, 41.93847], [-87.77801, 41.93847]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69353, 41.93935], [-87.69376, 41.93935]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.79601, 41.93821], [-87.79625, 41.9382]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7561, 41.93877], [-87.75628, 41.9388]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.74003, 41.93899], [-87.74034, 41.93899]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.78975, 41.9383], [-87.79001, 41.9383]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.75406, 41.93877], [-87.75434, 41.93882]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77952, 41.93845], [-87.77979, 41.93845]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69333, 41.93935], [-87.69353, 41.93935]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7491, 41.93882], [-87.7493, 41.93882]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72988, 41.93908], [-87.73227, 41.93905]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72007, 41.93924], [-87.72031, 41.93925]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.83564, 41.93758], [-87.83578, 41.93749]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.80665, 41.93809], [-87.80685, 41.93808]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.82712, 41.93783], [-87.82741, 41.93782]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77465, 41.93853], [-87.77483, 41.93853]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77313, 41.93854], [-87.77336, 41.93855]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70799, 41.93942], [-87.70815, 41.93942]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71109, 41.93933], [-87.71126, 41.93933]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6737, 41.93965], [-87.67385, 41.93966]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77591, 41.93853], [-87.7761, 41.93853]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7071, 41.93941], [-87.70732, 41.93942]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76744, 41.93858], [-87.76764, 41.93858]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6992, 41.93935], [-87.69944, 41.93935]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76397, 41.9387], [-87.76429, 41.93866]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71362, 41.93929], [-87.71379, 41.93929]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.79752, 41.93819], [-87.79773, 41.93819]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68888, 41.93925], [-87.68909, 41.93924]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69465, 41.93936], [-87.69488, 41.93936]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71986, 41.93927], [-87.72007, 41.93924]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76472, 41.93865], [-87.76497, 41.93865]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77753, 41.93848], [-87.77777, 41.93847]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.78047, 41.93844], [-87.78068, 41.93845]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.74378, 41.93895], [-87.74385, 41.93891]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76353, 41.9387], [-87.7637, 41.9387]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.81254, 41.93804], [-87.81272, 41.93804]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71126, 41.93933], [-87.71145, 41.93931]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71145, 41.93931], [-87.71165, 41.93931]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70778, 41.93942], [-87.70799, 41.93942]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.78068, 41.93845], [-87.78088, 41.93846]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.79446, 41.93822], [-87.79469, 41.93822]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.75989, 41.93874], [-87.76009, 41.93872]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76521, 41.93865], [-87.76545, 41.93864]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71576, 41.9393], [-87.71606, 41.93929]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77287, 41.93854], [-87.77313, 41.93854]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69825, 41.93938], [-87.69845, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72973, 41.93909], [-87.72988, 41.93908]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.82529, 41.93783], [-87.82556, 41.93783]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76287, 41.9387], [-87.7631, 41.9387]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.8164, 41.93798], [-87.81915, 41.93793]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.74208, 41.93895], [-87.74239, 41.93895]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76143, 41.93872], [-87.76151, 41.93872]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.78241, 41.9384], [-87.78266, 41.9384]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7631, 41.9387], [-87.7633, 41.9387]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.80152, 41.93811], [-87.80163, 41.93811]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.82688, 41.93783], [-87.82712, 41.93783]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76391, 41.9387], [-87.76397, 41.9387]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.78349, 41.93837], [-87.78623, 41.93834]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7768, 41.93849], [-87.77705, 41.93849]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.80951, 41.93807], [-87.80979, 41.93807]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.79651, 41.9382], [-87.79676, 41.93819]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69874, 41.93936], [-87.69895, 41.93935]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.82871, 41.93779], [-87.82892, 41.93779]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.752, 41.93879], [-87.75215, 41.93879]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.75679, 41.93879], [-87.75706, 41.93876]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77801, 41.93847], [-87.7782, 41.93849]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69895, 41.93935], [-87.6992, 41.93935]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77856, 41.93849], [-87.77883, 41.93847]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.80979, 41.93807], [-87.81006, 41.93807]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.78308, 41.93838], [-87.78328, 41.9384]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.81237, 41.93804], [-87.81254, 41.93804]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.75451, 41.9388], [-87.75475, 41.93879]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.78136, 41.93842], [-87.7816, 41.93841]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.761, 41.9387], [-87.7612, 41.9387]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7218, 41.93927], [-87.72204, 41.93926]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.82556, 41.93783], [-87.8258, 41.93784]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.76699, 41.93864], [-87.7671, 41.93864]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.75895, 41.93877], [-87.75906, 41.93877]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69127, 41.93933], [-87.69154, 41.93933]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70896, 41.93938], [-87.70913, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71702, 41.9393], [-87.71721, 41.93931]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69669, 41.93936], [-87.69694, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.78025, 41.93844], [-87.78047, 41.93844]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.74062, 41.93899], [-87.74094, 41.93899]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72728, 41.93912], [-87.72747, 41.93912]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69777, 41.93938], [-87.69801, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.80768, 41.93804], [-87.8079, 41.93804]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.80865, 41.93804], [-87.80884, 41.93804]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70669, 41.93939], [-87.70688, 41.9394]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.82617, 41.93785], [-87.8264, 41.93783]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72214, 41.93925], [-87.7221, 41.93919]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.83155, 41.93774], [-87.83178, 41.93772]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.81424, 41.93806], [-87.81444, 41.93804]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.78098, 41.93845], [-87.78117, 41.93844]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72117, 41.93924], [-87.72142, 41.93924]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69496, 41.93936], [-87.69519, 41.93936]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77843, 41.93849], [-87.77856, 41.93849]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70999, 41.93938], [-87.71018, 41.93936]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70952, 41.93938], [-87.70977, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71969, 41.93927], [-87.71986, 41.93927]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7493, 41.93882], [-87.752, 41.93879]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.75806, 41.93874], [-87.7583, 41.93874]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77506, 41.93853], [-87.77519, 41.93853]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7085, 41.93941], [-87.7087, 41.93939]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69206, 41.93933], [-87.69229, 41.93934]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71444, 41.93928], [-87.7147, 41.93929]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77705, 41.93849], [-87.77727, 41.93848]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72163, 41.93925], [-87.7218, 41.93927]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77001, 41.93857], [-87.77023, 41.93857]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69734, 41.93938], [-87.69756, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.83395, 41.93768], [-87.83418, 41.93768]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.79024, 41.93828], [-87.79048, 41.93827]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.79495, 41.9382], [-87.79516, 41.93822]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69003, 41.93927], [-87.69022, 41.93927]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.82371, 41.93784], [-87.82397, 41.93786]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69154, 41.93933], [-87.69182, 41.93933]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.81122, 41.93807], [-87.81124, 41.93807]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67875, 41.9396], [-87.68054, 41.93958]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70815, 41.93942], [-87.70815, 41.93942]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.75706, 41.93876], [-87.75728, 41.93876]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69275, 41.93934], [-87.69297, 41.93934]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.78873, 41.93831], [-87.78897, 41.9383]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77638, 41.93849], [-87.77657, 41.93849]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.8354, 41.93737], [-87.83531, 41.93748]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.82445, 41.93784], [-87.82472, 41.93784]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70934, 41.93938], [-87.70952, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.81188, 41.93804], [-87.81213, 41.93803]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.81315, 41.93803], [-87.81337, 41.93803]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68547, 41.93952], [-87.68559, 41.93952]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.82842, 41.9378], [-87.82863, 41.9378]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7932, 41.93826], [-87.79347, 41.93824]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77444, 41.93854], [-87.77465, 41.93853]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6962, 41.93934], [-87.69645, 41.93935]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.83578, 41.93736], [-87.83559, 41.9373]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71068, 41.93934], [-87.71088, 41.93934]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71549, 41.9393], [-87.71576, 41.9393]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.73454, 41.93903], [-87.73718, 41.93899]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71818, 41.93927], [-87.71845, 41.93927]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69944, 41.93935], [-87.69964, 41.93935]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.69254, 41.93934], [-87.69275, 41.93934]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.82968, 41.93776], [-87.82996, 41.93776]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.77427, 41.93854], [-87.77444, 41.93854]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.74153, 41.93896], [-87.7418, 41.93896]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.80408, 41.93807], [-87.80445, 41.93808]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.80638, 41.93808], [-87.80657, 41.93809]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.81444, 41.93804], [-87.81467, 41.93803]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70913, 41.93938], [-87.70934, 41.93938]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70732, 41.93942], [-87.70754, 41.93942]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.7942, 41.93822], [-87.79446, 41.93822]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.71487, 41.93929], [-87.71487, 41.93929]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.70815, 41.93942], [-87.7085, 41.93941]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.72077, 41.93924], [-87.72099, 41.93924]]}, "type": "Feature", "properties": {"num_passengers": 8654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62611, 41.89674], [-87.62668, 41.89673]]}, "type": "Feature", "properties": {"num_passengers": 8659}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67132, 41.93967], [-87.67147, 41.93967]]}, "type": "Feature", "properties": {"num_passengers": 8662}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62044, 41.71576], [-87.62044, 41.71595]]}, "type": "Feature", "properties": {"num_passengers": 8663}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63285, 41.9154], [-87.6328, 41.91529]]}, "type": "Feature", "properties": {"num_passengers": 8671}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6328, 41.91529], [-87.63275, 41.91518]]}, "type": "Feature", "properties": {"num_passengers": 8671}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63324, 41.91593], [-87.6331, 41.91577]]}, "type": "Feature", "properties": {"num_passengers": 8671}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63466, 41.91894], [-87.63461, 41.91883]]}, "type": "Feature", "properties": {"num_passengers": 8671}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63358, 41.91625], [-87.63337, 41.91607]]}, "type": "Feature", "properties": {"num_passengers": 8671}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6331, 41.91577], [-87.63304, 41.9157]]}, "type": "Feature", "properties": {"num_passengers": 8671}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6339, 41.91659], [-87.63373, 41.91642]]}, "type": "Feature", "properties": {"num_passengers": 8671}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63452, 41.91855], [-87.63447, 41.91836]]}, "type": "Feature", "properties": {"num_passengers": 8671}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63428, 41.91739], [-87.63418, 41.91709]]}, "type": "Feature", "properties": {"num_passengers": 8671}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63304, 41.9157], [-87.63294, 41.91557]]}, "type": "Feature", "properties": {"num_passengers": 8671}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63418, 41.91709], [-87.63409, 41.91688]]}, "type": "Feature", "properties": {"num_passengers": 8671}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66489, 41.89607], [-87.66419, 41.89608]]}, "type": "Feature", "properties": {"num_passengers": 8671}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63401, 41.91674], [-87.6339, 41.91659]]}, "type": "Feature", "properties": {"num_passengers": 8671}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63409, 41.91688], [-87.63401, 41.91674]]}, "type": "Feature", "properties": {"num_passengers": 8671}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63461, 41.91883], [-87.63461, 41.91883]]}, "type": "Feature", "properties": {"num_passengers": 8671}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63373, 41.91642], [-87.63358, 41.91625]]}, "type": "Feature", "properties": {"num_passengers": 8671}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63337, 41.91607], [-87.63324, 41.91593]]}, "type": "Feature", "properties": {"num_passengers": 8671}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63458, 41.91875], [-87.63452, 41.91855]]}, "type": "Feature", "properties": {"num_passengers": 8671}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63436, 41.91779], [-87.63428, 41.91739]]}, "type": "Feature", "properties": {"num_passengers": 8671}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63442, 41.91811], [-87.63436, 41.91779]]}, "type": "Feature", "properties": {"num_passengers": 8671}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63447, 41.91836], [-87.63442, 41.91811]]}, "type": "Feature", "properties": {"num_passengers": 8671}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63275, 41.91518], [-87.63269, 41.91505]]}, "type": "Feature", "properties": {"num_passengers": 8671}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63461, 41.91883], [-87.63458, 41.91875]]}, "type": "Feature", "properties": {"num_passengers": 8671}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63294, 41.91557], [-87.63285, 41.9154]]}, "type": "Feature", "properties": {"num_passengers": 8671}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63472, 41.91907], [-87.63466, 41.91894]]}, "type": "Feature", "properties": {"num_passengers": 8671}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64154, 41.94535], [-87.64162, 41.94551]]}, "type": "Feature", "properties": {"num_passengers": 8672}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62044, 41.71554], [-87.62044, 41.71576]]}, "type": "Feature", "properties": {"num_passengers": 8673}}, {"geometry": {"type": "LineString", "coordinates": [[-87.67147, 41.93967], [-87.6737, 41.93965]]}, "type": "Feature", "properties": {"num_passengers": 8673}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65144, 41.75059], [-87.65168, 41.75059]]}, "type": "Feature", "properties": {"num_passengers": 8687}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65442, 41.75056], [-87.65465, 41.75056]]}, "type": "Feature", "properties": {"num_passengers": 8687}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65168, 41.75059], [-87.65196, 41.75059]]}, "type": "Feature", "properties": {"num_passengers": 8687}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65196, 41.75059], [-87.65228, 41.75058]]}, "type": "Feature", "properties": {"num_passengers": 8687}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65382, 41.75059], [-87.65395, 41.75059]]}, "type": "Feature", "properties": {"num_passengers": 8687}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65465, 41.75056], [-87.65485, 41.75056]]}, "type": "Feature", "properties": {"num_passengers": 8687}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6529, 41.75058], [-87.65314, 41.75059]]}, "type": "Feature", "properties": {"num_passengers": 8687}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65417, 41.75058], [-87.65442, 41.75056]]}, "type": "Feature", "properties": {"num_passengers": 8687}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65228, 41.75058], [-87.65258, 41.75056]]}, "type": "Feature", "properties": {"num_passengers": 8687}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65314, 41.75059], [-87.65338, 41.7506]]}, "type": "Feature", "properties": {"num_passengers": 8687}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65258, 41.75056], [-87.6529, 41.75058]]}, "type": "Feature", "properties": {"num_passengers": 8687}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65121, 41.75059], [-87.65144, 41.75059]]}, "type": "Feature", "properties": {"num_passengers": 8687}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65361, 41.75059], [-87.65382, 41.75059]]}, "type": "Feature", "properties": {"num_passengers": 8687}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65338, 41.7506], [-87.65361, 41.75059]]}, "type": "Feature", "properties": {"num_passengers": 8687}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65395, 41.75059], [-87.65417, 41.75058]]}, "type": "Feature", "properties": {"num_passengers": 8687}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59573, 41.75143], [-87.59596, 41.75142]]}, "type": "Feature", "properties": {"num_passengers": 8691}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62758, 41.87041], [-87.62759, 41.87027]]}, "type": "Feature", "properties": {"num_passengers": 8704}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62412, 41.87313], [-87.62389, 41.87313]]}, "type": "Feature", "properties": {"num_passengers": 8711}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6295, 41.88864], [-87.62952, 41.88886]]}, "type": "Feature", "properties": {"num_passengers": 8713}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63495, 41.91942], [-87.63504, 41.91951]]}, "type": "Feature", "properties": {"num_passengers": 8725}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63364, 41.91433], [-87.63357, 41.91424]]}, "type": "Feature", "properties": {"num_passengers": 8725}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63582, 41.89653], [-87.63436, 41.89655]]}, "type": "Feature", "properties": {"num_passengers": 8725}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62041, 41.71533], [-87.62044, 41.71554]]}, "type": "Feature", "properties": {"num_passengers": 8727}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66908, 41.93972], [-87.6692, 41.93972]]}, "type": "Feature", "properties": {"num_passengers": 8731}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66532, 41.89614], [-87.66592, 41.89613]]}, "type": "Feature", "properties": {"num_passengers": 8731}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64036, 41.92512], [-87.64042, 41.92526]]}, "type": "Feature", "properties": {"num_passengers": 8738}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62032, 41.75107], [-87.62051, 41.75105]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62429, 41.7511], [-87.62445, 41.75112]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61749, 41.75112], [-87.61769, 41.75112]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61822, 41.75111], [-87.61841, 41.7511]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62248, 41.75105], [-87.62272, 41.75104]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61982, 41.75109], [-87.62003, 41.75108]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62367, 41.75103], [-87.62391, 41.75104]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62124, 41.75107], [-87.62144, 41.75107]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6196, 41.7511], [-87.61982, 41.75109]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61954, 41.7511], [-87.6196, 41.7511]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61769, 41.75112], [-87.61792, 41.75112]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62206, 41.75105], [-87.62227, 41.75105]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62465, 41.75113], [-87.62492, 41.75113]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62286, 41.75104], [-87.62303, 41.75103]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62095, 41.75107], [-87.62117, 41.75107]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62051, 41.75105], [-87.62074, 41.75105]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61725, 41.75111], [-87.61749, 41.75112]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62349, 41.75103], [-87.62367, 41.75103]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62074, 41.75105], [-87.62095, 41.75107]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62003, 41.75108], [-87.62032, 41.75107]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62144, 41.75107], [-87.62163, 41.75107]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62391, 41.75104], [-87.62413, 41.75107]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62303, 41.75103], [-87.62329, 41.75103]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62163, 41.75107], [-87.62184, 41.75107]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61909, 41.75107], [-87.61931, 41.75107]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62117, 41.75107], [-87.62124, 41.75107]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62272, 41.75104], [-87.62286, 41.75104]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61798, 41.75112], [-87.61822, 41.75111]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62329, 41.75103], [-87.62349, 41.75103]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62413, 41.75107], [-87.62429, 41.7511]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62184, 41.75107], [-87.62206, 41.75105]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61885, 41.75107], [-87.61909, 41.75107]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61841, 41.7511], [-87.61861, 41.75109]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61931, 41.75107], [-87.61954, 41.7511]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61792, 41.75112], [-87.61798, 41.75112]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62445, 41.75112], [-87.62465, 41.75113]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62227, 41.75105], [-87.62248, 41.75105]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61861, 41.75109], [-87.61885, 41.75107]]}, "type": "Feature", "properties": {"num_passengers": 8739}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66474, 41.89615], [-87.66532, 41.89614]]}, "type": "Feature", "properties": {"num_passengers": 8744}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66177, 41.8962], [-87.66225, 41.89619]]}, "type": "Feature", "properties": {"num_passengers": 8757}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65099, 41.75059], [-87.65121, 41.75059]]}, "type": "Feature", "properties": {"num_passengers": 8757}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65968, 41.89623], [-87.66016, 41.89622]]}, "type": "Feature", "properties": {"num_passengers": 8757}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66225, 41.89619], [-87.66235, 41.89619]]}, "type": "Feature", "properties": {"num_passengers": 8757}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66235, 41.89619], [-87.66289, 41.89618]]}, "type": "Feature", "properties": {"num_passengers": 8757}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66025, 41.89622], [-87.6607, 41.89621]]}, "type": "Feature", "properties": {"num_passengers": 8757}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66289, 41.89618], [-87.66345, 41.89617]]}, "type": "Feature", "properties": {"num_passengers": 8757}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66466, 41.89616], [-87.66474, 41.89615]]}, "type": "Feature", "properties": {"num_passengers": 8757}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65857, 41.89625], [-87.65911, 41.89623]]}, "type": "Feature", "properties": {"num_passengers": 8757}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65911, 41.89623], [-87.65968, 41.89623]]}, "type": "Feature", "properties": {"num_passengers": 8757}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66345, 41.89617], [-87.66416, 41.89616]]}, "type": "Feature", "properties": {"num_passengers": 8757}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6607, 41.89621], [-87.66125, 41.89621]]}, "type": "Feature", "properties": {"num_passengers": 8757}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66416, 41.89616], [-87.66466, 41.89616]]}, "type": "Feature", "properties": {"num_passengers": 8757}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66125, 41.89621], [-87.66177, 41.8962]]}, "type": "Feature", "properties": {"num_passengers": 8757}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66016, 41.89622], [-87.66025, 41.89622]]}, "type": "Feature", "properties": {"num_passengers": 8757}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62001, 41.71191], [-87.62001, 41.71212]]}, "type": "Feature", "properties": {"num_passengers": 8769}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61985, 41.71074], [-87.61987, 41.71088]]}, "type": "Feature", "properties": {"num_passengers": 8769}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6199, 41.70908], [-87.61989, 41.70922]]}, "type": "Feature", "properties": {"num_passengers": 8769}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62028, 41.71443], [-87.62028, 41.71445]]}, "type": "Feature", "properties": {"num_passengers": 8769}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62016, 41.71353], [-87.62019, 41.71374]]}, "type": "Feature", "properties": {"num_passengers": 8769}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62022, 41.71394], [-87.62024, 41.71413]]}, "type": "Feature", "properties": {"num_passengers": 8769}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62014, 41.71336], [-87.62016, 41.71353]]}, "type": "Feature", "properties": {"num_passengers": 8769}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61985, 41.71021], [-87.61985, 41.7104]]}, "type": "Feature", "properties": {"num_passengers": 8769}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62024, 41.71413], [-87.62025, 41.71427]]}, "type": "Feature", "properties": {"num_passengers": 8769}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62033, 41.7146], [-87.62033, 41.71474]]}, "type": "Feature", "properties": {"num_passengers": 8769}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62028, 41.71445], [-87.62033, 41.7146]]}, "type": "Feature", "properties": {"num_passengers": 8769}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61985, 41.71], [-87.61985, 41.71021]]}, "type": "Feature", "properties": {"num_passengers": 8769}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62004, 41.71244], [-87.62004, 41.71254]]}, "type": "Feature", "properties": {"num_passengers": 8769}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62033, 41.71474], [-87.62038, 41.71491]]}, "type": "Feature", "properties": {"num_passengers": 8769}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61995, 41.71149], [-87.62, 41.7117]]}, "type": "Feature", "properties": {"num_passengers": 8769}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61987, 41.7098], [-87.61985, 41.71]]}, "type": "Feature", "properties": {"num_passengers": 8769}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62006, 41.71274], [-87.62009, 41.7129]]}, "type": "Feature", "properties": {"num_passengers": 8769}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61985, 41.71069], [-87.61985, 41.71074]]}, "type": "Feature", "properties": {"num_passengers": 8769}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61985, 41.71055], [-87.61985, 41.71069]]}, "type": "Feature", "properties": {"num_passengers": 8769}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61985, 41.7104], [-87.61985, 41.71055]]}, "type": "Feature", "properties": {"num_passengers": 8769}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62025, 41.71427], [-87.62028, 41.71443]]}, "type": "Feature", "properties": {"num_passengers": 8769}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62, 41.7117], [-87.62001, 41.71191]]}, "type": "Feature", "properties": {"num_passengers": 8769}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62012, 41.7132], [-87.62014, 41.71336]]}, "type": "Feature", "properties": {"num_passengers": 8769}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62004, 41.71254], [-87.62006, 41.71274]]}, "type": "Feature", "properties": {"num_passengers": 8769}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61989, 41.70922], [-87.61989, 41.7094]]}, "type": "Feature", "properties": {"num_passengers": 8769}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61989, 41.7094], [-87.61987, 41.7096]]}, "type": "Feature", "properties": {"num_passengers": 8769}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61987, 41.71088], [-87.6199, 41.7111]]}, "type": "Feature", "properties": {"num_passengers": 8769}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62003, 41.71231], [-87.62004, 41.71244]]}, "type": "Feature", "properties": {"num_passengers": 8769}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61987, 41.7096], [-87.61987, 41.7098]]}, "type": "Feature", "properties": {"num_passengers": 8769}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62011, 41.71305], [-87.62012, 41.7132]]}, "type": "Feature", "properties": {"num_passengers": 8769}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61993, 41.71129], [-87.61995, 41.71149]]}, "type": "Feature", "properties": {"num_passengers": 8769}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62009, 41.7129], [-87.62011, 41.71305]]}, "type": "Feature", "properties": {"num_passengers": 8769}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62001, 41.71212], [-87.62003, 41.71231]]}, "type": "Feature", "properties": {"num_passengers": 8769}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6199, 41.7111], [-87.61993, 41.71129]]}, "type": "Feature", "properties": {"num_passengers": 8769}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62019, 41.71374], [-87.62022, 41.71394]]}, "type": "Feature", "properties": {"num_passengers": 8769}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62381, 41.85463], [-87.62382, 41.85477]]}, "type": "Feature", "properties": {"num_passengers": 8774}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62382, 41.85477], [-87.62382, 41.85491]]}, "type": "Feature", "properties": {"num_passengers": 8774}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62038, 41.71491], [-87.62041, 41.7151]]}, "type": "Feature", "properties": {"num_passengers": 8775}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62041, 41.7151], [-87.62041, 41.71533]]}, "type": "Feature", "properties": {"num_passengers": 8781}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62758, 41.87041], [-87.62758, 41.87041]]}, "type": "Feature", "properties": {"num_passengers": 8783}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63269, 41.91505], [-87.63257, 41.91491]]}, "type": "Feature", "properties": {"num_passengers": 8792}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66419, 41.89608], [-87.66409, 41.89608]]}, "type": "Feature", "properties": {"num_passengers": 8794}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64853, 41.97255], [-87.64858, 41.97273]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62404, 41.90056], [-87.62401, 41.90075]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63101, 41.92587], [-87.63106, 41.92606]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62361, 41.90256], [-87.62362, 41.90269]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6315, 41.92751], [-87.63157, 41.9277]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62401, 41.89896], [-87.62401, 41.89906]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64327, 41.94935], [-87.64338, 41.94953]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62505, 41.90702], [-87.6251, 41.90722]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62401, 41.89906], [-87.62401, 41.89922]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63025, 41.92351], [-87.63033, 41.92371]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63879, 41.94126], [-87.63892, 41.94143]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64765, 41.96859], [-87.64767, 41.96878]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6255, 41.90883], [-87.62553, 41.90903]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64447, 41.95396], [-87.64447, 41.95416]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62933, 41.91996], [-87.62938, 41.92018]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62656, 41.91366], [-87.62664, 41.91385]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62597, 41.91248], [-87.62607, 41.91267]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64029, 41.94389], [-87.64038, 41.94408]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62963, 41.92148], [-87.62969, 41.92169]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64317, 41.94917], [-87.64327, 41.94935]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62406, 41.90037], [-87.62404, 41.90056]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64417, 41.9508], [-87.64427, 41.95098]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62363, 41.90202], [-87.62359, 41.90215]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63372, 41.93686], [-87.63389, 41.93698]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62403, 41.89966], [-87.62405, 41.89987]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63197, 41.93393], [-87.63204, 41.93409]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62995, 41.9225], [-87.63001, 41.92271]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6474, 41.96757], [-87.64745, 41.96776]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63406, 41.93714], [-87.63425, 41.93728]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63914, 41.9418], [-87.63927, 41.942]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63299, 41.936], [-87.6331, 41.93618]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63324, 41.93635], [-87.6334, 41.93652]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64878, 41.97349], [-87.64886, 41.97368]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62636, 41.91327], [-87.62645, 41.91346]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62405, 41.90003], [-87.62406, 41.9002]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62585, 41.91209], [-87.62589, 41.91229]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63192, 41.9299], [-87.63192, 41.9301]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63055, 41.92452], [-87.63063, 41.92471]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64835, 41.97179], [-87.6484, 41.97198]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6319, 41.93133], [-87.6319, 41.93154]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63261, 41.93546], [-87.63274, 41.93564]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64722, 41.96679], [-87.64727, 41.96699]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62491, 41.90645], [-87.62496, 41.90664]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64772, 41.96898], [-87.64778, 41.96917]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62542, 41.90844], [-87.62546, 41.90864]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62984, 41.9221], [-87.62988, 41.92231]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64796, 41.96995], [-87.64799, 41.97016]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64915, 41.97457], [-87.6492, 41.97476]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64659, 41.96405], [-87.64664, 41.96424]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64656, 41.96387], [-87.64659, 41.96405]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64799, 41.97016], [-87.64804, 41.97035]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64155, 41.94639], [-87.64165, 41.94657]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63176, 41.92829], [-87.63181, 41.92849]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62381, 41.90147], [-87.62376, 41.9016]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63189, 41.92888], [-87.6319, 41.92909]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63082, 41.92529], [-87.63087, 41.92549]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62616, 41.91286], [-87.62626, 41.91307]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62373, 41.90312], [-87.6238, 41.90325]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64209, 41.9473], [-87.64219, 41.94748]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63425, 41.93728], [-87.63445, 41.93743]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63135, 41.92695], [-87.63139, 41.92714]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64306, 41.94899], [-87.64317, 41.94917]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63483, 41.93771], [-87.63502, 41.93785]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63128, 41.92677], [-87.63135, 41.92695]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63215, 41.93449], [-87.63224, 41.93469]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62515, 41.90743], [-87.62521, 41.90763]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63185, 41.93274], [-87.63185, 41.93294]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64603, 41.96025], [-87.64603, 41.96044]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64059, 41.94447], [-87.64068, 41.94467]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6492, 41.97476], [-87.64923, 41.97493]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64452, 41.95218], [-87.64452, 41.95239]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64845, 41.97217], [-87.64848, 41.97237]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63052, 41.92432], [-87.63055, 41.92452]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64619, 41.96215], [-87.64624, 41.96234]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64804, 41.97035], [-87.64808, 41.97056]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63502, 41.93785], [-87.63519, 41.93799]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6461, 41.96141], [-87.64611, 41.96159]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64635, 41.96292], [-87.6464, 41.96311]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62369, 41.90298], [-87.62373, 41.90312]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.89936], [-87.62402, 41.89948]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63192, 41.93052], [-87.6319, 41.93072]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62401, 41.89922], [-87.62402, 41.89936]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62572, 41.91127], [-87.62572, 41.91148]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63033, 41.92371], [-87.63038, 41.92392]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6491, 41.97438], [-87.64915, 41.97457]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62406, 41.9002], [-87.62406, 41.90037]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63776, 41.94005], [-87.63792, 41.94022]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62893, 41.91867], [-87.62899, 41.91889]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63892, 41.94143], [-87.63903, 41.94161]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62562, 41.90983], [-87.62564, 41.91002]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62567, 41.91064], [-87.62569, 41.91085]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64219, 41.94748], [-87.6423, 41.94767]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62359, 41.90242], [-87.62361, 41.90256]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6473, 41.96717], [-87.64735, 41.96737]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64687, 41.96532], [-87.64692, 41.96549]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64134, 41.94601], [-87.64145, 41.9462]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62408, 41.90382], [-87.62418, 41.90398]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62807, 41.9166], [-87.62817, 41.9168]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64068, 41.94467], [-87.64078, 41.94485]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64463, 41.95534], [-87.64468, 41.95555]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64527, 41.95712], [-87.64533, 41.95731]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64511, 41.95673], [-87.64517, 41.95692]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.89948], [-87.62403, 41.89966]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64686, 41.96513], [-87.64687, 41.96532]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64718, 41.9666], [-87.64722, 41.96679]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64664, 41.96424], [-87.64668, 41.96441]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62852, 41.91763], [-87.62863, 41.91782]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63093, 41.92568], [-87.63101, 41.92587]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64198, 41.94711], [-87.64209, 41.9473]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6463, 41.96272], [-87.64635, 41.96292]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64338, 41.94953], [-87.64349, 41.94971]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64754, 41.96818], [-87.64759, 41.96838]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62399, 41.89799], [-87.624, 41.89825]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64767, 41.96878], [-87.64772, 41.96898]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63106, 41.92606], [-87.63112, 41.92624]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63967, 41.94275], [-87.63976, 41.94294]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64449, 41.95319], [-87.64447, 41.95339]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64435, 41.95118], [-87.64443, 41.95138]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62785, 41.91619], [-87.62796, 41.91639]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64867, 41.97311], [-87.64873, 41.9733]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62938, 41.92018], [-87.62942, 41.9204]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62359, 41.90229], [-87.62359, 41.90242]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62537, 41.90824], [-87.62542, 41.90844]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6319, 41.93113], [-87.6319, 41.93133]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64672, 41.96459], [-87.64676, 41.96477]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62645, 41.91346], [-87.62656, 41.91366]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63189, 41.93195], [-87.63189, 41.93214]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64479, 41.95595], [-87.64487, 41.95615]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64826, 41.9714], [-87.64831, 41.97159]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64727, 41.96699], [-87.6473, 41.96717]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62359, 41.90215], [-87.62359, 41.90229]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63557, 41.93826], [-87.63575, 41.93841]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64447, 41.95416], [-87.64447, 41.95435]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64274, 41.94843], [-87.64282, 41.94861]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62566, 41.91023], [-87.62567, 41.91043]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62926, 41.91975], [-87.62933, 41.91996]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64451, 41.95475], [-87.64454, 41.95495]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62947, 41.92061], [-87.62952, 41.92084]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62844, 41.91742], [-87.62852, 41.91763]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62521, 41.90763], [-87.62526, 41.90783]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62558, 41.90942], [-87.62561, 41.90962]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64533, 41.95731], [-87.64541, 41.9575]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62607, 41.91267], [-87.62616, 41.91286]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6484, 41.97198], [-87.64845, 41.97217]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64708, 41.96622], [-87.64715, 41.96641]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62694, 41.91444], [-87.62702, 41.91464]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64468, 41.95555], [-87.64473, 41.95575]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63986, 41.94313], [-87.63995, 41.94331]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64494, 41.95634], [-87.64502, 41.95653]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62775, 41.916], [-87.62785, 41.91619]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63575, 41.93841], [-87.63592, 41.93853]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63146, 41.92733], [-87.6315, 41.92751]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64873, 41.9733], [-87.64878, 41.97349]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64362, 41.94988], [-87.64371, 41.95007]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62834, 41.9172], [-87.62844, 41.91742]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64371, 41.95007], [-87.64384, 41.95025]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62907, 41.91909], [-87.62912, 41.91931]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6468, 41.96495], [-87.64686, 41.96513]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62462, 41.90552], [-87.6247, 41.9057]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63189, 41.93174], [-87.63189, 41.93195]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64603, 41.96044], [-87.64605, 41.96064]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64549, 41.95769], [-87.64556, 41.95789]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64176, 41.94674], [-87.64187, 41.94693]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63157, 41.9277], [-87.63165, 41.92789]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62531, 41.90804], [-87.62537, 41.90824]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62485, 41.90625], [-87.62491, 41.90645]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64296, 41.9488], [-87.64306, 41.94899]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64451, 41.95258], [-87.64449, 41.95279]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62734, 41.91522], [-87.62744, 41.91542]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64487, 41.95615], [-87.64494, 41.95634]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62887, 41.91845], [-87.62893, 41.91867]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62988, 41.92231], [-87.62995, 41.9225]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6319, 41.93154], [-87.63189, 41.93174]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62391, 41.90118], [-87.62381, 41.90147]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62496, 41.90664], [-87.625, 41.90683]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64078, 41.94485], [-87.64089, 41.94505]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62376, 41.9016], [-87.62372, 41.90174]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64392, 41.95043], [-87.64405, 41.95061]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64858, 41.97273], [-87.64861, 41.97292]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64745, 41.96776], [-87.64749, 41.96797]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62396, 41.90095], [-87.62391, 41.90118]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63286, 41.93582], [-87.63299, 41.936]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64848, 41.97237], [-87.64853, 41.97255]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62569, 41.91085], [-87.62572, 41.91106]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6319, 41.92909], [-87.63192, 41.92928]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63139, 41.92714], [-87.63146, 41.92733]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63189, 41.93353], [-87.63192, 41.93373]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6244, 41.90464], [-87.62445, 41.90481]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6292, 41.91953], [-87.62926, 41.91975]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64899, 41.97404], [-87.64905, 41.97422]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63063, 41.92471], [-87.63069, 41.9249]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62526, 41.90783], [-87.62531, 41.90804]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6247, 41.9057], [-87.62473, 41.90588]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63519, 41.93799], [-87.63538, 41.93813]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64616, 41.96197], [-87.64619, 41.96215]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62401, 41.89843], [-87.62402, 41.89863]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62561, 41.90962], [-87.62562, 41.90983]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62899, 41.91889], [-87.62907, 41.91909]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64778, 41.96917], [-87.64783, 41.96937]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62744, 41.91542], [-87.62755, 41.91561]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62969, 41.92169], [-87.62974, 41.92191]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62912, 41.91931], [-87.6292, 41.91953]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64831, 41.97159], [-87.64835, 41.97179]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64791, 41.96976], [-87.64796, 41.96995]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63632, 41.93882], [-87.63649, 41.93893]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62572, 41.91148], [-87.62574, 41.91168]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64187, 41.94693], [-87.64198, 41.94711]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64449, 41.95279], [-87.64449, 41.95298]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62394, 41.90352], [-87.62402, 41.90367]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6296, 41.92126], [-87.62963, 41.92148]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64703, 41.96605], [-87.64708, 41.96622]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64517, 41.95692], [-87.64527, 41.95712]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63927, 41.942], [-87.63935, 41.94219]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64702, 41.96586], [-87.64703, 41.96605]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64611, 41.96159], [-87.64613, 41.96178]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.625, 41.90683], [-87.62505, 41.90702]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64447, 41.95378], [-87.64447, 41.95396]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63613, 41.93868], [-87.63632, 41.93882]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.90367], [-87.62408, 41.90382]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63192, 41.9297], [-87.63192, 41.9299]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6319, 41.93072], [-87.6319, 41.93093]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63182, 41.92868], [-87.63189, 41.92888]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62564, 41.91002], [-87.62566, 41.91023]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63903, 41.94161], [-87.63914, 41.9418]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6425, 41.94805], [-87.64262, 41.94824]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63744, 41.93973], [-87.63762, 41.9399]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64564, 41.95807], [-87.64568, 41.95826]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63012, 41.92312], [-87.63019, 41.92331]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64384, 41.95025], [-87.64392, 41.95043]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64038, 41.94408], [-87.64048, 41.94428]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62556, 41.90923], [-87.62558, 41.90942]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62685, 41.91426], [-87.62694, 41.91444]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63944, 41.94237], [-87.63957, 41.94256]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62626, 41.91307], [-87.62636, 41.91327]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64575, 41.95845], [-87.64579, 41.95865]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63762, 41.9399], [-87.63776, 41.94005]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64165, 41.94657], [-87.64176, 41.94674]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64668, 41.96441], [-87.64672, 41.96459]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.646, 41.95984], [-87.64603, 41.96004]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64583, 41.95885], [-87.64587, 41.95904]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62869, 41.91803], [-87.62879, 41.91825]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6324, 41.93508], [-87.6325, 41.93527]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62589, 41.91229], [-87.62597, 41.91248]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.90398], [-87.62423, 41.90415]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63069, 41.9249], [-87.63074, 41.9251]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64452, 41.95197], [-87.64452, 41.95218]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6238, 41.90325], [-87.62386, 41.90338]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64016, 41.9437], [-87.64029, 41.94389]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63187, 41.93333], [-87.63189, 41.93353]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64452, 41.95177], [-87.64452, 41.95197]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64048, 41.94428], [-87.64059, 41.94447]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63192, 41.93032], [-87.63192, 41.93052]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62952, 41.92084], [-87.62955, 41.92105]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63649, 41.93893], [-87.6367, 41.93908]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63123, 41.9266], [-87.63128, 41.92677]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63356, 41.93669], [-87.63372, 41.93686]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64886, 41.97368], [-87.64893, 41.97386]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64556, 41.95789], [-87.64564, 41.95807]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64823, 41.97118], [-87.64826, 41.9714]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63187, 41.93234], [-87.63187, 41.93254]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63038, 41.92392], [-87.63046, 41.92412]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64089, 41.94505], [-87.641, 41.94524]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64449, 41.95454], [-87.64451, 41.95475]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63185, 41.93314], [-87.63187, 41.93333]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62401, 41.90075], [-87.62396, 41.90095]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62577, 41.91189], [-87.62585, 41.91209]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64699, 41.96568], [-87.64702, 41.96586]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63707, 41.93937], [-87.63727, 41.93958]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62445, 41.90481], [-87.6245, 41.90498]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62546, 41.90864], [-87.6255, 41.90883]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64125, 41.94581], [-87.64134, 41.94601]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64447, 41.95358], [-87.64447, 41.95378]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63192, 41.9301], [-87.63192, 41.93032]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63087, 41.92549], [-87.63093, 41.92568]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63204, 41.93409], [-87.6321, 41.93429]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64106, 41.94543], [-87.64114, 41.94563]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63192, 41.93373], [-87.63197, 41.93393]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64786, 41.96956], [-87.64791, 41.96976]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6319, 41.93093], [-87.6319, 41.93113]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62386, 41.90338], [-87.62394, 41.90352]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64605, 41.96083], [-87.64608, 41.96102]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64627, 41.96252], [-87.6463, 41.96272]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62721, 41.91503], [-87.62734, 41.91522]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64443, 41.95138], [-87.64447, 41.95157]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64454, 41.95495], [-87.64457, 41.95514]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64568, 41.95826], [-87.64575, 41.95845]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6464, 41.96311], [-87.64643, 41.9633]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62826, 41.917], [-87.62834, 41.9172]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63019, 41.92331], [-87.63025, 41.92351]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6245, 41.90498], [-87.62453, 41.90516]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62879, 41.91825], [-87.62887, 41.91845]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62372, 41.90174], [-87.62367, 41.90188]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64905, 41.97422], [-87.6491, 41.97438]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62766, 41.9158], [-87.62775, 41.916]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64502, 41.95653], [-87.64511, 41.95673]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63836, 41.94074], [-87.63851, 41.94091]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6321, 41.93429], [-87.63215, 41.93449]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64587, 41.95904], [-87.64592, 41.95924]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64624, 41.96234], [-87.64627, 41.96252]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62664, 41.91385], [-87.62675, 41.91405]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6317, 41.92809], [-87.63176, 41.92829]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64783, 41.96937], [-87.64786, 41.96956]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63001, 41.92271], [-87.63007, 41.92291]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63224, 41.93469], [-87.63231, 41.93489]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62453, 41.90516], [-87.62459, 41.90534]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64605, 41.96064], [-87.64605, 41.96083]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.89879], [-87.62401, 41.89896]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63824, 41.94057], [-87.63836, 41.94074]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.89863], [-87.62402, 41.89879]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63792, 41.94022], [-87.63808, 41.94038]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64579, 41.95865], [-87.64583, 41.95885]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62712, 41.91484], [-87.62721, 41.91503]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.646, 41.95964], [-87.646, 41.95984]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63117, 41.92642], [-87.63123, 41.9266]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63181, 41.92849], [-87.63182, 41.92868]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6251, 41.90722], [-87.62515, 41.90743]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62755, 41.91561], [-87.62766, 41.9158]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.624, 41.89825], [-87.62401, 41.89843]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64595, 41.95944], [-87.646, 41.95964]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64692, 41.96549], [-87.64699, 41.96568]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63976, 41.94294], [-87.63986, 41.94313]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64715, 41.96641], [-87.64718, 41.9666]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.90415], [-87.62429, 41.90431]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63189, 41.93214], [-87.63187, 41.93234]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63865, 41.94108], [-87.63879, 41.94126]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63851, 41.94091], [-87.63865, 41.94108]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63192, 41.92949], [-87.63192, 41.9297]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64643, 41.9633], [-87.64648, 41.9635]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62796, 41.91639], [-87.62807, 41.9166]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64008, 41.9435], [-87.64016, 41.9437]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62405, 41.89987], [-87.62405, 41.90003]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64449, 41.95298], [-87.64449, 41.95319]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63389, 41.93698], [-87.63406, 41.93714]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.641, 41.94524], [-87.64106, 41.94543]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64653, 41.96368], [-87.64656, 41.96387]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64861, 41.97292], [-87.64867, 41.97311]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6367, 41.93908], [-87.63689, 41.93922]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64608, 41.96122], [-87.6461, 41.96141]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64457, 41.95514], [-87.64463, 41.95534]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64447, 41.95157], [-87.64452, 41.95177]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63007, 41.92291], [-87.63012, 41.92312]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63112, 41.92624], [-87.63117, 41.92642]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63074, 41.9251], [-87.63082, 41.92529]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62429, 41.90431], [-87.62434, 41.90446]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62942, 41.9204], [-87.62947, 41.92061]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62863, 41.91782], [-87.62869, 41.91803]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62574, 41.91168], [-87.62577, 41.91189]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63538, 41.93813], [-87.63557, 41.93826]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64676, 41.96477], [-87.6468, 41.96495]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64473, 41.95575], [-87.64479, 41.95595]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6331, 41.93618], [-87.63324, 41.93635]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64592, 41.95924], [-87.64595, 41.95944]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6423, 41.94767], [-87.64241, 41.94786]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64735, 41.96737], [-87.6474, 41.96757]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63727, 41.93958], [-87.63744, 41.93973]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6325, 41.93527], [-87.63261, 41.93546]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64114, 41.94563], [-87.64125, 41.94581]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64893, 41.97386], [-87.64899, 41.97404]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63185, 41.93294], [-87.63185, 41.93314]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64447, 41.95339], [-87.64447, 41.95358]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63462, 41.93757], [-87.63483, 41.93771]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62367, 41.90188], [-87.62363, 41.90202]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62434, 41.90446], [-87.6244, 41.90464]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62473, 41.90588], [-87.6248, 41.90606]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62817, 41.9168], [-87.62826, 41.917]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64427, 41.95098], [-87.64435, 41.95118]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62362, 41.90269], [-87.62365, 41.90282]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63808, 41.94038], [-87.63824, 41.94057]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64282, 41.94861], [-87.64296, 41.9488]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63935, 41.94219], [-87.63944, 41.94237]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64541, 41.9575], [-87.64549, 41.95769]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63592, 41.93853], [-87.63613, 41.93868]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62572, 41.91106], [-87.62572, 41.91127]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63046, 41.92412], [-87.63052, 41.92432]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64447, 41.95435], [-87.64449, 41.95454]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63689, 41.93922], [-87.63707, 41.93937]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64405, 41.95061], [-87.64417, 41.9508]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64608, 41.96102], [-87.64608, 41.96122]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64349, 41.94971], [-87.64362, 41.94988]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64759, 41.96838], [-87.64765, 41.96859]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63192, 41.92928], [-87.63192, 41.92949]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64603, 41.96004], [-87.64603, 41.96025]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6248, 41.90606], [-87.62485, 41.90625]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62365, 41.90282], [-87.62369, 41.90298]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64613, 41.96178], [-87.64616, 41.96197]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64145, 41.9462], [-87.64155, 41.94639]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64262, 41.94824], [-87.64274, 41.94843]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62974, 41.92191], [-87.62984, 41.9221]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64241, 41.94786], [-87.6425, 41.94805]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64749, 41.96797], [-87.64754, 41.96818]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62459, 41.90534], [-87.62462, 41.90552]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63445, 41.93743], [-87.63462, 41.93757]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63274, 41.93564], [-87.63286, 41.93582]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62553, 41.90903], [-87.62556, 41.90923]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63187, 41.93254], [-87.63185, 41.93274]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64808, 41.97056], [-87.64813, 41.97077]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62567, 41.91043], [-87.62567, 41.91064]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63995, 41.94331], [-87.64008, 41.9435]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64818, 41.97097], [-87.64823, 41.97118]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64648, 41.9635], [-87.64653, 41.96368]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62702, 41.91464], [-87.62712, 41.91484]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64452, 41.95239], [-87.64451, 41.95258]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63165, 41.92789], [-87.6317, 41.92809]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64813, 41.97077], [-87.64818, 41.97097]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62675, 41.91405], [-87.62685, 41.91426]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6334, 41.93652], [-87.63356, 41.93669]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63231, 41.93489], [-87.6324, 41.93508]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63957, 41.94256], [-87.63967, 41.94275]]}, "type": "Feature", "properties": {"num_passengers": 8799}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63601, 41.89653], [-87.63582, 41.89653]]}, "type": "Feature", "properties": {"num_passengers": 8811}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63727, 41.8965], [-87.63601, 41.89653]]}, "type": "Feature", "properties": {"num_passengers": 8811}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64145, 41.89644], [-87.64086, 41.89645]]}, "type": "Feature", "properties": {"num_passengers": 8811}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64086, 41.89645], [-87.64027, 41.89646]]}, "type": "Feature", "properties": {"num_passengers": 8811}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63742, 41.8965], [-87.63727, 41.8965]]}, "type": "Feature", "properties": {"num_passengers": 8811}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64027, 41.89646], [-87.64017, 41.89645]]}, "type": "Feature", "properties": {"num_passengers": 8811}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64017, 41.89645], [-87.63742, 41.8965]]}, "type": "Feature", "properties": {"num_passengers": 8811}}, {"geometry": {"type": "LineString", "coordinates": [[-87.666, 41.93977], [-87.66908, 41.93972]]}, "type": "Feature", "properties": {"num_passengers": 8812}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63409, 41.91509], [-87.634, 41.91496]]}, "type": "Feature", "properties": {"num_passengers": 8822}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62342, 41.87314], [-87.62316, 41.87314]]}, "type": "Feature", "properties": {"num_passengers": 8826}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6237, 41.87313], [-87.62342, 41.87314]]}, "type": "Feature", "properties": {"num_passengers": 8826}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62258, 41.87315], [-87.62232, 41.87315]]}, "type": "Feature", "properties": {"num_passengers": 8826}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62316, 41.87314], [-87.62289, 41.87314]]}, "type": "Feature", "properties": {"num_passengers": 8826}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62232, 41.87315], [-87.62209, 41.87316]]}, "type": "Feature", "properties": {"num_passengers": 8826}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62164, 41.87316], [-87.62138, 41.87317]]}, "type": "Feature", "properties": {"num_passengers": 8826}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62187, 41.87315], [-87.62164, 41.87316]]}, "type": "Feature", "properties": {"num_passengers": 8826}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62289, 41.87314], [-87.62258, 41.87315]]}, "type": "Feature", "properties": {"num_passengers": 8826}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62209, 41.87316], [-87.62187, 41.87315]]}, "type": "Feature", "properties": {"num_passengers": 8826}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62092, 41.87318], [-87.62073, 41.87319]]}, "type": "Feature", "properties": {"num_passengers": 8826}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62138, 41.87317], [-87.62116, 41.87318]]}, "type": "Feature", "properties": {"num_passengers": 8826}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62389, 41.87313], [-87.6237, 41.87313]]}, "type": "Feature", "properties": {"num_passengers": 8826}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62116, 41.87318], [-87.62092, 41.87318]]}, "type": "Feature", "properties": {"num_passengers": 8826}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65116, 41.75054], [-87.65099, 41.75059]]}, "type": "Feature", "properties": {"num_passengers": 8828}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63357, 41.91424], [-87.63352, 41.91413]]}, "type": "Feature", "properties": {"num_passengers": 8830}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.87493], [-87.62418, 41.8751]]}, "type": "Feature", "properties": {"num_passengers": 8833}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63417, 41.91523], [-87.63409, 41.91509]]}, "type": "Feature", "properties": {"num_passengers": 8839}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63509, 41.91671], [-87.635, 41.91655]]}, "type": "Feature", "properties": {"num_passengers": 8839}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63439, 41.91557], [-87.63425, 41.91539]]}, "type": "Feature", "properties": {"num_passengers": 8839}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63447, 41.91571], [-87.63439, 41.91557]]}, "type": "Feature", "properties": {"num_passengers": 8839}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63456, 41.91585], [-87.63447, 41.91571]]}, "type": "Feature", "properties": {"num_passengers": 8839}}, {"geometry": {"type": "LineString", "coordinates": [[-87.635, 41.91655], [-87.63491, 41.91642]]}, "type": "Feature", "properties": {"num_passengers": 8839}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63491, 41.91642], [-87.63484, 41.91629]]}, "type": "Feature", "properties": {"num_passengers": 8839}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63474, 41.91615], [-87.63466, 41.91602]]}, "type": "Feature", "properties": {"num_passengers": 8839}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63466, 41.91602], [-87.63456, 41.91585]]}, "type": "Feature", "properties": {"num_passengers": 8839}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63484, 41.91629], [-87.63474, 41.91615]]}, "type": "Feature", "properties": {"num_passengers": 8839}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63425, 41.91539], [-87.63417, 41.91523]]}, "type": "Feature", "properties": {"num_passengers": 8839}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59596, 41.75142], [-87.59625, 41.75142]]}, "type": "Feature", "properties": {"num_passengers": 8852}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64028, 41.92499], [-87.64036, 41.92512]]}, "type": "Feature", "properties": {"num_passengers": 8859}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62765, 41.87275], [-87.62758, 41.87041]]}, "type": "Feature", "properties": {"num_passengers": 8860}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62036, 41.86909], [-87.62036, 41.86923]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62033, 41.86872], [-87.62033, 41.86892]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62036, 41.86923], [-87.62036, 41.86934]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61977, 41.86606], [-87.61984, 41.86627]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62052, 41.87218], [-87.62052, 41.87241]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62051, 41.87194], [-87.62052, 41.87218]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62004, 41.86694], [-87.62011, 41.86717]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62036, 41.86934], [-87.62036, 41.86947]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62047, 41.87092], [-87.62049, 41.87118]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61997, 41.86671], [-87.62004, 41.86694]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62054, 41.87282], [-87.62054, 41.87296]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62044, 41.87021], [-87.62046, 41.87044]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62052, 41.87241], [-87.62054, 41.87264]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62054, 41.87264], [-87.62054, 41.87282]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62051, 41.87171], [-87.62051, 41.87194]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62041, 41.86981], [-87.62041, 41.87]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62032, 41.86829], [-87.62033, 41.86852]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62046, 41.87067], [-87.62047, 41.87092]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62041, 41.87], [-87.62044, 41.87021]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62066, 41.87322], [-87.62085, 41.87326]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62033, 41.86852], [-87.62033, 41.86872]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62036, 41.86947], [-87.62038, 41.86965]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62033, 41.86892], [-87.62036, 41.86909]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62054, 41.87296], [-87.62054, 41.8731]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61984, 41.86627], [-87.6199, 41.86648]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6197, 41.86586], [-87.61977, 41.86606]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62011, 41.86717], [-87.62016, 41.8674]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6199, 41.86648], [-87.61997, 41.86671]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62054, 41.8731], [-87.62066, 41.87322]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62038, 41.86965], [-87.62041, 41.86981]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62051, 41.87144], [-87.62051, 41.87171]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62028, 41.86807], [-87.62032, 41.86829]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62102, 41.87326], [-87.62105, 41.87326]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62049, 41.87118], [-87.62051, 41.87144]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61965, 41.86567], [-87.6197, 41.86586]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62085, 41.87326], [-87.62102, 41.87326]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62024, 41.86784], [-87.62028, 41.86807]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62046, 41.87044], [-87.62046, 41.87067]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62016, 41.8674], [-87.6202, 41.86763]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6202, 41.86763], [-87.62024, 41.86784]]}, "type": "Feature", "properties": {"num_passengers": 8881}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63464, 41.91906], [-87.63471, 41.91916]]}, "type": "Feature", "properties": {"num_passengers": 8882}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63435, 41.91816], [-87.63439, 41.91836]]}, "type": "Feature", "properties": {"num_passengers": 8882}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63443, 41.91852], [-87.63448, 41.91868]]}, "type": "Feature", "properties": {"num_passengers": 8882}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63439, 41.91836], [-87.63443, 41.91852]]}, "type": "Feature", "properties": {"num_passengers": 8882}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63324, 41.91602], [-87.63332, 41.91609]]}, "type": "Feature", "properties": {"num_passengers": 8882}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63426, 41.9177], [-87.63429, 41.91785]]}, "type": "Feature", "properties": {"num_passengers": 8882}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63448, 41.91868], [-87.63451, 41.91877]]}, "type": "Feature", "properties": {"num_passengers": 8882}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63416, 41.91722], [-87.63421, 41.91739]]}, "type": "Feature", "properties": {"num_passengers": 8882}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63433, 41.91798], [-87.63435, 41.91816]]}, "type": "Feature", "properties": {"num_passengers": 8882}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63458, 41.91895], [-87.63464, 41.91906]]}, "type": "Feature", "properties": {"num_passengers": 8882}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63476, 41.91925], [-87.63487, 41.91934]]}, "type": "Feature", "properties": {"num_passengers": 8882}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63421, 41.91739], [-87.63423, 41.91755]]}, "type": "Feature", "properties": {"num_passengers": 8882}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63332, 41.91609], [-87.63346, 41.91622]]}, "type": "Feature", "properties": {"num_passengers": 8882}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63364, 41.91639], [-87.63379, 41.91658]]}, "type": "Feature", "properties": {"num_passengers": 8882}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63429, 41.91785], [-87.63433, 41.91798]]}, "type": "Feature", "properties": {"num_passengers": 8882}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63423, 41.91755], [-87.63426, 41.9177]]}, "type": "Feature", "properties": {"num_passengers": 8882}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63277, 41.91536], [-87.63288, 41.91558]]}, "type": "Feature", "properties": {"num_passengers": 8882}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63451, 41.91877], [-87.63456, 41.91887]]}, "type": "Feature", "properties": {"num_passengers": 8882}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63402, 41.9169], [-87.63411, 41.91706]]}, "type": "Feature", "properties": {"num_passengers": 8882}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63288, 41.91558], [-87.6331, 41.91585]]}, "type": "Feature", "properties": {"num_passengers": 8882}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63487, 41.91934], [-87.63495, 41.91942]]}, "type": "Feature", "properties": {"num_passengers": 8882}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63273, 41.91522], [-87.63277, 41.91536]]}, "type": "Feature", "properties": {"num_passengers": 8882}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63346, 41.91622], [-87.63364, 41.91639]]}, "type": "Feature", "properties": {"num_passengers": 8882}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6331, 41.91585], [-87.63324, 41.91602]]}, "type": "Feature", "properties": {"num_passengers": 8882}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63411, 41.91706], [-87.63416, 41.91722]]}, "type": "Feature", "properties": {"num_passengers": 8882}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6339, 41.91671], [-87.63402, 41.9169]]}, "type": "Feature", "properties": {"num_passengers": 8882}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63379, 41.91658], [-87.6339, 41.91671]]}, "type": "Feature", "properties": {"num_passengers": 8882}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63456, 41.91887], [-87.63458, 41.91895]]}, "type": "Feature", "properties": {"num_passengers": 8882}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63471, 41.91916], [-87.63476, 41.91925]]}, "type": "Feature", "properties": {"num_passengers": 8882}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63938, 41.93413], [-87.63936, 41.93341]]}, "type": "Feature", "properties": {"num_passengers": 8891}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.87604], [-87.62417, 41.87624]]}, "type": "Feature", "properties": {"num_passengers": 8892}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65801, 41.89625], [-87.65857, 41.89625]]}, "type": "Feature", "properties": {"num_passengers": 8893}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62952, 41.88886], [-87.62954, 41.88907]]}, "type": "Feature", "properties": {"num_passengers": 8894}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62382, 41.85491], [-87.62382, 41.85506]]}, "type": "Feature", "properties": {"num_passengers": 8898}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63257, 41.91491], [-87.63248, 41.91483]]}, "type": "Feature", "properties": {"num_passengers": 8913}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66409, 41.89608], [-87.66349, 41.89609]]}, "type": "Feature", "properties": {"num_passengers": 8916}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63352, 41.91413], [-87.63345, 41.91403]]}, "type": "Feature", "properties": {"num_passengers": 8934}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66377, 41.93979], [-87.666, 41.93977]]}, "type": "Feature", "properties": {"num_passengers": 8945}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62766, 41.87286], [-87.62765, 41.87275]]}, "type": "Feature", "properties": {"num_passengers": 8958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62415, 41.875], [-87.62415, 41.87519]]}, "type": "Feature", "properties": {"num_passengers": 8964}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66349, 41.89609], [-87.66276, 41.89611]]}, "type": "Feature", "properties": {"num_passengers": 8966}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58663, 41.78429], [-87.58663, 41.78415]]}, "type": "Feature", "properties": {"num_passengers": 8967}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64867, 41.94002], [-87.64888, 41.94001]]}, "type": "Feature", "properties": {"num_passengers": 8969}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6504, 41.94002], [-87.65064, 41.94003]]}, "type": "Feature", "properties": {"num_passengers": 8969}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65017, 41.94001], [-87.6504, 41.94002]]}, "type": "Feature", "properties": {"num_passengers": 8969}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65115, 41.94004], [-87.6511, 41.93999]]}, "type": "Feature", "properties": {"num_passengers": 8969}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64725, 41.94004], [-87.64747, 41.94003]]}, "type": "Feature", "properties": {"num_passengers": 8969}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64969, 41.94003], [-87.64994, 41.94001]]}, "type": "Feature", "properties": {"num_passengers": 8969}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64994, 41.94001], [-87.65017, 41.94001]]}, "type": "Feature", "properties": {"num_passengers": 8969}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64703, 41.94005], [-87.64725, 41.94004]]}, "type": "Feature", "properties": {"num_passengers": 8969}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65107, 41.94004], [-87.65115, 41.94004]]}, "type": "Feature", "properties": {"num_passengers": 8969}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64888, 41.94001], [-87.64908, 41.94001]]}, "type": "Feature", "properties": {"num_passengers": 8969}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65064, 41.94003], [-87.65083, 41.94004]]}, "type": "Feature", "properties": {"num_passengers": 8969}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64766, 41.94003], [-87.64789, 41.94002]]}, "type": "Feature", "properties": {"num_passengers": 8969}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64677, 41.94003], [-87.64687, 41.94004]]}, "type": "Feature", "properties": {"num_passengers": 8969}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64942, 41.94004], [-87.64969, 41.94003]]}, "type": "Feature", "properties": {"num_passengers": 8969}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64848, 41.94001], [-87.64867, 41.94002]]}, "type": "Feature", "properties": {"num_passengers": 8969}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65083, 41.94004], [-87.65107, 41.94004]]}, "type": "Feature", "properties": {"num_passengers": 8969}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64663, 41.94004], [-87.64677, 41.94003]]}, "type": "Feature", "properties": {"num_passengers": 8969}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64643, 41.94004], [-87.64663, 41.94004]]}, "type": "Feature", "properties": {"num_passengers": 8969}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64908, 41.94001], [-87.64942, 41.94004]]}, "type": "Feature", "properties": {"num_passengers": 8969}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64687, 41.94004], [-87.64703, 41.94005]]}, "type": "Feature", "properties": {"num_passengers": 8969}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6511, 41.93999], [-87.65334, 41.93995]]}, "type": "Feature", "properties": {"num_passengers": 8969}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64747, 41.94003], [-87.64766, 41.94003]]}, "type": "Feature", "properties": {"num_passengers": 8969}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6481, 41.94002], [-87.64832, 41.94001]]}, "type": "Feature", "properties": {"num_passengers": 8969}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64832, 41.94001], [-87.64848, 41.94001]]}, "type": "Feature", "properties": {"num_passengers": 8969}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65334, 41.93995], [-87.65342, 41.93994]]}, "type": "Feature", "properties": {"num_passengers": 8969}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64789, 41.94002], [-87.6481, 41.94002]]}, "type": "Feature", "properties": {"num_passengers": 8969}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62767, 41.87508], [-87.6277, 41.87499]]}, "type": "Feature", "properties": {"num_passengers": 8971}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63751, 41.9203], [-87.63761, 41.92046]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63816, 41.92139], [-87.63826, 41.92155]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63939, 41.9235], [-87.63944, 41.92363]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63904, 41.92282], [-87.63913, 41.92301]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63731, 41.92004], [-87.63731, 41.92005]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63832, 41.92169], [-87.6384, 41.92183]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63718, 41.91976], [-87.63726, 41.91991]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63967, 41.92397], [-87.63977, 41.92413]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6384, 41.92183], [-87.6384, 41.92188]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63782, 41.92083], [-87.63796, 41.92103]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63933, 41.92337], [-87.63939, 41.9235]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64007, 41.92467], [-87.64018, 41.92483]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63707, 41.91956], [-87.63718, 41.91976]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63945, 41.92365], [-87.63952, 41.9238]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63952, 41.9238], [-87.63967, 41.92397]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63987, 41.9243], [-87.63998, 41.92449]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63742, 41.92018], [-87.63751, 41.9203]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6377, 41.92064], [-87.63782, 41.92083]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63807, 41.92122], [-87.63816, 41.92139]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63998, 41.92449], [-87.64007, 41.92467]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64145, 41.94518], [-87.64154, 41.94535]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63913, 41.92301], [-87.63925, 41.9232]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63861, 41.92212], [-87.63871, 41.92227]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63726, 41.91991], [-87.63731, 41.92004]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63871, 41.92227], [-87.6388, 41.92244]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63944, 41.92363], [-87.63945, 41.92365]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63761, 41.92046], [-87.6377, 41.92064]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63694, 41.91936], [-87.63707, 41.91956]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63977, 41.92413], [-87.63987, 41.9243]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6384, 41.92188], [-87.6385, 41.92201]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6388, 41.92244], [-87.63891, 41.92262]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63891, 41.92262], [-87.63904, 41.92282]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63731, 41.92005], [-87.63742, 41.92018]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64018, 41.92483], [-87.64028, 41.92499]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63925, 41.9232], [-87.63933, 41.92337]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6385, 41.92201], [-87.63861, 41.92212]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63826, 41.92155], [-87.63832, 41.92169]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63796, 41.92103], [-87.63807, 41.92122]]}, "type": "Feature", "properties": {"num_passengers": 8979}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63345, 41.91403], [-87.6334, 41.91394]]}, "type": "Feature", "properties": {"num_passengers": 8980}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62954, 41.88907], [-87.62954, 41.88928]]}, "type": "Feature", "properties": {"num_passengers": 8991}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60305, 41.75134], [-87.60329, 41.75134]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59829, 41.75142], [-87.59835, 41.75142]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60385, 41.75133], [-87.6041, 41.75133]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60479, 41.75133], [-87.60496, 41.75135]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59767, 41.75142], [-87.5979, 41.75142]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60253, 41.75138], [-87.60264, 41.75138]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5979, 41.75142], [-87.59808, 41.75142]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60137, 41.75135], [-87.60162, 41.75137]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5974, 41.75142], [-87.59767, 41.75142]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59684, 41.75142], [-87.59711, 41.75142]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59625, 41.75142], [-87.59652, 41.75142]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60188, 41.75137], [-87.6021, 41.75138]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60094, 41.75137], [-87.60113, 41.75136]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60067, 41.75137], [-87.60094, 41.75137]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59652, 41.75142], [-87.59684, 41.75142]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59884, 41.75141], [-87.59903, 41.7514]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60008, 41.7514], [-87.60024, 41.7514]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60231, 41.75138], [-87.60253, 41.75138]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59922, 41.7514], [-87.59945, 41.7514]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59859, 41.75142], [-87.59884, 41.75141]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60264, 41.75138], [-87.60285, 41.75135]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6046, 41.75133], [-87.60479, 41.75133]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59711, 41.75142], [-87.5974, 41.75142]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59945, 41.7514], [-87.59964, 41.7514]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60113, 41.75136], [-87.60137, 41.75135]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60356, 41.75134], [-87.60385, 41.75133]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60162, 41.75137], [-87.60188, 41.75137]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60285, 41.75135], [-87.60305, 41.75134]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59964, 41.7514], [-87.59987, 41.7514]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59903, 41.7514], [-87.59922, 41.7514]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59808, 41.75142], [-87.59829, 41.75142]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60045, 41.75138], [-87.60067, 41.75137]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6041, 41.75133], [-87.60437, 41.75133]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60024, 41.7514], [-87.60045, 41.75138]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6021, 41.75138], [-87.60231, 41.75138]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59987, 41.7514], [-87.60008, 41.7514]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60437, 41.75133], [-87.6046, 41.75133]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60329, 41.75134], [-87.60356, 41.75134]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59835, 41.75142], [-87.59859, 41.75142]]}, "type": "Feature", "properties": {"num_passengers": 9013}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66276, 41.89611], [-87.66206, 41.89612]]}, "type": "Feature", "properties": {"num_passengers": 9016}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62382, 41.85506], [-87.62382, 41.85522]]}, "type": "Feature", "properties": {"num_passengers": 9022}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63177, 41.91127], [-87.63173, 41.91115]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63157, 41.90626], [-87.63156, 41.90609]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63161, 41.90789], [-87.63161, 41.90777]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63247, 41.91243], [-87.63234, 41.91223]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63182, 41.91137], [-87.63182, 41.91136]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63323, 41.91368], [-87.63313, 41.9135]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.633, 41.9133], [-87.63287, 41.9131]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63273, 41.91285], [-87.63264, 41.9127]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63234, 41.91223], [-87.63219, 41.91198]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63161, 41.90746], [-87.63159, 41.90724]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63171, 41.91097], [-87.63171, 41.91077]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63161, 41.90765], [-87.63161, 41.90746]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63159, 41.90704], [-87.63159, 41.90682]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63162, 41.90799], [-87.63161, 41.90789]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63171, 41.91077], [-87.6317, 41.91058]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63163, 41.9082], [-87.63162, 41.90799]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63219, 41.91198], [-87.63207, 41.91178]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63166, 41.90954], [-87.63166, 41.90943]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63158, 41.90667], [-87.63158, 41.90646]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63166, 41.90967], [-87.63166, 41.90954]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6334, 41.91394], [-87.63335, 41.91385]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63169, 41.91041], [-87.63168, 41.91025]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63166, 41.90943], [-87.63166, 41.90928]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63328, 41.91375], [-87.63323, 41.91368]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63313, 41.9135], [-87.633, 41.9133]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63168, 41.90986], [-87.63166, 41.90967]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63165, 41.90909], [-87.63165, 41.90888]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63161, 41.90777], [-87.63161, 41.90765]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6317, 41.91058], [-87.63169, 41.91041]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63165, 41.90888], [-87.63165, 41.90873]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63173, 41.91115], [-87.63171, 41.91097]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63264, 41.9127], [-87.63247, 41.91243]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63287, 41.9131], [-87.63273, 41.91285]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63156, 41.90609], [-87.63155, 41.90593]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63182, 41.91136], [-87.63177, 41.91127]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63159, 41.90682], [-87.63158, 41.90667]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63158, 41.90646], [-87.63157, 41.90626]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63168, 41.91025], [-87.63168, 41.91004]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63194, 41.91157], [-87.63182, 41.91137]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63207, 41.91178], [-87.63194, 41.91157]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63164, 41.90835], [-87.63163, 41.9082]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63163, 41.90855], [-87.63164, 41.90835]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63168, 41.91004], [-87.63168, 41.90986]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63335, 41.91385], [-87.63328, 41.91375]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63159, 41.90724], [-87.63159, 41.90704]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63166, 41.90928], [-87.63165, 41.90909]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63165, 41.90873], [-87.63163, 41.90855]]}, "type": "Feature", "properties": {"num_passengers": 9025}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62407, 41.87076], [-87.62407, 41.87093]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62403, 41.86851], [-87.62404, 41.86873]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6241, 41.87186], [-87.6241, 41.872]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62413, 41.87325], [-87.62414, 41.87335]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62414, 41.87348], [-87.62413, 41.87365]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62409, 41.87173], [-87.6241, 41.87186]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62412, 41.87299], [-87.62412, 41.87311]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.86762], [-87.624, 41.86776]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.624, 41.86776], [-87.62402, 41.86791]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62404, 41.86927], [-87.62406, 41.86938]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62406, 41.87031], [-87.62408, 41.87044]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62401, 41.86831], [-87.62403, 41.86851]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62412, 41.87311], [-87.62413, 41.87325]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62401, 41.86811], [-87.62401, 41.86831]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62405, 41.86701], [-87.62405, 41.86714]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6241, 41.872], [-87.62411, 41.87214]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62407, 41.87093], [-87.62409, 41.87111]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62406, 41.86954], [-87.62406, 41.86969]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62415, 41.87396], [-87.62415, 41.87413]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62411, 41.87271], [-87.62412, 41.87284]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62411, 41.87225], [-87.62412, 41.87238]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62414, 41.87335], [-87.62414, 41.87348]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62416, 41.8743], [-87.62417, 41.87449]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62404, 41.86904], [-87.62404, 41.86927]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62406, 41.86969], [-87.62406, 41.8698]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62409, 41.87146], [-87.62409, 41.8716]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62403, 41.86734], [-87.62402, 41.86752]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62411, 41.87254], [-87.62411, 41.87271]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62407, 41.86682], [-87.62405, 41.86701]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62408, 41.87044], [-87.62407, 41.87054]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62407, 41.86666], [-87.62407, 41.86682]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62404, 41.86873], [-87.62404, 41.86904]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62406, 41.87018], [-87.62406, 41.87031]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62415, 41.87413], [-87.62416, 41.8743]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62409, 41.87173], [-87.62409, 41.87173]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.87464], [-87.62418, 41.87479]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62407, 41.86647], [-87.62407, 41.86666]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62406, 41.86938], [-87.62406, 41.86954]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62413, 41.87365], [-87.62414, 41.8738]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62406, 41.86999], [-87.62406, 41.87018]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.87479], [-87.62418, 41.87493]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62417, 41.87449], [-87.62418, 41.87464]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62412, 41.87284], [-87.62412, 41.87299]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62414, 41.8738], [-87.62415, 41.87396]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62405, 41.86714], [-87.62403, 41.86734]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.86752], [-87.62402, 41.86762]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62412, 41.87238], [-87.62411, 41.87254]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62406, 41.8698], [-87.62406, 41.86999]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62409, 41.8716], [-87.62409, 41.87173]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62409, 41.87111], [-87.62407, 41.8713]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62407, 41.87054], [-87.62407, 41.87076]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62407, 41.8713], [-87.62409, 41.87146]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.86791], [-87.62401, 41.86811]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62411, 41.87214], [-87.62411, 41.87225]]}, "type": "Feature", "properties": {"num_passengers": 9028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65747, 41.89627], [-87.65801, 41.89625]]}, "type": "Feature", "properties": {"num_passengers": 9029}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63564, 41.86736], [-87.63591, 41.86735]]}, "type": "Feature", "properties": {"num_passengers": 9050}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6277, 41.87499], [-87.62766, 41.87286]]}, "type": "Feature", "properties": {"num_passengers": 9056}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66761, 41.95425], [-87.66433, 41.95429]]}, "type": "Feature", "properties": {"num_passengers": 9060}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65342, 41.93994], [-87.65636, 41.93991]]}, "type": "Feature", "properties": {"num_passengers": 9066}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63269, 41.9151], [-87.63273, 41.91522]]}, "type": "Feature", "properties": {"num_passengers": 9075}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66357, 41.93979], [-87.66377, 41.93979]]}, "type": "Feature", "properties": {"num_passengers": 9079}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62954, 41.88928], [-87.62954, 41.88946]]}, "type": "Feature", "properties": {"num_passengers": 9088}}, {"geometry": {"type": "LineString", "coordinates": [[-87.74226, 41.78021], [-87.74231, 41.78192]]}, "type": "Feature", "properties": {"num_passengers": 9102}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62874, 41.87949], [-87.62891, 41.87947]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63052, 41.87944], [-87.6308, 41.87945]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63261, 41.87943], [-87.6328, 41.87943]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62673, 41.87952], [-87.62695, 41.87952]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63116, 41.87944], [-87.63136, 41.87942]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63199, 41.87944], [-87.63221, 41.87943]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63025, 41.87945], [-87.63052, 41.87944]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62765, 41.87951], [-87.62781, 41.87949]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63304, 41.87941], [-87.63326, 41.87941]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62923, 41.87947], [-87.62938, 41.87946]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63221, 41.87943], [-87.63236, 41.87943]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63136, 41.87942], [-87.63155, 41.87942]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63326, 41.87941], [-87.63353, 41.87943]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6328, 41.87943], [-87.63304, 41.87941]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62969, 41.87946], [-87.62998, 41.87946]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63155, 41.87942], [-87.63178, 41.87944]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62998, 41.87946], [-87.63025, 41.87945]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63378, 41.87941], [-87.63397, 41.8794]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62807, 41.87947], [-87.62817, 41.87947]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62657, 41.87953], [-87.62673, 41.87952]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62891, 41.87947], [-87.62907, 41.87947]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62716, 41.87952], [-87.62739, 41.87951]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63353, 41.87943], [-87.63378, 41.87941]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62817, 41.87947], [-87.62837, 41.87948]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63178, 41.87944], [-87.63199, 41.87944]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62856, 41.87948], [-87.62874, 41.87949]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62638, 41.87953], [-87.62657, 41.87953]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63103, 41.87945], [-87.63103, 41.87946]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63397, 41.8794], [-87.63408, 41.8794]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62695, 41.87952], [-87.62716, 41.87952]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62781, 41.87949], [-87.62807, 41.87947]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62837, 41.87948], [-87.62856, 41.87948]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63103, 41.87946], [-87.63116, 41.87944]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62619, 41.87954], [-87.62638, 41.87953]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62907, 41.87947], [-87.62923, 41.87947]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6308, 41.87945], [-87.63103, 41.87945]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62739, 41.87951], [-87.62765, 41.87951]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63236, 41.87943], [-87.63261, 41.87943]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62938, 41.87946], [-87.62969, 41.87946]]}, "type": "Feature", "properties": {"num_passengers": 9129}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63237, 41.88514], [-87.63236, 41.8853]]}, "type": "Feature", "properties": {"num_passengers": 9136}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66143, 41.93981], [-87.66357, 41.93979]]}, "type": "Feature", "properties": {"num_passengers": 9139}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62407, 41.86633], [-87.62407, 41.86647]]}, "type": "Feature", "properties": {"num_passengers": 9144}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62382, 41.85522], [-87.62384, 41.85537]]}, "type": "Feature", "properties": {"num_passengers": 9152}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6368, 41.91915], [-87.63694, 41.91936]]}, "type": "Feature", "properties": {"num_passengers": 9155}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62954, 41.88946], [-87.62952, 41.88964]]}, "type": "Feature", "properties": {"num_passengers": 9157}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65636, 41.93991], [-87.65645, 41.93989]]}, "type": "Feature", "properties": {"num_passengers": 9163}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65737, 41.89627], [-87.65747, 41.89627]]}, "type": "Feature", "properties": {"num_passengers": 9173}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65645, 41.93989], [-87.65914, 41.93984]]}, "type": "Feature", "properties": {"num_passengers": 9196}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66122, 41.93981], [-87.66143, 41.93981]]}, "type": "Feature", "properties": {"num_passengers": 9199}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64215, 41.89644], [-87.64145, 41.89644]]}, "type": "Feature", "properties": {"num_passengers": 9206}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65931, 41.93983], [-87.66122, 41.93981]]}, "type": "Feature", "properties": {"num_passengers": 9214}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64927, 41.7506], [-87.65116, 41.75054]]}, "type": "Feature", "properties": {"num_passengers": 9217}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62404, 41.86538], [-87.62404, 41.86555]]}, "type": "Feature", "properties": {"num_passengers": 9225}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62952, 41.88964], [-87.62953, 41.88983]]}, "type": "Feature", "properties": {"num_passengers": 9227}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65914, 41.93984], [-87.65931, 41.93983]]}, "type": "Feature", "properties": {"num_passengers": 9230}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61955, 41.86548], [-87.61965, 41.86567]]}, "type": "Feature", "properties": {"num_passengers": 9235}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66206, 41.89612], [-87.66195, 41.89611]]}, "type": "Feature", "properties": {"num_passengers": 9251}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62407, 41.86619], [-87.62407, 41.86633]]}, "type": "Feature", "properties": {"num_passengers": 9260}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63263, 41.915], [-87.63269, 41.9151]]}, "type": "Feature", "properties": {"num_passengers": 9269}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62404, 41.86555], [-87.62404, 41.86569]]}, "type": "Feature", "properties": {"num_passengers": 9270}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62384, 41.85537], [-87.62381, 41.8555]]}, "type": "Feature", "properties": {"num_passengers": 9284}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64137, 41.94504], [-87.64145, 41.94518]]}, "type": "Feature", "properties": {"num_passengers": 9287}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62407, 41.86604], [-87.62407, 41.86619]]}, "type": "Feature", "properties": {"num_passengers": 9287}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68427, 41.80162], [-87.68427, 41.80144]]}, "type": "Feature", "properties": {"num_passengers": 9292}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68426, 41.80185], [-87.68427, 41.80162]]}, "type": "Feature", "properties": {"num_passengers": 9292}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68427, 41.8013], [-87.68427, 41.8013]]}, "type": "Feature", "properties": {"num_passengers": 9292}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68431, 41.80279], [-87.68427, 41.8026]]}, "type": "Feature", "properties": {"num_passengers": 9292}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68427, 41.8026], [-87.68427, 41.80237]]}, "type": "Feature", "properties": {"num_passengers": 9292}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68431, 41.80295], [-87.68431, 41.80279]]}, "type": "Feature", "properties": {"num_passengers": 9292}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68427, 41.80144], [-87.68427, 41.8013]]}, "type": "Feature", "properties": {"num_passengers": 9292}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68427, 41.80211], [-87.68426, 41.80185]]}, "type": "Feature", "properties": {"num_passengers": 9292}}, {"geometry": {"type": "LineString", "coordinates": [[-87.68427, 41.80237], [-87.68427, 41.80211]]}, "type": "Feature", "properties": {"num_passengers": 9292}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63248, 41.91483], [-87.63235, 41.91471]]}, "type": "Feature", "properties": {"num_passengers": 9308}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62406, 41.86592], [-87.62407, 41.86604]]}, "type": "Feature", "properties": {"num_passengers": 9313}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62405, 41.8658], [-87.62406, 41.86592]]}, "type": "Feature", "properties": {"num_passengers": 9314}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62404, 41.86569], [-87.62405, 41.8658]]}, "type": "Feature", "properties": {"num_passengers": 9315}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65679, 41.89628], [-87.65737, 41.89627]]}, "type": "Feature", "properties": {"num_passengers": 9317}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62381, 41.8555], [-87.62382, 41.85567]]}, "type": "Feature", "properties": {"num_passengers": 9318}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63667, 41.91898], [-87.6368, 41.91915]]}, "type": "Feature", "properties": {"num_passengers": 9331}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62605, 41.87954], [-87.62619, 41.87954]]}, "type": "Feature", "properties": {"num_passengers": 9340}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63247, 41.91484], [-87.63263, 41.915]]}, "type": "Feature", "properties": {"num_passengers": 9348}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62382, 41.85567], [-87.62383, 41.85578]]}, "type": "Feature", "properties": {"num_passengers": 9352}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62383, 41.85578], [-87.62384, 41.8559]]}, "type": "Feature", "properties": {"num_passengers": 9370}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62384, 41.8559], [-87.62384, 41.85608]]}, "type": "Feature", "properties": {"num_passengers": 9387}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58644, 41.77775], [-87.58644, 41.77754]]}, "type": "Feature", "properties": {"num_passengers": 9388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58656, 41.78056], [-87.58656, 41.78041]]}, "type": "Feature", "properties": {"num_passengers": 9388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58656, 41.78071], [-87.58656, 41.78056]]}, "type": "Feature", "properties": {"num_passengers": 9388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58652, 41.77901], [-87.58652, 41.77894]]}, "type": "Feature", "properties": {"num_passengers": 9388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58648, 41.77719], [-87.58648, 41.77711]]}, "type": "Feature", "properties": {"num_passengers": 9388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58656, 41.78041], [-87.58656, 41.78024]]}, "type": "Feature", "properties": {"num_passengers": 9388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58659, 41.78243], [-87.58659, 41.78227]]}, "type": "Feature", "properties": {"num_passengers": 9388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58656, 41.78123], [-87.58656, 41.78103]]}, "type": "Feature", "properties": {"num_passengers": 9388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58649, 41.77859], [-87.58646, 41.7784]]}, "type": "Feature", "properties": {"num_passengers": 9388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58644, 41.77754], [-87.58644, 41.77736]]}, "type": "Feature", "properties": {"num_passengers": 9388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58644, 41.77736], [-87.58648, 41.77719]]}, "type": "Feature", "properties": {"num_passengers": 9388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58646, 41.7784], [-87.58646, 41.77818]]}, "type": "Feature", "properties": {"num_passengers": 9388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5866, 41.78265], [-87.5866, 41.78259]]}, "type": "Feature", "properties": {"num_passengers": 9388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58657, 41.78186], [-87.58657, 41.78164]]}, "type": "Feature", "properties": {"num_passengers": 9388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58656, 41.78024], [-87.58656, 41.78018]]}, "type": "Feature", "properties": {"num_passengers": 9388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58646, 41.77797], [-87.58644, 41.77775]]}, "type": "Feature", "properties": {"num_passengers": 9388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5866, 41.78281], [-87.5866, 41.78265]]}, "type": "Feature", "properties": {"num_passengers": 9388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58657, 41.78164], [-87.58656, 41.78142]]}, "type": "Feature", "properties": {"num_passengers": 9388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58654, 41.77919], [-87.58652, 41.77901]]}, "type": "Feature", "properties": {"num_passengers": 9388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58656, 41.78018], [-87.58654, 41.78]]}, "type": "Feature", "properties": {"num_passengers": 9388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58654, 41.78], [-87.58654, 41.77986]]}, "type": "Feature", "properties": {"num_passengers": 9388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5866, 41.78316], [-87.5866, 41.78297]]}, "type": "Feature", "properties": {"num_passengers": 9388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58654, 41.77952], [-87.58654, 41.77935]]}, "type": "Feature", "properties": {"num_passengers": 9388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58652, 41.77894], [-87.58651, 41.77876]]}, "type": "Feature", "properties": {"num_passengers": 9388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58656, 41.78103], [-87.58656, 41.78086]]}, "type": "Feature", "properties": {"num_passengers": 9388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5866, 41.78297], [-87.5866, 41.78281]]}, "type": "Feature", "properties": {"num_passengers": 9388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58654, 41.77935], [-87.58654, 41.77919]]}, "type": "Feature", "properties": {"num_passengers": 9388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5866, 41.78259], [-87.58659, 41.78243]]}, "type": "Feature", "properties": {"num_passengers": 9388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58646, 41.77818], [-87.58646, 41.77797]]}, "type": "Feature", "properties": {"num_passengers": 9388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58654, 41.77969], [-87.58654, 41.77952]]}, "type": "Feature", "properties": {"num_passengers": 9388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58656, 41.78086], [-87.58656, 41.78071]]}, "type": "Feature", "properties": {"num_passengers": 9388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58659, 41.78227], [-87.58659, 41.78208]]}, "type": "Feature", "properties": {"num_passengers": 9388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58659, 41.78208], [-87.58657, 41.78186]]}, "type": "Feature", "properties": {"num_passengers": 9388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58656, 41.78142], [-87.58656, 41.78123]]}, "type": "Feature", "properties": {"num_passengers": 9388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58654, 41.77986], [-87.58654, 41.77969]]}, "type": "Feature", "properties": {"num_passengers": 9388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58651, 41.77876], [-87.58649, 41.77859]]}, "type": "Feature", "properties": {"num_passengers": 9388}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62668, 41.89673], [-87.62678, 41.89673]]}, "type": "Feature", "properties": {"num_passengers": 9392}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63654, 41.91881], [-87.63667, 41.91898]]}, "type": "Feature", "properties": {"num_passengers": 9398}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65619, 41.89629], [-87.65679, 41.89628]]}, "type": "Feature", "properties": {"num_passengers": 9403}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62413, 41.87486], [-87.62415, 41.875]]}, "type": "Feature", "properties": {"num_passengers": 9405}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62404, 41.86519], [-87.62404, 41.86538]]}, "type": "Feature", "properties": {"num_passengers": 9426}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63234, 41.91473], [-87.63247, 41.91484]]}, "type": "Feature", "properties": {"num_passengers": 9427}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63178, 41.91404], [-87.63184, 41.91417]]}, "type": "Feature", "properties": {"num_passengers": 9427}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63174, 41.91394], [-87.63178, 41.91404]]}, "type": "Feature", "properties": {"num_passengers": 9427}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63193, 41.91429], [-87.63201, 41.91441]]}, "type": "Feature", "properties": {"num_passengers": 9427}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63171, 41.91383], [-87.63174, 41.91394]]}, "type": "Feature", "properties": {"num_passengers": 9427}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63213, 41.91455], [-87.63234, 41.91473]]}, "type": "Feature", "properties": {"num_passengers": 9427}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63184, 41.91417], [-87.63193, 41.91429]]}, "type": "Feature", "properties": {"num_passengers": 9427}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63201, 41.91441], [-87.63213, 41.91455]]}, "type": "Feature", "properties": {"num_passengers": 9427}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58662, 41.78336], [-87.5866, 41.78316]]}, "type": "Feature", "properties": {"num_passengers": 9429}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64127, 41.94488], [-87.64137, 41.94504]]}, "type": "Feature", "properties": {"num_passengers": 9449}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65507, 41.89631], [-87.65517, 41.89631]]}, "type": "Feature", "properties": {"num_passengers": 9454}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62384, 41.85608], [-87.62385, 41.85624]]}, "type": "Feature", "properties": {"num_passengers": 9456}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63642, 41.91866], [-87.63654, 41.91881]]}, "type": "Feature", "properties": {"num_passengers": 9465}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58662, 41.78355], [-87.58662, 41.78336]]}, "type": "Feature", "properties": {"num_passengers": 9470}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65517, 41.89631], [-87.65564, 41.89631]]}, "type": "Feature", "properties": {"num_passengers": 9471}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63551, 41.86736], [-87.63564, 41.86736]]}, "type": "Feature", "properties": {"num_passengers": 9481}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65606, 41.89622], [-87.65587, 41.89622]]}, "type": "Feature", "properties": {"num_passengers": 9486}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65773, 41.89619], [-87.65748, 41.89621]]}, "type": "Feature", "properties": {"num_passengers": 9486}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65697, 41.89622], [-87.65673, 41.89623]]}, "type": "Feature", "properties": {"num_passengers": 9486}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65628, 41.89623], [-87.65606, 41.89622]]}, "type": "Feature", "properties": {"num_passengers": 9486}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65565, 41.89622], [-87.65551, 41.89623]]}, "type": "Feature", "properties": {"num_passengers": 9486}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6613, 41.89613], [-87.66045, 41.89615]]}, "type": "Feature", "properties": {"num_passengers": 9486}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65932, 41.89618], [-87.65908, 41.89618]]}, "type": "Feature", "properties": {"num_passengers": 9486}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65748, 41.89621], [-87.65722, 41.89621]]}, "type": "Feature", "properties": {"num_passengers": 9486}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65951, 41.89617], [-87.65932, 41.89618]]}, "type": "Feature", "properties": {"num_passengers": 9486}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65797, 41.89618], [-87.65773, 41.89619]]}, "type": "Feature", "properties": {"num_passengers": 9486}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65651, 41.89623], [-87.65628, 41.89623]]}, "type": "Feature", "properties": {"num_passengers": 9486}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66045, 41.89615], [-87.65961, 41.89616]]}, "type": "Feature", "properties": {"num_passengers": 9486}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65908, 41.89618], [-87.65883, 41.89617]]}, "type": "Feature", "properties": {"num_passengers": 9486}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65883, 41.89617], [-87.65861, 41.89617]]}, "type": "Feature", "properties": {"num_passengers": 9486}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65722, 41.89621], [-87.65697, 41.89622]]}, "type": "Feature", "properties": {"num_passengers": 9486}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65587, 41.89622], [-87.65566, 41.89622]]}, "type": "Feature", "properties": {"num_passengers": 9486}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65673, 41.89623], [-87.65651, 41.89623]]}, "type": "Feature", "properties": {"num_passengers": 9486}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65551, 41.89623], [-87.6551, 41.89624]]}, "type": "Feature", "properties": {"num_passengers": 9486}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65961, 41.89616], [-87.65951, 41.89617]]}, "type": "Feature", "properties": {"num_passengers": 9486}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65861, 41.89617], [-87.65841, 41.89617]]}, "type": "Feature", "properties": {"num_passengers": 9486}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65566, 41.89622], [-87.65565, 41.89622]]}, "type": "Feature", "properties": {"num_passengers": 9486}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65819, 41.89618], [-87.65797, 41.89618]]}, "type": "Feature", "properties": {"num_passengers": 9486}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66195, 41.89611], [-87.6613, 41.89613]]}, "type": "Feature", "properties": {"num_passengers": 9486}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65841, 41.89617], [-87.65819, 41.89618]]}, "type": "Feature", "properties": {"num_passengers": 9486}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65564, 41.89631], [-87.65619, 41.89629]]}, "type": "Feature", "properties": {"num_passengers": 9489}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63236, 41.8853], [-87.63237, 41.88548]]}, "type": "Feature", "properties": {"num_passengers": 9497}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62955, 41.92105], [-87.6296, 41.92126]]}, "type": "Feature", "properties": {"num_passengers": 9497}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63366, 41.86738], [-87.63551, 41.86736]]}, "type": "Feature", "properties": {"num_passengers": 9512}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62492, 41.75113], [-87.62516, 41.75112]]}, "type": "Feature", "properties": {"num_passengers": 9525}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62388, 41.85754], [-87.62387, 41.85767]]}, "type": "Feature", "properties": {"num_passengers": 9526}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62384, 41.8566], [-87.62384, 41.8568]]}, "type": "Feature", "properties": {"num_passengers": 9526}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62388, 41.85784], [-87.62388, 41.85795]]}, "type": "Feature", "properties": {"num_passengers": 9526}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62384, 41.8568], [-87.62385, 41.857]]}, "type": "Feature", "properties": {"num_passengers": 9526}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62387, 41.85767], [-87.62388, 41.85784]]}, "type": "Feature", "properties": {"num_passengers": 9526}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62387, 41.85719], [-87.62387, 41.85738]]}, "type": "Feature", "properties": {"num_passengers": 9526}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.86445], [-87.62402, 41.86463]]}, "type": "Feature", "properties": {"num_passengers": 9526}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.86463], [-87.62404, 41.86476]]}, "type": "Feature", "properties": {"num_passengers": 9526}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62388, 41.85795], [-87.62389, 41.85807]]}, "type": "Feature", "properties": {"num_passengers": 9526}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62385, 41.85643], [-87.62384, 41.8566]]}, "type": "Feature", "properties": {"num_passengers": 9526}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.86427], [-87.62402, 41.86445]]}, "type": "Feature", "properties": {"num_passengers": 9526}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.86395], [-87.62403, 41.86401]]}, "type": "Feature", "properties": {"num_passengers": 9526}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62404, 41.86476], [-87.62404, 41.86489]]}, "type": "Feature", "properties": {"num_passengers": 9526}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62387, 41.85738], [-87.62388, 41.85754]]}, "type": "Feature", "properties": {"num_passengers": 9526}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62385, 41.857], [-87.62387, 41.85719]]}, "type": "Feature", "properties": {"num_passengers": 9526}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62403, 41.86401], [-87.62402, 41.86413]]}, "type": "Feature", "properties": {"num_passengers": 9526}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62385, 41.85624], [-87.62385, 41.85643]]}, "type": "Feature", "properties": {"num_passengers": 9526}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.86413], [-87.62402, 41.86427]]}, "type": "Feature", "properties": {"num_passengers": 9526}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63227, 41.86741], [-87.63366, 41.86738]]}, "type": "Feature", "properties": {"num_passengers": 9543}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63632, 41.91853], [-87.63642, 41.91866]]}, "type": "Feature", "properties": {"num_passengers": 9548}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58662, 41.78373], [-87.58662, 41.78355]]}, "type": "Feature", "properties": {"num_passengers": 9562}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62404, 41.86489], [-87.62404, 41.86505]]}, "type": "Feature", "properties": {"num_passengers": 9578}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6195, 41.86532], [-87.61955, 41.86548]]}, "type": "Feature", "properties": {"num_passengers": 9588}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64267, 41.89644], [-87.64215, 41.89644]]}, "type": "Feature", "properties": {"num_passengers": 9600}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58663, 41.78415], [-87.58663, 41.78405]]}, "type": "Feature", "properties": {"num_passengers": 9603}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6491, 41.75059], [-87.64927, 41.7506]]}, "type": "Feature", "properties": {"num_passengers": 9607}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64119, 41.9447], [-87.64123, 41.94481]]}, "type": "Feature", "properties": {"num_passengers": 9609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64084, 41.94407], [-87.6409, 41.94418]]}, "type": "Feature", "properties": {"num_passengers": 9609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64057, 41.94355], [-87.64064, 41.94368]]}, "type": "Feature", "properties": {"num_passengers": 9609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64064, 41.94368], [-87.6407, 41.9438]]}, "type": "Feature", "properties": {"num_passengers": 9609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64097, 41.94431], [-87.64104, 41.94444]]}, "type": "Feature", "properties": {"num_passengers": 9609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64123, 41.94481], [-87.64127, 41.94488]]}, "type": "Feature", "properties": {"num_passengers": 9609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64018, 41.94282], [-87.64031, 41.94307]]}, "type": "Feature", "properties": {"num_passengers": 9609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64031, 41.94307], [-87.64041, 41.94327]]}, "type": "Feature", "properties": {"num_passengers": 9609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64041, 41.94327], [-87.64052, 41.94347]]}, "type": "Feature", "properties": {"num_passengers": 9609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63998, 41.94246], [-87.64007, 41.94263]]}, "type": "Feature", "properties": {"num_passengers": 9609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64104, 41.94444], [-87.64111, 41.94457]]}, "type": "Feature", "properties": {"num_passengers": 9609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64076, 41.94393], [-87.64084, 41.94407]]}, "type": "Feature", "properties": {"num_passengers": 9609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64007, 41.94263], [-87.64018, 41.94282]]}, "type": "Feature", "properties": {"num_passengers": 9609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64052, 41.94347], [-87.64057, 41.94355]]}, "type": "Feature", "properties": {"num_passengers": 9609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6409, 41.94418], [-87.64097, 41.94431]]}, "type": "Feature", "properties": {"num_passengers": 9609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64111, 41.94457], [-87.64119, 41.9447]]}, "type": "Feature", "properties": {"num_passengers": 9609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6407, 41.9438], [-87.64076, 41.94393]]}, "type": "Feature", "properties": {"num_passengers": 9609}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62404, 41.86505], [-87.62404, 41.86519]]}, "type": "Feature", "properties": {"num_passengers": 9628}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58663, 41.78405], [-87.58662, 41.78388]]}, "type": "Feature", "properties": {"num_passengers": 9629}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63596, 41.91833], [-87.63632, 41.91853]]}, "type": "Feature", "properties": {"num_passengers": 9631}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61946, 41.86519], [-87.6195, 41.86532]]}, "type": "Feature", "properties": {"num_passengers": 9643}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58662, 41.78388], [-87.58662, 41.78373]]}, "type": "Feature", "properties": {"num_passengers": 9654}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60496, 41.75135], [-87.60506, 41.75135]]}, "type": "Feature", "properties": {"num_passengers": 9678}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6551, 41.89624], [-87.65469, 41.89625]]}, "type": "Feature", "properties": {"num_passengers": 9682}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61931, 41.86504], [-87.61946, 41.86519]]}, "type": "Feature", "properties": {"num_passengers": 9697}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62678, 41.89673], [-87.62718, 41.89672]]}, "type": "Feature", "properties": {"num_passengers": 9701}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63235, 41.91471], [-87.63222, 41.91456]]}, "type": "Feature", "properties": {"num_passengers": 9702}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62593, 41.87954], [-87.62605, 41.87954]]}, "type": "Feature", "properties": {"num_passengers": 9716}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62508, 41.88832], [-87.62514, 41.88834]]}, "type": "Feature", "properties": {"num_passengers": 9725}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62168, 41.89682], [-87.62178, 41.89681]]}, "type": "Feature", "properties": {"num_passengers": 9728}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64634, 41.75061], [-87.6491, 41.75059]]}, "type": "Feature", "properties": {"num_passengers": 9729}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62145, 41.89682], [-87.62168, 41.89682]]}, "type": "Feature", "properties": {"num_passengers": 9741}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6349, 41.91662], [-87.63596, 41.91833]]}, "type": "Feature", "properties": {"num_passengers": 9766}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62124, 41.89682], [-87.62145, 41.89682]]}, "type": "Feature", "properties": {"num_passengers": 9772}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64279, 41.89643], [-87.64267, 41.89644]]}, "type": "Feature", "properties": {"num_passengers": 9773}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6326, 41.88317], [-87.63242, 41.88317]]}, "type": "Feature", "properties": {"num_passengers": 9793}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62101, 41.89682], [-87.62124, 41.89682]]}, "type": "Feature", "properties": {"num_passengers": 9803}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6325, 41.88511], [-87.63249, 41.88495]]}, "type": "Feature", "properties": {"num_passengers": 9814}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63936, 41.93341], [-87.63936, 41.93306]]}, "type": "Feature", "properties": {"num_passengers": 9821}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62413, 41.87437], [-87.62413, 41.87453]]}, "type": "Feature", "properties": {"num_passengers": 9848}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62413, 41.87453], [-87.62413, 41.87473]]}, "type": "Feature", "properties": {"num_passengers": 9848}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62395, 41.87322], [-87.62408, 41.87335]]}, "type": "Feature", "properties": {"num_passengers": 9848}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62411, 41.87374], [-87.62411, 41.87387]]}, "type": "Feature", "properties": {"num_passengers": 9848}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62413, 41.87473], [-87.62413, 41.87486]]}, "type": "Feature", "properties": {"num_passengers": 9848}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62411, 41.87387], [-87.62413, 41.87407]]}, "type": "Feature", "properties": {"num_passengers": 9848}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62413, 41.87422], [-87.62413, 41.87437]]}, "type": "Feature", "properties": {"num_passengers": 9848}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62409, 41.87345], [-87.62409, 41.87359]]}, "type": "Feature", "properties": {"num_passengers": 9848}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62409, 41.87359], [-87.62411, 41.87374]]}, "type": "Feature", "properties": {"num_passengers": 9848}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62413, 41.87407], [-87.62413, 41.87422]]}, "type": "Feature", "properties": {"num_passengers": 9848}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62408, 41.87335], [-87.62409, 41.87345]]}, "type": "Feature", "properties": {"num_passengers": 9848}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64618, 41.75062], [-87.64634, 41.75061]]}, "type": "Feature", "properties": {"num_passengers": 9851}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64733, 41.89634], [-87.64719, 41.89635]]}, "type": "Feature", "properties": {"num_passengers": 9856}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64733, 41.89634], [-87.64733, 41.89634]]}, "type": "Feature", "properties": {"num_passengers": 9856}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64719, 41.89635], [-87.64661, 41.89638]]}, "type": "Feature", "properties": {"num_passengers": 9856}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6512, 41.89631], [-87.65036, 41.89632]]}, "type": "Feature", "properties": {"num_passengers": 9856}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64626, 41.89639], [-87.64611, 41.89639]]}, "type": "Feature", "properties": {"num_passengers": 9856}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64774, 41.89636], [-87.64733, 41.89634]]}, "type": "Feature", "properties": {"num_passengers": 9856}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62417, 41.87587], [-87.62418, 41.87604]]}, "type": "Feature", "properties": {"num_passengers": 9856}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65129, 41.8963], [-87.6512, 41.89631]]}, "type": "Feature", "properties": {"num_passengers": 9856}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64661, 41.89638], [-87.64626, 41.89639]]}, "type": "Feature", "properties": {"num_passengers": 9856}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64851, 41.89634], [-87.64774, 41.89636]]}, "type": "Feature", "properties": {"num_passengers": 9856}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64949, 41.89632], [-87.64851, 41.89634]]}, "type": "Feature", "properties": {"num_passengers": 9856}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65036, 41.89632], [-87.64949, 41.89632]]}, "type": "Feature", "properties": {"num_passengers": 9856}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63237, 41.88548], [-87.63238, 41.88567]]}, "type": "Feature", "properties": {"num_passengers": 9857}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6192, 41.86493], [-87.61931, 41.86504]]}, "type": "Feature", "properties": {"num_passengers": 9865}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64437, 41.75065], [-87.64618, 41.75062]]}, "type": "Feature", "properties": {"num_passengers": 9875}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65469, 41.89625], [-87.65437, 41.89625]]}, "type": "Feature", "properties": {"num_passengers": 9877}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65202, 41.89628], [-87.65129, 41.8963]]}, "type": "Feature", "properties": {"num_passengers": 9878}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61701, 41.75111], [-87.61725, 41.75111]]}, "type": "Feature", "properties": {"num_passengers": 9883}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64611, 41.89639], [-87.64485, 41.89643]]}, "type": "Feature", "properties": {"num_passengers": 9894}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64421, 41.75066], [-87.64437, 41.75065]]}, "type": "Feature", "properties": {"num_passengers": 9899}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64147, 41.75072], [-87.64154, 41.75071]]}, "type": "Feature", "properties": {"num_passengers": 9899}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64154, 41.75071], [-87.64421, 41.75066]]}, "type": "Feature", "properties": {"num_passengers": 9899}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65275, 41.89627], [-87.65202, 41.89628]]}, "type": "Feature", "properties": {"num_passengers": 9900}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6348, 41.91646], [-87.6349, 41.91662]]}, "type": "Feature", "properties": {"num_passengers": 9901}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62496, 41.88832], [-87.62508, 41.88832]]}, "type": "Feature", "properties": {"num_passengers": 9912}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65437, 41.89625], [-87.65426, 41.89625]]}, "type": "Feature", "properties": {"num_passengers": 9919}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65355, 41.89626], [-87.65275, 41.89627]]}, "type": "Feature", "properties": {"num_passengers": 9930}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64485, 41.89643], [-87.64439, 41.89643]]}, "type": "Feature", "properties": {"num_passengers": 9932}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64439, 41.89643], [-87.6434, 41.89643]]}, "type": "Feature", "properties": {"num_passengers": 9939}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6434, 41.89643], [-87.64279, 41.89643]]}, "type": "Feature", "properties": {"num_passengers": 9946}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65426, 41.89625], [-87.65355, 41.89626]]}, "type": "Feature", "properties": {"num_passengers": 9960}}, {"geometry": {"type": "LineString", "coordinates": [[-87.66234, 41.95467], [-87.66248, 41.95483]]}, "type": "Feature", "properties": {"num_passengers": 9982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63222, 41.91456], [-87.63207, 41.91441]]}, "type": "Feature", "properties": {"num_passengers": 9996}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62718, 41.89672], [-87.62761, 41.89671]]}, "type": "Feature", "properties": {"num_passengers": 10010}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61331, 41.85209], [-87.61337, 41.85229]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61412, 41.8538], [-87.61424, 41.85397]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61815, 41.86171], [-87.61822, 41.86187]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61345, 41.8525], [-87.61353, 41.85269]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6152, 41.85541], [-87.61529, 41.8556]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60019, 41.82511], [-87.60029, 41.8253]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60973, 41.84191], [-87.60982, 41.84213]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5898, 41.81085], [-87.58956, 41.81096]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61267, 41.85016], [-87.61275, 41.85037]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61838, 41.86238], [-87.61842, 41.86253]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6103, 41.84323], [-87.6104, 41.84345]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60682, 41.83254], [-87.60695, 41.83274]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59048, 41.80793], [-87.5905, 41.80796]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61683, 41.85874], [-87.61691, 41.85891]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61048, 41.84367], [-87.61057, 41.84389]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60193, 41.82738], [-87.6021, 41.82753]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60785, 41.83587], [-87.60787, 41.83611]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61199, 41.84789], [-87.61207, 41.8481]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59018, 41.80748], [-87.59029, 41.80766]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61733, 41.85975], [-87.61739, 41.85994]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60695, 41.83274], [-87.60707, 41.83295]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60496, 41.83013], [-87.60512, 41.83032]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60982, 41.84213], [-87.60992, 41.84235]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59501, 41.81705], [-87.59517, 41.81723]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61884, 41.86396], [-87.61888, 41.86417]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61141, 41.84609], [-87.61148, 41.84631]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61509, 41.85521], [-87.6152, 41.85541]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59142, 41.80894], [-87.59156, 41.80903]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61337, 41.85229], [-87.61345, 41.8525]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61634, 41.85771], [-87.61641, 41.85788]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61895, 41.86451], [-87.61901, 41.86466]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60126, 41.82674], [-87.6014, 41.82691]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61261, 41.84992], [-87.61267, 41.85016]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61539, 41.85579], [-87.61548, 41.85599]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60038, 41.82549], [-87.60049, 41.82568]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61691, 41.85891], [-87.61699, 41.85908]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60749, 41.83379], [-87.60757, 41.83401]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61548, 41.85599], [-87.61559, 41.85618]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61774, 41.86063], [-87.61782, 41.86082]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58958, 41.8065], [-87.58969, 41.8067]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61579, 41.85657], [-87.61588, 41.85676]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61855, 41.86295], [-87.6186, 41.86308]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60377, 41.82896], [-87.60394, 41.82912]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60797, 41.83705], [-87.60797, 41.83727]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59177, 41.80926], [-87.59191, 41.80938]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59973, 41.82414], [-87.59983, 41.82434]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60394, 41.82912], [-87.60415, 41.82928]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61254, 41.84969], [-87.61261, 41.84992]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59517, 41.81723], [-87.5953, 41.81742]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59776, 41.82068], [-87.5979, 41.82085]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59854, 41.82178], [-87.59863, 41.82197]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59005, 41.81209], [-87.59015, 41.81222]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60653, 41.83216], [-87.60666, 41.83236]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61888, 41.86417], [-87.61892, 41.86435]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6131, 41.85146], [-87.61316, 41.85168]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5905, 41.80796], [-87.59059, 41.80813]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60569, 41.83105], [-87.60582, 41.83125]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59638, 41.81885], [-87.59651, 41.81903]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59964, 41.82395], [-87.59973, 41.82414]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59212, 41.81403], [-87.59231, 41.81417]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59059, 41.80813], [-87.59069, 41.80825]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60666, 41.83236], [-87.60682, 41.83254]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59159, 41.80906], [-87.59177, 41.80926]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61378, 41.85326], [-87.61389, 41.85344]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59733, 41.82013], [-87.59749, 41.8203]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61828, 41.86205], [-87.61833, 41.86222]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59663, 41.81921], [-87.59679, 41.81939]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5953, 41.81742], [-87.59541, 41.81758]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59188, 41.80968], [-87.5917, 41.80976]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59875, 41.82217], [-87.59884, 41.82237]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59005, 41.80729], [-87.59018, 41.80748]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6104, 41.84345], [-87.61048, 41.84367]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59404, 41.8158], [-87.59418, 41.81597]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61863, 41.86322], [-87.61869, 41.86347]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60789, 41.83634], [-87.60792, 41.83658]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60542, 41.83068], [-87.60555, 41.83087]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60774, 41.83469], [-87.60777, 41.83492]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61242, 41.84924], [-87.61248, 41.84947]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58969, 41.8067], [-87.5898, 41.8069]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61869, 41.86347], [-87.61877, 41.86373]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61803, 41.86135], [-87.61809, 41.86153]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61002, 41.84256], [-87.61011, 41.84279]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60881, 41.83969], [-87.6089, 41.83992]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59474, 41.8167], [-87.59488, 41.81688]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61598, 41.85696], [-87.61607, 41.85715]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60464, 41.82978], [-87.6048, 41.82996]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59096, 41.80854], [-87.59112, 41.8087]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60512, 41.83032], [-87.60526, 41.8305]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60965, 41.84169], [-87.60973, 41.84191]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59156, 41.80903], [-87.59159, 41.80906]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58937, 41.80613], [-87.58946, 41.80631]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61302, 41.85124], [-87.6131, 41.85146]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61782, 41.86082], [-87.61787, 41.86099]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59069, 41.80825], [-87.59081, 41.80839]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6048, 41.82996], [-87.60496, 41.83013]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6082, 41.83816], [-87.60828, 41.83838]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59935, 41.82336], [-87.59943, 41.82356]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60526, 41.8305], [-87.60542, 41.83068]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59043, 41.81263], [-87.59056, 41.81276]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58956, 41.81096], [-87.58937, 41.81104]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58926, 41.81121], [-87.58932, 41.81132]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60321, 41.82849], [-87.60339, 41.82865]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61764, 41.86044], [-87.61774, 41.86063]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59306, 41.81477], [-87.59325, 41.81494]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61057, 41.84389], [-87.61067, 41.84412]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61877, 41.86373], [-87.61884, 41.86396]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58992, 41.80709], [-87.59005, 41.80729]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61715, 41.85941], [-87.61723, 41.85959]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60855, 41.83903], [-87.60862, 41.83926]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60828, 41.83838], [-87.60836, 41.8386]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61178, 41.84721], [-87.61184, 41.84744]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60797, 41.83727], [-87.60801, 41.83749]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60173, 41.82722], [-87.60193, 41.82738]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61459, 41.85448], [-87.61472, 41.85466]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61133, 41.84588], [-87.61141, 41.84609]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59191, 41.80938], [-87.59201, 41.80953]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61666, 41.85839], [-87.61675, 41.85857]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59085, 41.81026], [-87.59066, 41.81038]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61316, 41.85168], [-87.61323, 41.85189]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59026, 41.81061], [-87.59002, 41.81073]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61842, 41.86253], [-87.61847, 41.86267]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61699, 41.85908], [-87.61709, 41.85924]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60909, 41.84035], [-87.60919, 41.84058]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59914, 41.82297], [-87.59924, 41.82316]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59679, 41.81939], [-87.59693, 41.81958]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60792, 41.83681], [-87.60797, 41.83705]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6007, 41.82604], [-87.60083, 41.82623]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59461, 41.81652], [-87.59474, 41.8167]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59749, 41.8203], [-87.59763, 41.82048]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61901, 41.86466], [-87.61906, 41.86481]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61019, 41.84301], [-87.6103, 41.84323]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60096, 41.82641], [-87.60108, 41.82658]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59447, 41.81633], [-87.59461, 41.81652]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61448, 41.8543], [-87.61459, 41.85448]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61749, 41.8601], [-87.61755, 41.86028]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59374, 41.81544], [-87.5939, 41.81562]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60781, 41.83516], [-87.60782, 41.83539]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59252, 41.81432], [-87.59269, 41.81446]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59596, 41.8183], [-87.59609, 41.81849]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59156, 41.81361], [-87.59175, 41.81375]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61675, 41.85857], [-87.61683, 41.85874]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60769, 41.83446], [-87.60774, 41.83469]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61625, 41.85753], [-87.61634, 41.85771]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61847, 41.86267], [-87.6185, 41.86282]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61184, 41.84744], [-87.61192, 41.84766]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60707, 41.83295], [-87.60719, 41.83315]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60061, 41.82587], [-87.6007, 41.82604]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60741, 41.83357], [-87.60749, 41.83379]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59884, 41.82237], [-87.59895, 41.82257]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60862, 41.83926], [-87.60873, 41.83948]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61116, 41.84542], [-87.61126, 41.84565]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61607, 41.85715], [-87.61617, 41.85734]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59072, 41.81291], [-87.59086, 41.81307]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59358, 41.81528], [-87.59374, 41.81544]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61323, 41.85189], [-87.61331, 41.85209]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6186, 41.86308], [-87.61863, 41.86322]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60846, 41.83882], [-87.60855, 41.83903]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59002, 41.81073], [-87.5898, 41.81085]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58985, 41.81185], [-87.58992, 41.81197]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59269, 41.81446], [-87.59287, 41.81462]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61906, 41.86481], [-87.6192, 41.86493]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60936, 41.84102], [-87.60948, 41.84124]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61787, 41.86099], [-87.61796, 41.86118]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61289, 41.85081], [-87.61297, 41.85104]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58926, 41.80597], [-87.58937, 41.80613]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61822, 41.86187], [-87.61828, 41.86205]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59231, 41.81417], [-87.59252, 41.81432]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59895, 41.82257], [-87.59903, 41.82277]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59622, 41.81867], [-87.59638, 41.81885]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6185, 41.86282], [-87.61855, 41.86295]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59129, 41.80883], [-87.59142, 41.80894]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61221, 41.84855], [-87.61226, 41.84879]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60812, 41.83794], [-87.6082, 41.83816]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6014, 41.82691], [-87.60156, 41.82707]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60919, 41.84058], [-87.60928, 41.84081]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59903, 41.82277], [-87.59914, 41.82297]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61226, 41.84879], [-87.61234, 41.84902]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60948, 41.84124], [-87.60955, 41.84146]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61569, 41.85638], [-87.61579, 41.85657]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6111, 41.84522], [-87.61116, 41.84542]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61723, 41.85959], [-87.61733, 41.85975]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61833, 41.86222], [-87.61838, 41.86238]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60266, 41.82801], [-87.60283, 41.82817]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59569, 41.81794], [-87.59582, 41.81813]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60555, 41.83087], [-87.60569, 41.83105]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61755, 41.86028], [-87.61764, 41.86044]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60626, 41.83179], [-87.60641, 41.83198]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60002, 41.82473], [-87.6001, 41.82491]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59706, 41.81975], [-87.5972, 41.81994]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61709, 41.85924], [-87.61715, 41.85941]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60611, 41.83161], [-87.60626, 41.83179]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58946, 41.80631], [-87.58958, 41.8065]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59015, 41.81222], [-87.59026, 41.81234]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60641, 41.83198], [-87.60653, 41.83216]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61192, 41.84766], [-87.61199, 41.84789]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60283, 41.82817], [-87.60302, 41.82833]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59342, 41.8151], [-87.59358, 41.81528]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59029, 41.80766], [-87.59039, 41.80781]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6073, 41.83336], [-87.60741, 41.83357]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59201, 41.80953], [-87.59188, 41.80968]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61083, 41.84455], [-87.61094, 41.84477]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59651, 41.81903], [-87.59663, 41.81921]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61275, 41.85037], [-87.61281, 41.85059]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60156, 41.82707], [-87.60173, 41.82722]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61496, 41.85502], [-87.61509, 41.85521]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.611, 41.84499], [-87.6111, 41.84522]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61641, 41.85788], [-87.6165, 41.85806]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61248, 41.84947], [-87.61254, 41.84969]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61588, 41.85676], [-87.61598, 41.85696]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60339, 41.82865], [-87.60359, 41.82881]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58964, 41.81164], [-87.58985, 41.81185]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60785, 41.83564], [-87.60785, 41.83587]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60248, 41.82785], [-87.60266, 41.82801]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60792, 41.83658], [-87.60792, 41.83681]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59841, 41.82158], [-87.59854, 41.82178]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61094, 41.84477], [-87.611, 41.84499]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61529, 41.8556], [-87.61539, 41.85579]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59112, 41.8087], [-87.59129, 41.80883]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6089, 41.83992], [-87.609, 41.84014]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58946, 41.81146], [-87.58964, 41.81164]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59817, 41.82122], [-87.59829, 41.8214]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59086, 41.81307], [-87.59102, 41.8132]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60873, 41.83948], [-87.60881, 41.83969]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59139, 41.81348], [-87.59156, 41.81361]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60431, 41.82944], [-87.60448, 41.82962]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59097, 41.81017], [-87.59085, 41.81026]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61234, 41.84902], [-87.61242, 41.84924]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60928, 41.84081], [-87.60936, 41.84102]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61796, 41.86118], [-87.61803, 41.86135]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58932, 41.81132], [-87.58946, 41.81146]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59693, 41.81958], [-87.59706, 41.81975]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61559, 41.85618], [-87.61569, 41.85638]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59991, 41.82454], [-87.60002, 41.82473]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59829, 41.8214], [-87.59841, 41.82158]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60359, 41.82881], [-87.60377, 41.82896]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61011, 41.84279], [-87.61019, 41.84301]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59043, 41.81051], [-87.59026, 41.81061]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60719, 41.83315], [-87.6073, 41.83336]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59153, 41.80987], [-87.59136, 41.80995]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61389, 41.85344], [-87.61399, 41.85362]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.609, 41.84014], [-87.60909, 41.84035]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59433, 41.81615], [-87.59447, 41.81633]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60448, 41.82962], [-87.60464, 41.82978]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60757, 41.83401], [-87.60763, 41.83423]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61281, 41.85059], [-87.61289, 41.85081]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59983, 41.82434], [-87.59991, 41.82454]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61399, 41.85362], [-87.61412, 41.8538]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61424, 41.85397], [-87.61434, 41.85414]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59924, 41.82316], [-87.59935, 41.82336]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61148, 41.84631], [-87.61157, 41.84654]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60787, 41.83611], [-87.60789, 41.83634]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60955, 41.84146], [-87.60965, 41.84169]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61361, 41.85289], [-87.6137, 41.85308]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59541, 41.81758], [-87.59557, 41.81777]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59136, 41.80995], [-87.59116, 41.81006]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59102, 41.8132], [-87.5912, 41.81335]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61892, 41.86435], [-87.61895, 41.86451]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59557, 41.81777], [-87.59569, 41.81794]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5898, 41.8069], [-87.58992, 41.80709]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60808, 41.83771], [-87.60812, 41.83794]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60049, 41.82568], [-87.60061, 41.82587]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59081, 41.80839], [-87.59096, 41.80854]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61472, 41.85466], [-87.61485, 41.85483]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6165, 41.85806], [-87.61658, 41.85823]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60596, 41.83143], [-87.60611, 41.83161]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61297, 41.85104], [-87.61302, 41.85124]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59325, 41.81494], [-87.59342, 41.8151]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5917, 41.80976], [-87.59153, 41.80987]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60836, 41.8386], [-87.60846, 41.83882]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61162, 41.84676], [-87.61172, 41.84699]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61126, 41.84565], [-87.61133, 41.84588]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59582, 41.81813], [-87.59596, 41.8183]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60582, 41.83125], [-87.60596, 41.83143]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60777, 41.83492], [-87.60781, 41.83516]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61213, 41.84834], [-87.61221, 41.84855]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59116, 41.81006], [-87.59097, 41.81017]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60029, 41.8253], [-87.60038, 41.82549]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59056, 41.81276], [-87.59072, 41.81291]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59763, 41.82048], [-87.59776, 41.82068]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59953, 41.82375], [-87.59964, 41.82395]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6001, 41.82491], [-87.60019, 41.82511]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59863, 41.82197], [-87.59875, 41.82217]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5939, 41.81562], [-87.59404, 41.8158]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60763, 41.83423], [-87.60769, 41.83446]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61485, 41.85483], [-87.61496, 41.85502]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60302, 41.82833], [-87.60321, 41.82849]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59803, 41.82103], [-87.59817, 41.82122]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6021, 41.82753], [-87.60229, 41.82769]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58992, 41.81197], [-87.59005, 41.81209]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61157, 41.84654], [-87.61162, 41.84676]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60801, 41.83749], [-87.60808, 41.83771]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6137, 41.85308], [-87.61378, 41.85326]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5912, 41.81335], [-87.59139, 41.81348]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61809, 41.86153], [-87.61815, 41.86171]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61067, 41.84412], [-87.61075, 41.84433]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5972, 41.81994], [-87.59733, 41.82013]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61075, 41.84433], [-87.61083, 41.84455]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61617, 41.85734], [-87.61625, 41.85753]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59193, 41.81389], [-87.59212, 41.81403]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61207, 41.8481], [-87.61213, 41.84834]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60108, 41.82658], [-87.60126, 41.82674]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59418, 41.81597], [-87.59433, 41.81615]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61434, 41.85414], [-87.61448, 41.8543]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59039, 41.80781], [-87.59048, 41.80793]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61739, 41.85994], [-87.61749, 41.8601]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59066, 41.81038], [-87.59043, 41.81051]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59175, 41.81375], [-87.59193, 41.81389]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60229, 41.82769], [-87.60248, 41.82785]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60782, 41.83539], [-87.60785, 41.83564]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60415, 41.82928], [-87.60431, 41.82944]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59488, 41.81688], [-87.59501, 41.81705]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59026, 41.81234], [-87.59039, 41.81248]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59609, 41.81849], [-87.59622, 41.81867]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59287, 41.81462], [-87.59306, 41.81477]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60992, 41.84235], [-87.61002, 41.84256]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61172, 41.84699], [-87.61178, 41.84721]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5979, 41.82085], [-87.59803, 41.82103]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58937, 41.81104], [-87.58926, 41.81121]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61658, 41.85823], [-87.61666, 41.85839]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59039, 41.81248], [-87.59043, 41.81263]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59943, 41.82356], [-87.59953, 41.82375]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61353, 41.85269], [-87.61361, 41.85289]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60083, 41.82623], [-87.60096, 41.82641]]}, "type": "Feature", "properties": {"num_passengers": 10032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63233, 41.91261], [-87.63243, 41.91274]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63148, 41.90813], [-87.63149, 41.90837]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63162, 41.91058], [-87.63162, 41.91077]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6316, 41.91132], [-87.63165, 41.91146]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6316, 41.91017], [-87.6316, 41.91038]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63214, 41.91232], [-87.63224, 41.91246]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63243, 41.91274], [-87.63255, 41.91283]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63174, 41.91162], [-87.63182, 41.91178]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63157, 41.90962], [-87.63157, 41.90976]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63157, 41.91112], [-87.63157, 41.91116]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6316, 41.91038], [-87.63162, 41.91058]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63147, 41.9065], [-87.63147, 41.90675]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63147, 41.90725], [-87.63147, 41.90745]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63147, 41.90795], [-87.63148, 41.90813]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63146, 41.90925], [-87.63145, 41.90937]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63198, 41.91204], [-87.63205, 41.91218]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63205, 41.91218], [-87.63214, 41.91232]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6316, 41.91096], [-87.63157, 41.91112]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63149, 41.90909], [-87.63146, 41.90925]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63143, 41.90774], [-87.63147, 41.90795]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63162, 41.91077], [-87.6316, 41.91096]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63149, 41.90887], [-87.63149, 41.90909]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63147, 41.90675], [-87.63147, 41.90701]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63149, 41.90837], [-87.63149, 41.90862]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63165, 41.91146], [-87.63174, 41.91162]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63143, 41.90774], [-87.63143, 41.90774]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63147, 41.90701], [-87.63147, 41.90725]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63145, 41.90759], [-87.63143, 41.90774]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63224, 41.91246], [-87.63233, 41.91261]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63294, 41.91347], [-87.633, 41.91359]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6319, 41.91191], [-87.63198, 41.91204]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63182, 41.91178], [-87.6319, 41.91191]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63263, 41.91302], [-87.63273, 41.91317]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63284, 41.91331], [-87.63294, 41.91347]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63157, 41.91116], [-87.6316, 41.91132]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63301, 41.91361], [-87.63296, 41.91346]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63157, 41.90976], [-87.6316, 41.90996]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.633, 41.91359], [-87.63301, 41.91361]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63147, 41.90745], [-87.63145, 41.90759]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63149, 41.90862], [-87.63149, 41.90887]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6316, 41.90996], [-87.6316, 41.91017]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63255, 41.91283], [-87.63263, 41.91302]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63145, 41.90937], [-87.63157, 41.90962]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63273, 41.91317], [-87.63284, 41.91331]]}, "type": "Feature", "properties": {"num_passengers": 10045}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65458, 41.89632], [-87.65507, 41.89631]]}, "type": "Feature", "properties": {"num_passengers": 10065}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63146, 41.90625], [-87.63147, 41.9065]]}, "type": "Feature", "properties": {"num_passengers": 10073}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63143, 41.90585], [-87.63145, 41.90603]]}, "type": "Feature", "properties": {"num_passengers": 10080}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58822, 41.80356], [-87.5883, 41.80376]]}, "type": "Feature", "properties": {"num_passengers": 10081}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58838, 41.80395], [-87.58845, 41.80412]]}, "type": "Feature", "properties": {"num_passengers": 10081}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5883, 41.80376], [-87.58838, 41.80395]]}, "type": "Feature", "properties": {"num_passengers": 10081}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58853, 41.80427], [-87.58853, 41.8043]]}, "type": "Feature", "properties": {"num_passengers": 10081}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58814, 41.80337], [-87.58822, 41.80356]]}, "type": "Feature", "properties": {"num_passengers": 10081}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58862, 41.80449], [-87.58865, 41.80465]]}, "type": "Feature", "properties": {"num_passengers": 10081}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58853, 41.8043], [-87.58862, 41.80449]]}, "type": "Feature", "properties": {"num_passengers": 10081}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58845, 41.80412], [-87.58853, 41.80427]]}, "type": "Feature", "properties": {"num_passengers": 10081}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58865, 41.80465], [-87.58875, 41.80484]]}, "type": "Feature", "properties": {"num_passengers": 10081}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5881, 41.80321], [-87.58814, 41.80337]]}, "type": "Feature", "properties": {"num_passengers": 10081}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58803, 41.80306], [-87.5881, 41.80321]]}, "type": "Feature", "properties": {"num_passengers": 10081}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58921, 41.80582], [-87.58926, 41.80597]]}, "type": "Feature", "properties": {"num_passengers": 10082}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62349, 41.88833], [-87.62376, 41.88832]]}, "type": "Feature", "properties": {"num_passengers": 10098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62324, 41.88833], [-87.62349, 41.88833]]}, "type": "Feature", "properties": {"num_passengers": 10098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62376, 41.88832], [-87.62395, 41.88832]]}, "type": "Feature", "properties": {"num_passengers": 10098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6247, 41.88831], [-87.62496, 41.88832]]}, "type": "Feature", "properties": {"num_passengers": 10098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62395, 41.88832], [-87.62418, 41.88831]]}, "type": "Feature", "properties": {"num_passengers": 10098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62434, 41.8883], [-87.62453, 41.8883]]}, "type": "Feature", "properties": {"num_passengers": 10098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62453, 41.8883], [-87.6247, 41.88831]]}, "type": "Feature", "properties": {"num_passengers": 10098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.88831], [-87.62434, 41.8883]]}, "type": "Feature", "properties": {"num_passengers": 10098}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63145, 41.90603], [-87.63146, 41.90625]]}, "type": "Feature", "properties": {"num_passengers": 10101}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6348, 41.91646], [-87.6348, 41.91646]]}, "type": "Feature", "properties": {"num_passengers": 10110}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63238, 41.88567], [-87.63238, 41.88584]]}, "type": "Feature", "properties": {"num_passengers": 10126}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5891, 41.80566], [-87.58921, 41.80582]]}, "type": "Feature", "properties": {"num_passengers": 10133}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63428, 41.91561], [-87.6348, 41.91646]]}, "type": "Feature", "properties": {"num_passengers": 10135}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63296, 41.91346], [-87.63418, 41.91545]]}, "type": "Feature", "properties": {"num_passengers": 10149}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63418, 41.91545], [-87.63428, 41.91561]]}, "type": "Feature", "properties": {"num_passengers": 10159}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62057, 41.71534], [-87.62057, 41.71518]]}, "type": "Feature", "properties": {"num_passengers": 10160}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62054, 41.71626], [-87.62054, 41.7161]]}, "type": "Feature", "properties": {"num_passengers": 10160}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62054, 41.71591], [-87.62054, 41.71572]]}, "type": "Feature", "properties": {"num_passengers": 10160}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62057, 41.71518], [-87.62057, 41.71501]]}, "type": "Feature", "properties": {"num_passengers": 10160}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62054, 41.71572], [-87.62057, 41.71553]]}, "type": "Feature", "properties": {"num_passengers": 10160}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62054, 41.7161], [-87.62054, 41.71591]]}, "type": "Feature", "properties": {"num_passengers": 10160}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62057, 41.71553], [-87.62057, 41.71534]]}, "type": "Feature", "properties": {"num_passengers": 10160}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62057, 41.71501], [-87.62057, 41.71498]]}, "type": "Feature", "properties": {"num_passengers": 10162}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58875, 41.80484], [-87.58884, 41.80504]]}, "type": "Feature", "properties": {"num_passengers": 10175}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62761, 41.89671], [-87.628, 41.8967]]}, "type": "Feature", "properties": {"num_passengers": 10191}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62623, 41.88758], [-87.6264, 41.88748]]}, "type": "Feature", "properties": {"num_passengers": 10191}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62604, 41.88773], [-87.62623, 41.88758]]}, "type": "Feature", "properties": {"num_passengers": 10191}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58884, 41.80504], [-87.58892, 41.80523]]}, "type": "Feature", "properties": {"num_passengers": 10268}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58905, 41.80554], [-87.5891, 41.80566]]}, "type": "Feature", "properties": {"num_passengers": 10270}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63207, 41.91441], [-87.63196, 41.91427]]}, "type": "Feature", "properties": {"num_passengers": 10289}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62516, 41.75112], [-87.62526, 41.75112]]}, "type": "Feature", "properties": {"num_passengers": 10311}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58892, 41.80523], [-87.589, 41.80541]]}, "type": "Feature", "properties": {"num_passengers": 10336}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60506, 41.75135], [-87.60526, 41.75133]]}, "type": "Feature", "properties": {"num_passengers": 10344}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64079, 41.75069], [-87.64103, 41.75069]]}, "type": "Feature", "properties": {"num_passengers": 10350}}, {"geometry": {"type": "LineString", "coordinates": [[-87.628, 41.8967], [-87.62807, 41.8967]]}, "type": "Feature", "properties": {"num_passengers": 10372}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62701, 41.75096], [-87.62725, 41.75095]]}, "type": "Feature", "properties": {"num_passengers": 10373}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62988, 41.75092], [-87.62996, 41.75092]]}, "type": "Feature", "properties": {"num_passengers": 10373}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62944, 41.75093], [-87.62963, 41.75092]]}, "type": "Feature", "properties": {"num_passengers": 10373}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63022, 41.75092], [-87.63047, 41.75092]]}, "type": "Feature", "properties": {"num_passengers": 10373}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62744, 41.75095], [-87.62763, 41.75097]]}, "type": "Feature", "properties": {"num_passengers": 10373}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63047, 41.75092], [-87.63073, 41.75091]]}, "type": "Feature", "properties": {"num_passengers": 10373}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62763, 41.75097], [-87.62783, 41.75096]]}, "type": "Feature", "properties": {"num_passengers": 10373}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63123, 41.7509], [-87.63147, 41.7509]]}, "type": "Feature", "properties": {"num_passengers": 10373}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63147, 41.7509], [-87.6317, 41.7509]]}, "type": "Feature", "properties": {"num_passengers": 10373}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62809, 41.75095], [-87.62839, 41.75095]]}, "type": "Feature", "properties": {"num_passengers": 10373}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62783, 41.75096], [-87.62809, 41.75095]]}, "type": "Feature", "properties": {"num_passengers": 10373}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62725, 41.75095], [-87.62744, 41.75095]]}, "type": "Feature", "properties": {"num_passengers": 10373}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6292, 41.75095], [-87.62944, 41.75093]]}, "type": "Feature", "properties": {"num_passengers": 10373}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6319, 41.7509], [-87.6319, 41.7509]]}, "type": "Feature", "properties": {"num_passengers": 10373}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62866, 41.75095], [-87.62893, 41.75095]]}, "type": "Feature", "properties": {"num_passengers": 10373}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62839, 41.75095], [-87.62866, 41.75095]]}, "type": "Feature", "properties": {"num_passengers": 10373}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63098, 41.7509], [-87.63123, 41.7509]]}, "type": "Feature", "properties": {"num_passengers": 10373}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6319, 41.7509], [-87.63208, 41.75086]]}, "type": "Feature", "properties": {"num_passengers": 10373}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62893, 41.75095], [-87.6292, 41.75095]]}, "type": "Feature", "properties": {"num_passengers": 10373}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62996, 41.75092], [-87.63022, 41.75092]]}, "type": "Feature", "properties": {"num_passengers": 10373}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6317, 41.7509], [-87.6319, 41.7509]]}, "type": "Feature", "properties": {"num_passengers": 10373}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62744, 41.75095], [-87.62744, 41.75095]]}, "type": "Feature", "properties": {"num_passengers": 10373}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62963, 41.75092], [-87.62988, 41.75092]]}, "type": "Feature", "properties": {"num_passengers": 10373}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63073, 41.75091], [-87.63098, 41.7509]]}, "type": "Feature", "properties": {"num_passengers": 10373}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63238, 41.88584], [-87.63238, 41.886]]}, "type": "Feature", "properties": {"num_passengers": 10397}}, {"geometry": {"type": "LineString", "coordinates": [[-87.589, 41.80541], [-87.58905, 41.80554]]}, "type": "Feature", "properties": {"num_passengers": 10405}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62767, 41.87508], [-87.62767, 41.87491]]}, "type": "Feature", "properties": {"num_passengers": 10407}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63262, 41.88317], [-87.6326, 41.88317]]}, "type": "Feature", "properties": {"num_passengers": 10425}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63238, 41.886], [-87.63238, 41.88618]]}, "type": "Feature", "properties": {"num_passengers": 10440}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62399, 41.86204], [-87.62399, 41.86219]]}, "type": "Feature", "properties": {"num_passengers": 10441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62399, 41.86189], [-87.62399, 41.86204]]}, "type": "Feature", "properties": {"num_passengers": 10441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.86369], [-87.62402, 41.86383]]}, "type": "Feature", "properties": {"num_passengers": 10441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62399, 41.86251], [-87.62399, 41.86265]]}, "type": "Feature", "properties": {"num_passengers": 10441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62399, 41.86235], [-87.62399, 41.86251]]}, "type": "Feature", "properties": {"num_passengers": 10441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.624, 41.86293], [-87.62399, 41.86307]]}, "type": "Feature", "properties": {"num_passengers": 10441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62399, 41.86307], [-87.624, 41.86323]]}, "type": "Feature", "properties": {"num_passengers": 10441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.86383], [-87.62402, 41.86395]]}, "type": "Feature", "properties": {"num_passengers": 10441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62399, 41.86265], [-87.624, 41.86279]]}, "type": "Feature", "properties": {"num_passengers": 10441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.624, 41.86323], [-87.624, 41.86339]]}, "type": "Feature", "properties": {"num_passengers": 10441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.624, 41.86279], [-87.624, 41.86293]]}, "type": "Feature", "properties": {"num_passengers": 10441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62399, 41.86219], [-87.62399, 41.86235]]}, "type": "Feature", "properties": {"num_passengers": 10441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.624, 41.86339], [-87.62402, 41.86356]]}, "type": "Feature", "properties": {"num_passengers": 10441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.86356], [-87.62402, 41.86369]]}, "type": "Feature", "properties": {"num_passengers": 10441}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62677, 41.75099], [-87.62701, 41.75096]]}, "type": "Feature", "properties": {"num_passengers": 10464}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63238, 41.88618], [-87.63239, 41.88628]]}, "type": "Feature", "properties": {"num_passengers": 10484}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60526, 41.75133], [-87.60555, 41.7513]]}, "type": "Feature", "properties": {"num_passengers": 10493}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62759, 41.87695], [-87.62764, 41.87934]]}, "type": "Feature", "properties": {"num_passengers": 10498}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62552, 41.88819], [-87.6257, 41.88804]]}, "type": "Feature", "properties": {"num_passengers": 10506}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62807, 41.8967], [-87.6284, 41.8967]]}, "type": "Feature", "properties": {"num_passengers": 10507}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62653, 41.75101], [-87.62677, 41.75099]]}, "type": "Feature", "properties": {"num_passengers": 10555}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64111, 41.87774], [-87.6411, 41.87759]]}, "type": "Feature", "properties": {"num_passengers": 10559}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64109, 41.87739], [-87.64109, 41.87723]]}, "type": "Feature", "properties": {"num_passengers": 10559}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6411, 41.87759], [-87.64109, 41.87739]]}, "type": "Feature", "properties": {"num_passengers": 10559}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64109, 41.87723], [-87.64108, 41.87706]]}, "type": "Feature", "properties": {"num_passengers": 10559}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6411, 41.87809], [-87.64111, 41.87794]]}, "type": "Feature", "properties": {"num_passengers": 10559}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64108, 41.87706], [-87.64107, 41.87691]]}, "type": "Feature", "properties": {"num_passengers": 10559}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64111, 41.87794], [-87.64111, 41.87774]]}, "type": "Feature", "properties": {"num_passengers": 10559}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62526, 41.75112], [-87.62545, 41.75112]]}, "type": "Feature", "properties": {"num_passengers": 10563}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62636, 41.75105], [-87.62653, 41.75101]]}, "type": "Feature", "properties": {"num_passengers": 10568}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62613, 41.75109], [-87.62636, 41.75105]]}, "type": "Feature", "properties": {"num_passengers": 10580}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62767, 41.87491], [-87.62765, 41.87477]]}, "type": "Feature", "properties": {"num_passengers": 10599}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64052, 41.75071], [-87.64079, 41.75069]]}, "type": "Feature", "properties": {"num_passengers": 10622}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63319, 41.89666], [-87.63369, 41.89665]]}, "type": "Feature", "properties": {"num_passengers": 10642}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63103, 41.89667], [-87.63113, 41.89667]]}, "type": "Feature", "properties": {"num_passengers": 10642}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63369, 41.89665], [-87.63436, 41.89664]]}, "type": "Feature", "properties": {"num_passengers": 10642}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63147, 41.89668], [-87.63202, 41.89667]]}, "type": "Feature", "properties": {"num_passengers": 10642}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60555, 41.7513], [-87.60576, 41.75128]]}, "type": "Feature", "properties": {"num_passengers": 10642}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63202, 41.89667], [-87.6325, 41.89666]]}, "type": "Feature", "properties": {"num_passengers": 10642}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63436, 41.89664], [-87.63491, 41.89664]]}, "type": "Feature", "properties": {"num_passengers": 10642}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63261, 41.89665], [-87.63319, 41.89666]]}, "type": "Feature", "properties": {"num_passengers": 10642}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62958, 41.89669], [-87.62967, 41.89669]]}, "type": "Feature", "properties": {"num_passengers": 10642}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63059, 41.89668], [-87.63103, 41.89667]]}, "type": "Feature", "properties": {"num_passengers": 10642}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62922, 41.89669], [-87.62958, 41.89669]]}, "type": "Feature", "properties": {"num_passengers": 10642}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63012, 41.89668], [-87.63059, 41.89668]]}, "type": "Feature", "properties": {"num_passengers": 10642}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6284, 41.8967], [-87.62883, 41.8967]]}, "type": "Feature", "properties": {"num_passengers": 10642}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63113, 41.89667], [-87.63147, 41.89668]]}, "type": "Feature", "properties": {"num_passengers": 10642}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62883, 41.8967], [-87.62922, 41.89669]]}, "type": "Feature", "properties": {"num_passengers": 10642}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62967, 41.89669], [-87.63012, 41.89668]]}, "type": "Feature", "properties": {"num_passengers": 10642}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6325, 41.89666], [-87.63261, 41.89665]]}, "type": "Feature", "properties": {"num_passengers": 10642}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62613, 41.75109], [-87.62613, 41.75109]]}, "type": "Feature", "properties": {"num_passengers": 10643}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64505, 41.95161], [-87.64502, 41.95146]]}, "type": "Feature", "properties": {"num_passengers": 10647}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64505, 41.95175], [-87.64505, 41.95161]]}, "type": "Feature", "properties": {"num_passengers": 10647}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64507, 41.95202], [-87.64507, 41.95189]]}, "type": "Feature", "properties": {"num_passengers": 10647}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64507, 41.95189], [-87.64505, 41.95175]]}, "type": "Feature", "properties": {"num_passengers": 10647}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63196, 41.91427], [-87.6319, 41.91414]]}, "type": "Feature", "properties": {"num_passengers": 10659}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64774, 41.89645], [-87.64815, 41.89646]]}, "type": "Feature", "properties": {"num_passengers": 10676}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65227, 41.89635], [-87.65278, 41.89634]]}, "type": "Feature", "properties": {"num_passengers": 10676}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64722, 41.89644], [-87.64774, 41.89645]]}, "type": "Feature", "properties": {"num_passengers": 10676}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64675, 41.89646], [-87.64722, 41.89644]]}, "type": "Feature", "properties": {"num_passengers": 10676}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64827, 41.89645], [-87.64859, 41.89645]]}, "type": "Feature", "properties": {"num_passengers": 10676}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64933, 41.8964], [-87.6499, 41.89639]]}, "type": "Feature", "properties": {"num_passengers": 10676}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64859, 41.89645], [-87.64893, 41.89641]]}, "type": "Feature", "properties": {"num_passengers": 10676}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65178, 41.89636], [-87.65227, 41.89635]]}, "type": "Feature", "properties": {"num_passengers": 10676}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64815, 41.89646], [-87.64827, 41.89645]]}, "type": "Feature", "properties": {"num_passengers": 10676}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65278, 41.89634], [-87.65333, 41.89633]]}, "type": "Feature", "properties": {"num_passengers": 10676}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65396, 41.89632], [-87.65458, 41.89632]]}, "type": "Feature", "properties": {"num_passengers": 10676}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65047, 41.89638], [-87.65106, 41.89638]]}, "type": "Feature", "properties": {"num_passengers": 10676}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64893, 41.89641], [-87.64933, 41.8964]]}, "type": "Feature", "properties": {"num_passengers": 10676}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6499, 41.89639], [-87.65047, 41.89638]]}, "type": "Feature", "properties": {"num_passengers": 10676}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65106, 41.89638], [-87.65168, 41.89637]]}, "type": "Feature", "properties": {"num_passengers": 10676}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65168, 41.89637], [-87.65178, 41.89636]]}, "type": "Feature", "properties": {"num_passengers": 10676}}, {"geometry": {"type": "LineString", "coordinates": [[-87.65333, 41.89633], [-87.65396, 41.89632]]}, "type": "Feature", "properties": {"num_passengers": 10676}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63936, 41.93306], [-87.63936, 41.93293]]}, "type": "Feature", "properties": {"num_passengers": 10693}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62594, 41.75111], [-87.62613, 41.75109]]}, "type": "Feature", "properties": {"num_passengers": 10706}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62417, 41.87571], [-87.62417, 41.87587]]}, "type": "Feature", "properties": {"num_passengers": 10709}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60576, 41.75128], [-87.60601, 41.75128]]}, "type": "Feature", "properties": {"num_passengers": 10724}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62572, 41.75111], [-87.62594, 41.75111]]}, "type": "Feature", "properties": {"num_passengers": 10761}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62765, 41.87477], [-87.62765, 41.87462]]}, "type": "Feature", "properties": {"num_passengers": 10774}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64621, 41.89647], [-87.64675, 41.89646]]}, "type": "Feature", "properties": {"num_passengers": 10798}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60601, 41.75128], [-87.60628, 41.75128]]}, "type": "Feature", "properties": {"num_passengers": 10805}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62399, 41.89816], [-87.62404, 41.89935]]}, "type": "Feature", "properties": {"num_passengers": 10805}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62545, 41.75112], [-87.62572, 41.75111]]}, "type": "Feature", "properties": {"num_passengers": 10815}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62399, 41.89799], [-87.62399, 41.89816]]}, "type": "Feature", "properties": {"num_passengers": 10822}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6257, 41.88804], [-87.62586, 41.88789]]}, "type": "Feature", "properties": {"num_passengers": 10847}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60628, 41.75128], [-87.60653, 41.75126]]}, "type": "Feature", "properties": {"num_passengers": 10871}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64136, 41.75066], [-87.64052, 41.75071]]}, "type": "Feature", "properties": {"num_passengers": 10895}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64451, 41.95032], [-87.64448, 41.95026]]}, "type": "Feature", "properties": {"num_passengers": 10908}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64609, 41.89647], [-87.64621, 41.89647]]}, "type": "Feature", "properties": {"num_passengers": 10919}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63701, 41.75072], [-87.64136, 41.75066]]}, "type": "Feature", "properties": {"num_passengers": 10919}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64448, 41.95026], [-87.6444, 41.95013]]}, "type": "Feature", "properties": {"num_passengers": 10933}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60653, 41.75126], [-87.60682, 41.75126]]}, "type": "Feature", "properties": {"num_passengers": 10937}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62536, 41.88832], [-87.62552, 41.88819]]}, "type": "Feature", "properties": {"num_passengers": 10941}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63659, 41.7508], [-87.63701, 41.75072]]}, "type": "Feature", "properties": {"num_passengers": 10943}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63401, 41.75082], [-87.63659, 41.7508]]}, "type": "Feature", "properties": {"num_passengers": 10944}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62514, 41.88834], [-87.62536, 41.88832]]}, "type": "Feature", "properties": {"num_passengers": 10946}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63225, 41.75086], [-87.63247, 41.75085]]}, "type": "Feature", "properties": {"num_passengers": 10947}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63314, 41.75083], [-87.63336, 41.75083]]}, "type": "Feature", "properties": {"num_passengers": 10947}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63271, 41.75084], [-87.63294, 41.75084]]}, "type": "Feature", "properties": {"num_passengers": 10947}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63208, 41.75086], [-87.63225, 41.75086]]}, "type": "Feature", "properties": {"num_passengers": 10947}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63336, 41.75083], [-87.63356, 41.75083]]}, "type": "Feature", "properties": {"num_passengers": 10947}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63356, 41.75083], [-87.63378, 41.75083]]}, "type": "Feature", "properties": {"num_passengers": 10947}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63247, 41.75085], [-87.63271, 41.75084]]}, "type": "Feature", "properties": {"num_passengers": 10947}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63294, 41.75084], [-87.63314, 41.75083]]}, "type": "Feature", "properties": {"num_passengers": 10947}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63395, 41.75083], [-87.63395, 41.75083]]}, "type": "Feature", "properties": {"num_passengers": 10947}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63378, 41.75083], [-87.63395, 41.75083]]}, "type": "Feature", "properties": {"num_passengers": 10947}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63395, 41.75083], [-87.63401, 41.75082]]}, "type": "Feature", "properties": {"num_passengers": 10947}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62764, 41.87341], [-87.62764, 41.87327]]}, "type": "Feature", "properties": {"num_passengers": 10949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62748, 41.87306], [-87.62737, 41.87307]]}, "type": "Feature", "properties": {"num_passengers": 10949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62765, 41.87462], [-87.62765, 41.87444]]}, "type": "Feature", "properties": {"num_passengers": 10949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62765, 41.87374], [-87.62765, 41.87361]]}, "type": "Feature", "properties": {"num_passengers": 10949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62766, 41.87413], [-87.62766, 41.87396]]}, "type": "Feature", "properties": {"num_passengers": 10949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62763, 41.87316], [-87.62759, 41.87307]]}, "type": "Feature", "properties": {"num_passengers": 10949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62759, 41.87307], [-87.62748, 41.87306]]}, "type": "Feature", "properties": {"num_passengers": 10949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62765, 41.87361], [-87.62764, 41.87351]]}, "type": "Feature", "properties": {"num_passengers": 10949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62764, 41.87429], [-87.62766, 41.87413]]}, "type": "Feature", "properties": {"num_passengers": 10949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62764, 41.87351], [-87.62764, 41.87341]]}, "type": "Feature", "properties": {"num_passengers": 10949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62764, 41.87327], [-87.62763, 41.87316]]}, "type": "Feature", "properties": {"num_passengers": 10949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62765, 41.87444], [-87.62764, 41.87429]]}, "type": "Feature", "properties": {"num_passengers": 10949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62766, 41.87396], [-87.62765, 41.87374]]}, "type": "Feature", "properties": {"num_passengers": 10949}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64356, 41.94872], [-87.64348, 41.9486]]}, "type": "Feature", "properties": {"num_passengers": 10958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6444, 41.95013], [-87.64433, 41.95001]]}, "type": "Feature", "properties": {"num_passengers": 10958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64266, 41.94717], [-87.64255, 41.94698]]}, "type": "Feature", "properties": {"num_passengers": 10958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64236, 41.94666], [-87.64236, 41.94666]]}, "type": "Feature", "properties": {"num_passengers": 10958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64163, 41.94538], [-87.64153, 41.94517]]}, "type": "Feature", "properties": {"num_passengers": 10958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64328, 41.94825], [-87.64318, 41.94809]]}, "type": "Feature", "properties": {"num_passengers": 10958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64153, 41.94517], [-87.64143, 41.94501]]}, "type": "Feature", "properties": {"num_passengers": 10958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64189, 41.94583], [-87.6418, 41.94568]]}, "type": "Feature", "properties": {"num_passengers": 10958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64348, 41.9486], [-87.64344, 41.94853]]}, "type": "Feature", "properties": {"num_passengers": 10958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6418, 41.94568], [-87.64172, 41.94552]]}, "type": "Feature", "properties": {"num_passengers": 10958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64245, 41.94682], [-87.64236, 41.94666]]}, "type": "Feature", "properties": {"num_passengers": 10958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64291, 41.94761], [-87.64286, 41.94754]]}, "type": "Feature", "properties": {"num_passengers": 10958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64301, 41.94776], [-87.64291, 41.94761]]}, "type": "Feature", "properties": {"num_passengers": 10958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64372, 41.949], [-87.64363, 41.94885]]}, "type": "Feature", "properties": {"num_passengers": 10958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64231, 41.94659], [-87.64223, 41.94644]]}, "type": "Feature", "properties": {"num_passengers": 10958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64223, 41.94644], [-87.64211, 41.94621]]}, "type": "Feature", "properties": {"num_passengers": 10958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64397, 41.94941], [-87.64389, 41.94925]]}, "type": "Feature", "properties": {"num_passengers": 10958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64172, 41.94552], [-87.64163, 41.94538]]}, "type": "Feature", "properties": {"num_passengers": 10958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64318, 41.94809], [-87.6431, 41.94791]]}, "type": "Feature", "properties": {"num_passengers": 10958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64194, 41.94595], [-87.64189, 41.94583]]}, "type": "Feature", "properties": {"num_passengers": 10958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64389, 41.94925], [-87.64381, 41.94913]]}, "type": "Feature", "properties": {"num_passengers": 10958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64255, 41.94698], [-87.64245, 41.94682]]}, "type": "Feature", "properties": {"num_passengers": 10958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64406, 41.94956], [-87.64397, 41.94941]]}, "type": "Feature", "properties": {"num_passengers": 10958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64276, 41.94737], [-87.64266, 41.94717]]}, "type": "Feature", "properties": {"num_passengers": 10958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64286, 41.94754], [-87.64276, 41.94737]]}, "type": "Feature", "properties": {"num_passengers": 10958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64336, 41.9484], [-87.64328, 41.94825]]}, "type": "Feature", "properties": {"num_passengers": 10958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6431, 41.94791], [-87.64301, 41.94776]]}, "type": "Feature", "properties": {"num_passengers": 10958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64415, 41.94972], [-87.64406, 41.94956]]}, "type": "Feature", "properties": {"num_passengers": 10958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.642, 41.94604], [-87.64194, 41.94595]]}, "type": "Feature", "properties": {"num_passengers": 10958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64344, 41.94853], [-87.64336, 41.9484]]}, "type": "Feature", "properties": {"num_passengers": 10958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64363, 41.94885], [-87.64356, 41.94872]]}, "type": "Feature", "properties": {"num_passengers": 10958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64423, 41.94984], [-87.64415, 41.94972]]}, "type": "Feature", "properties": {"num_passengers": 10958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64433, 41.95001], [-87.64423, 41.94984]]}, "type": "Feature", "properties": {"num_passengers": 10958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64381, 41.94913], [-87.64372, 41.949]]}, "type": "Feature", "properties": {"num_passengers": 10958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64211, 41.94621], [-87.642, 41.94604]]}, "type": "Feature", "properties": {"num_passengers": 10958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64236, 41.94666], [-87.64231, 41.94659]]}, "type": "Feature", "properties": {"num_passengers": 10958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6456, 41.89647], [-87.64609, 41.89647]]}, "type": "Feature", "properties": {"num_passengers": 10962}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60682, 41.75126], [-87.60707, 41.75125]]}, "type": "Feature", "properties": {"num_passengers": 10971}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63251, 41.88542], [-87.6325, 41.88527]]}, "type": "Feature", "properties": {"num_passengers": 10973}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63252, 41.88604], [-87.63252, 41.88588]]}, "type": "Feature", "properties": {"num_passengers": 10973}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6325, 41.88527], [-87.6325, 41.88511]]}, "type": "Feature", "properties": {"num_passengers": 10973}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63251, 41.88559], [-87.63251, 41.88542]]}, "type": "Feature", "properties": {"num_passengers": 10973}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63252, 41.88588], [-87.63251, 41.88573]]}, "type": "Feature", "properties": {"num_passengers": 10973}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63253, 41.88617], [-87.63252, 41.88604]]}, "type": "Feature", "properties": {"num_passengers": 10973}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63254, 41.88633], [-87.63253, 41.88617]]}, "type": "Feature", "properties": {"num_passengers": 10973}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63251, 41.88573], [-87.63251, 41.88559]]}, "type": "Feature", "properties": {"num_passengers": 10973}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62586, 41.88789], [-87.62604, 41.88773]]}, "type": "Feature", "properties": {"num_passengers": 10976}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6218, 41.87324], [-87.62204, 41.87323]]}, "type": "Feature", "properties": {"num_passengers": 10986}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62384, 41.87322], [-87.62395, 41.87322]]}, "type": "Feature", "properties": {"num_passengers": 10986}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62129, 41.87325], [-87.62157, 41.87324]]}, "type": "Feature", "properties": {"num_passengers": 10986}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62157, 41.87324], [-87.6218, 41.87324]]}, "type": "Feature", "properties": {"num_passengers": 10986}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62324, 41.87322], [-87.62344, 41.87321]]}, "type": "Feature", "properties": {"num_passengers": 10986}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62344, 41.87321], [-87.62366, 41.87321]]}, "type": "Feature", "properties": {"num_passengers": 10986}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6228, 41.87322], [-87.62302, 41.87322]]}, "type": "Feature", "properties": {"num_passengers": 10986}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62302, 41.87322], [-87.62324, 41.87322]]}, "type": "Feature", "properties": {"num_passengers": 10986}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62366, 41.87321], [-87.62384, 41.87322]]}, "type": "Feature", "properties": {"num_passengers": 10986}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62254, 41.87322], [-87.6228, 41.87322]]}, "type": "Feature", "properties": {"num_passengers": 10986}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62204, 41.87323], [-87.62229, 41.87323]]}, "type": "Feature", "properties": {"num_passengers": 10986}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62229, 41.87323], [-87.62254, 41.87322]]}, "type": "Feature", "properties": {"num_passengers": 10986}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62105, 41.87326], [-87.62129, 41.87325]]}, "type": "Feature", "properties": {"num_passengers": 10986}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63491, 41.89664], [-87.63551, 41.89663]]}, "type": "Feature", "properties": {"num_passengers": 10999}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61064, 41.75122], [-87.61087, 41.75122]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61043, 41.75124], [-87.61064, 41.75122]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61408, 41.75116], [-87.61429, 41.75116]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61, 41.75124], [-87.61019, 41.75124]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61019, 41.75124], [-87.61043, 41.75124]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60839, 41.75124], [-87.6086, 41.75124]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60951, 41.75122], [-87.60968, 41.75122]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6147, 41.7512], [-87.61485, 41.75118]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61337, 41.75118], [-87.61364, 41.75118]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61226, 41.7512], [-87.61242, 41.75122]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61453, 41.75117], [-87.6147, 41.7512]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60968, 41.75122], [-87.60992, 41.75124]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61135, 41.7512], [-87.61157, 41.7512]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61284, 41.75118], [-87.6131, 41.75117]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64505, 41.89647], [-87.6456, 41.89647]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61242, 41.75122], [-87.61264, 41.7512]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61157, 41.7512], [-87.6118, 41.7512]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60903, 41.75124], [-87.60928, 41.75124]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6073, 41.75126], [-87.6075, 41.75126]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61113, 41.75122], [-87.61135, 41.7512]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61388, 41.75117], [-87.61408, 41.75116]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60882, 41.75124], [-87.60903, 41.75124]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61087, 41.75122], [-87.61113, 41.75122]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6075, 41.75126], [-87.60758, 41.75126]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60801, 41.75124], [-87.6082, 41.75124]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6131, 41.75117], [-87.61337, 41.75118]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60928, 41.75124], [-87.60951, 41.75122]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61202, 41.75118], [-87.61226, 41.7512]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60777, 41.75126], [-87.60801, 41.75124]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60707, 41.75125], [-87.6073, 41.75126]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61264, 41.7512], [-87.61284, 41.75118]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6086, 41.75124], [-87.60882, 41.75124]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6118, 41.7512], [-87.61202, 41.75118]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6082, 41.75124], [-87.60839, 41.75124]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61364, 41.75118], [-87.61388, 41.75117]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60758, 41.75126], [-87.60777, 41.75126]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61429, 41.75116], [-87.61453, 41.75117]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60992, 41.75124], [-87.61, 41.75124]]}, "type": "Feature", "properties": {"num_passengers": 11004}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61679, 41.75112], [-87.61701, 41.75111]]}, "type": "Feature", "properties": {"num_passengers": 11026}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6319, 41.91414], [-87.63179, 41.91399]]}, "type": "Feature", "properties": {"num_passengers": 11028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64443, 41.89647], [-87.64505, 41.89647]]}, "type": "Feature", "properties": {"num_passengers": 11029}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64033, 41.89656], [-87.64091, 41.89655]]}, "type": "Feature", "properties": {"num_passengers": 11054}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6421, 41.89653], [-87.64258, 41.89652]]}, "type": "Feature", "properties": {"num_passengers": 11054}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63975, 41.89656], [-87.63985, 41.89656]]}, "type": "Feature", "properties": {"num_passengers": 11054}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63918, 41.89657], [-87.63975, 41.89656]]}, "type": "Feature", "properties": {"num_passengers": 11054}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64384, 41.89649], [-87.64443, 41.89647]]}, "type": "Feature", "properties": {"num_passengers": 11054}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64149, 41.89654], [-87.6421, 41.89653]]}, "type": "Feature", "properties": {"num_passengers": 11054}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64324, 41.8965], [-87.64384, 41.89649]]}, "type": "Feature", "properties": {"num_passengers": 11054}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63803, 41.89658], [-87.63864, 41.89658]]}, "type": "Feature", "properties": {"num_passengers": 11054}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6427, 41.89652], [-87.64324, 41.8965]]}, "type": "Feature", "properties": {"num_passengers": 11054}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64258, 41.89652], [-87.6427, 41.89652]]}, "type": "Feature", "properties": {"num_passengers": 11054}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64091, 41.89655], [-87.64149, 41.89654]]}, "type": "Feature", "properties": {"num_passengers": 11054}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63864, 41.89658], [-87.63918, 41.89657]]}, "type": "Feature", "properties": {"num_passengers": 11054}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63985, 41.89656], [-87.64033, 41.89656]]}, "type": "Feature", "properties": {"num_passengers": 11054}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61485, 41.75118], [-87.6151, 41.75118]]}, "type": "Feature", "properties": {"num_passengers": 11056}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64103, 41.75069], [-87.64125, 41.75071]]}, "type": "Feature", "properties": {"num_passengers": 11070}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64502, 41.95146], [-87.64498, 41.95129]]}, "type": "Feature", "properties": {"num_passengers": 11077}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6166, 41.75114], [-87.61679, 41.75112]]}, "type": "Feature", "properties": {"num_passengers": 11083}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6151, 41.75118], [-87.61529, 41.75117]]}, "type": "Feature", "properties": {"num_passengers": 11107}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61639, 41.75114], [-87.6166, 41.75114]]}, "type": "Feature", "properties": {"num_passengers": 11139}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61529, 41.75117], [-87.61551, 41.75116]]}, "type": "Feature", "properties": {"num_passengers": 11139}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61623, 41.75114], [-87.61639, 41.75114]]}, "type": "Feature", "properties": {"num_passengers": 11148}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61602, 41.75114], [-87.61623, 41.75114]]}, "type": "Feature", "properties": {"num_passengers": 11157}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61575, 41.75114], [-87.61602, 41.75114]]}, "type": "Feature", "properties": {"num_passengers": 11164}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61551, 41.75116], [-87.61575, 41.75114]]}, "type": "Feature", "properties": {"num_passengers": 11170}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63179, 41.91399], [-87.63174, 41.91383]]}, "type": "Feature", "properties": {"num_passengers": 11329}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63551, 41.89663], [-87.6356, 41.89662]]}, "type": "Feature", "properties": {"num_passengers": 11356}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64143, 41.94501], [-87.64135, 41.94484]]}, "type": "Feature", "properties": {"num_passengers": 11401}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63751, 41.89659], [-87.63803, 41.89658]]}, "type": "Feature", "properties": {"num_passengers": 11430}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63936, 41.93293], [-87.6392, 41.93271]]}, "type": "Feature", "properties": {"num_passengers": 11564}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64498, 41.95129], [-87.64492, 41.95111]]}, "type": "Feature", "properties": {"num_passengers": 11592}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6356, 41.89662], [-87.6362, 41.89661]]}, "type": "Feature", "properties": {"num_passengers": 11593}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62453, 41.88258], [-87.62451, 41.88243]]}, "type": "Feature", "properties": {"num_passengers": 11764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62451, 41.8818], [-87.62449, 41.88164]]}, "type": "Feature", "properties": {"num_passengers": 11764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62446, 41.88035], [-87.62445, 41.88021]]}, "type": "Feature", "properties": {"num_passengers": 11764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62453, 41.88344], [-87.62454, 41.88333]]}, "type": "Feature", "properties": {"num_passengers": 11764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62441, 41.87852], [-87.62441, 41.87838]]}, "type": "Feature", "properties": {"num_passengers": 11764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62441, 41.8792], [-87.62441, 41.87906]]}, "type": "Feature", "properties": {"num_passengers": 11764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62441, 41.87906], [-87.6244, 41.87893]]}, "type": "Feature", "properties": {"num_passengers": 11764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6245, 41.88195], [-87.62451, 41.8818]]}, "type": "Feature", "properties": {"num_passengers": 11764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6245, 41.8813], [-87.6245, 41.88122]]}, "type": "Feature", "properties": {"num_passengers": 11764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62449, 41.88164], [-87.6245, 41.88148]]}, "type": "Feature", "properties": {"num_passengers": 11764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62443, 41.87993], [-87.62445, 41.87973]]}, "type": "Feature", "properties": {"num_passengers": 11764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62453, 41.88295], [-87.62453, 41.88276]]}, "type": "Feature", "properties": {"num_passengers": 11764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62444, 41.88007], [-87.62443, 41.87993]]}, "type": "Feature", "properties": {"num_passengers": 11764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62449, 41.88117], [-87.62448, 41.88102]]}, "type": "Feature", "properties": {"num_passengers": 11764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62442, 41.87934], [-87.62441, 41.8792]]}, "type": "Feature", "properties": {"num_passengers": 11764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62446, 41.88053], [-87.62446, 41.88035]]}, "type": "Feature", "properties": {"num_passengers": 11764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6245, 41.88122], [-87.62449, 41.88117]]}, "type": "Feature", "properties": {"num_passengers": 11764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62441, 41.87874], [-87.6244, 41.87859]]}, "type": "Feature", "properties": {"num_passengers": 11764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6244, 41.87893], [-87.62441, 41.87874]]}, "type": "Feature", "properties": {"num_passengers": 11764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62454, 41.88312], [-87.62453, 41.88295]]}, "type": "Feature", "properties": {"num_passengers": 11764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62451, 41.88243], [-87.62451, 41.88227]]}, "type": "Feature", "properties": {"num_passengers": 11764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6244, 41.87859], [-87.62441, 41.87852]]}, "type": "Feature", "properties": {"num_passengers": 11764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62445, 41.87973], [-87.62444, 41.87954]]}, "type": "Feature", "properties": {"num_passengers": 11764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6245, 41.88209], [-87.6245, 41.88195]]}, "type": "Feature", "properties": {"num_passengers": 11764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62448, 41.88102], [-87.62448, 41.88085]]}, "type": "Feature", "properties": {"num_passengers": 11764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62451, 41.88227], [-87.6245, 41.88209]]}, "type": "Feature", "properties": {"num_passengers": 11764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62448, 41.88085], [-87.62447, 41.8807]]}, "type": "Feature", "properties": {"num_passengers": 11764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62453, 41.88276], [-87.62453, 41.88258]]}, "type": "Feature", "properties": {"num_passengers": 11764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62444, 41.87954], [-87.62442, 41.87934]]}, "type": "Feature", "properties": {"num_passengers": 11764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6245, 41.88148], [-87.6245, 41.8813]]}, "type": "Feature", "properties": {"num_passengers": 11764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62445, 41.88021], [-87.62444, 41.88007]]}, "type": "Feature", "properties": {"num_passengers": 11764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62447, 41.8807], [-87.62446, 41.88053]]}, "type": "Feature", "properties": {"num_passengers": 11764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62454, 41.88333], [-87.62454, 41.88312]]}, "type": "Feature", "properties": {"num_passengers": 11764}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64125, 41.75071], [-87.64147, 41.75072]]}, "type": "Feature", "properties": {"num_passengers": 11790}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63738, 41.89659], [-87.63751, 41.89659]]}, "type": "Feature", "properties": {"num_passengers": 11806}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63681, 41.89659], [-87.63738, 41.89659]]}, "type": "Feature", "properties": {"num_passengers": 11818}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64147, 41.75072], [-87.64147, 41.75072]]}, "type": "Feature", "properties": {"num_passengers": 11824}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6362, 41.89661], [-87.63681, 41.89659]]}, "type": "Feature", "properties": {"num_passengers": 11831}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64135, 41.94484], [-87.64126, 41.9447]]}, "type": "Feature", "properties": {"num_passengers": 11844}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5905, 41.81184], [-87.59043, 41.8117]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59005, 41.81039], [-87.59021, 41.81033]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5914, 41.80988], [-87.59159, 41.80978]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59066, 41.80795], [-87.59056, 41.80781]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59236, 41.81375], [-87.5922, 41.81363]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59113, 41.80997], [-87.5914, 41.80988]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59267, 41.814], [-87.59252, 41.81387]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59195, 41.80922], [-87.59156, 41.80882]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5918, 41.80974], [-87.59203, 41.80969]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59021, 41.81127], [-87.5901, 41.81106]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5914, 41.81301], [-87.59128, 41.81288]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59112, 41.81274], [-87.59099, 41.81259]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59029, 41.81139], [-87.59021, 41.81127]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59252, 41.81387], [-87.59236, 41.81375]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59156, 41.81315], [-87.5914, 41.81301]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59078, 41.81229], [-87.59066, 41.81215]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59053, 41.81022], [-87.59074, 41.81015]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59283, 41.81413], [-87.59267, 41.814]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5922, 41.81363], [-87.59202, 41.81352]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59043, 41.8117], [-87.59035, 41.81154]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59088, 41.81245], [-87.59078, 41.81229]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59226, 41.80949], [-87.59215, 41.8094]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58981, 41.81048], [-87.59005, 41.81039]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59099, 41.81259], [-87.59088, 41.81245]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59074, 41.81015], [-87.59094, 41.81006]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59156, 41.80882], [-87.5914, 41.8087]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59224, 41.80964], [-87.59231, 41.80958]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59231, 41.80958], [-87.59226, 41.80949]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59128, 41.81288], [-87.59112, 41.81274]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59056, 41.80781], [-87.5905, 41.80772]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59036, 41.81028], [-87.59053, 41.81022]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59021, 41.81033], [-87.59036, 41.81028]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59202, 41.81352], [-87.59186, 41.8134]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59089, 41.80822], [-87.59077, 41.80809]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59203, 41.80969], [-87.59224, 41.80964]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5914, 41.8087], [-87.59123, 41.80855]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59094, 41.81006], [-87.59113, 41.80997]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59066, 41.81215], [-87.59059, 41.812]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58989, 41.81078], [-87.58981, 41.81064]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59186, 41.8134], [-87.5917, 41.81327]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59123, 41.80855], [-87.59107, 41.80839]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5917, 41.81327], [-87.59156, 41.81315]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59298, 41.81425], [-87.59283, 41.81413]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59205, 41.8093], [-87.59195, 41.80922]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59159, 41.80978], [-87.5918, 41.80974]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59107, 41.80839], [-87.59089, 41.80822]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.58981, 41.81064], [-87.58981, 41.81048]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59059, 41.812], [-87.5905, 41.81184]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59077, 41.80809], [-87.59066, 41.80795]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59035, 41.81154], [-87.59029, 41.81139]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5901, 41.81106], [-87.59, 41.81091]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59315, 41.81438], [-87.59298, 41.81425]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59215, 41.8094], [-87.59205, 41.8093]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59, 41.81091], [-87.58989, 41.81078]]}, "type": "Feature", "properties": {"num_passengers": 11905}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59331, 41.81452], [-87.59315, 41.81438]]}, "type": "Feature", "properties": {"num_passengers": 11958}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6392, 41.93271], [-87.63878, 41.93229]]}, "type": "Feature", "properties": {"num_passengers": 11992}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59345, 41.81466], [-87.59331, 41.81452]]}, "type": "Feature", "properties": {"num_passengers": 12011}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62604, 41.8821], [-87.62831, 41.88202]]}, "type": "Feature", "properties": {"num_passengers": 12031}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62392, 41.85425], [-87.6239, 41.85407]]}, "type": "Feature", "properties": {"num_passengers": 12051}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6239, 41.85444], [-87.62392, 41.85425]]}, "type": "Feature", "properties": {"num_passengers": 12106}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6239, 41.85462], [-87.6239, 41.85444]]}, "type": "Feature", "properties": {"num_passengers": 12124}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59361, 41.8148], [-87.59345, 41.81466]]}, "type": "Feature", "properties": {"num_passengers": 12136}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62392, 41.85488], [-87.6239, 41.85462]]}, "type": "Feature", "properties": {"num_passengers": 12143}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62392, 41.85507], [-87.62392, 41.85488]]}, "type": "Feature", "properties": {"num_passengers": 12209}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59374, 41.81496], [-87.59361, 41.8148]]}, "type": "Feature", "properties": {"num_passengers": 12262}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62396, 41.85689], [-87.62396, 41.85671]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62399, 41.8581], [-87.624, 41.85795]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62404, 41.86074], [-87.62405, 41.86058]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62406, 41.86161], [-87.62406, 41.86142]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62398, 41.85783], [-87.62397, 41.85771]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62405, 41.86027], [-87.62404, 41.8601]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62401, 41.85935], [-87.62401, 41.85918]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.85971], [-87.62402, 41.85953]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6241, 41.86241], [-87.62409, 41.86221]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62405, 41.86091], [-87.62404, 41.86074]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62405, 41.86058], [-87.62405, 41.86041]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62392, 41.85525], [-87.62392, 41.85507]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62409, 41.86186], [-87.62407, 41.86175]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62396, 41.85671], [-87.62394, 41.8565]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62406, 41.86126], [-87.62407, 41.86109]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62398, 41.85726], [-87.62397, 41.85709]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62394, 41.85616], [-87.62394, 41.85599]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62403, 41.85998], [-87.62404, 41.85986]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62397, 41.85709], [-87.62396, 41.85689]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62405, 41.86041], [-87.62405, 41.86027]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.85953], [-87.62401, 41.85935]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62409, 41.86201], [-87.62409, 41.86186]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62398, 41.85744], [-87.62398, 41.85726]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62397, 41.85771], [-87.62397, 41.85759]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62412, 41.86303], [-87.62412, 41.86287]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.624, 41.85795], [-87.62398, 41.85783]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62394, 41.85631], [-87.62394, 41.85616]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62407, 41.86175], [-87.62406, 41.86161]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62406, 41.86142], [-87.62406, 41.86126]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62404, 41.85986], [-87.62402, 41.85971]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62404, 41.8601], [-87.62403, 41.85998]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.624, 41.85847], [-87.62399, 41.85826]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6241, 41.86255], [-87.6241, 41.86241]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62394, 41.85584], [-87.62394, 41.8557]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62394, 41.8565], [-87.62394, 41.85631]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62412, 41.86336], [-87.62412, 41.86319]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62412, 41.86353], [-87.62412, 41.86336]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62393, 41.85552], [-87.62393, 41.85538]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62409, 41.86221], [-87.62409, 41.86201]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62397, 41.85759], [-87.62398, 41.85744]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62401, 41.85883], [-87.624, 41.85865]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62394, 41.8557], [-87.62393, 41.85552]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62401, 41.85901], [-87.62401, 41.85883]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62393, 41.85538], [-87.62392, 41.85525]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62407, 41.86109], [-87.62405, 41.86091]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62399, 41.85826], [-87.62399, 41.8581]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62412, 41.86319], [-87.62412, 41.86303]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62401, 41.85918], [-87.62401, 41.85901]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6241, 41.8627], [-87.6241, 41.86255]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62412, 41.86287], [-87.6241, 41.8627]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62394, 41.85599], [-87.62394, 41.85584]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.624, 41.85865], [-87.624, 41.85847]]}, "type": "Feature", "properties": {"num_passengers": 12275}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64492, 41.95111], [-87.64486, 41.95094]]}, "type": "Feature", "properties": {"num_passengers": 12278}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63878, 41.93229], [-87.63899, 41.93192]]}, "type": "Feature", "properties": {"num_passengers": 12418}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64126, 41.9447], [-87.64123, 41.94463]]}, "type": "Feature", "properties": {"num_passengers": 12510}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62412, 41.8637], [-87.62412, 41.86353]]}, "type": "Feature", "properties": {"num_passengers": 12514}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59387, 41.8151], [-87.59374, 41.81496]]}, "type": "Feature", "properties": {"num_passengers": 12623}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62412, 41.86388], [-87.62412, 41.8637]]}, "type": "Feature", "properties": {"num_passengers": 12753}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63899, 41.93192], [-87.63904, 41.93163]]}, "type": "Feature", "properties": {"num_passengers": 12786}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64486, 41.95094], [-87.64477, 41.95074]]}, "type": "Feature", "properties": {"num_passengers": 12851}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62831, 41.88202], [-87.62849, 41.88202]]}, "type": "Feature", "properties": {"num_passengers": 12860}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63061, 41.88199], [-87.63079, 41.88199]]}, "type": "Feature", "properties": {"num_passengers": 12926}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60145, 41.82662], [-87.60129, 41.82643]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59876, 41.82167], [-87.59867, 41.82147]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61076, 41.84377], [-87.61068, 41.84356]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6028, 41.82783], [-87.60258, 41.82766]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61548, 41.85527], [-87.61544, 41.8551]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59987, 41.824], [-87.59978, 41.82378]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61307, 41.84956], [-87.61299, 41.84938]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61083, 41.84399], [-87.61076, 41.84377]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61052, 41.84313], [-87.61043, 41.84291]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60846, 41.83819], [-87.60836, 41.83796]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60809, 41.83655], [-87.60809, 41.83632]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61914, 41.86356], [-87.61906, 41.86339]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59557, 41.81726], [-87.59546, 41.81711]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61925, 41.86392], [-87.61919, 41.86373]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61032, 41.8427], [-87.61024, 41.84248]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61639, 41.85738], [-87.61631, 41.85721]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60162, 41.8268], [-87.60145, 41.82662]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61331, 41.85013], [-87.61323, 41.84995]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62052, 41.86857], [-87.62052, 41.86842]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61172, 41.84636], [-87.61162, 41.84614]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60785, 41.83423], [-87.60781, 41.83401]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61965, 41.86506], [-87.61958, 41.86491]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59968, 41.82357], [-87.59959, 41.82335]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59749, 41.81977], [-87.59733, 41.81959]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60641, 41.83152], [-87.60626, 41.83133]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62052, 41.86842], [-87.62052, 41.86826]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61731, 41.8593], [-87.61723, 41.85913]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60836, 41.83796], [-87.60828, 41.83772]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6011, 41.82625], [-87.60096, 41.82606]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59566, 41.8174], [-87.59557, 41.81726]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60522, 41.83], [-87.60507, 41.82982]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60096, 41.82606], [-87.60081, 41.82587]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60903, 41.83957], [-87.60893, 41.83935]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59614, 41.818], [-87.596, 41.81785]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59546, 41.81711], [-87.59534, 41.81696]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61366, 41.85101], [-87.61358, 41.85084]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61442, 41.85274], [-87.61434, 41.85254]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60057, 41.82545], [-87.60046, 41.82525]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60611, 41.83114], [-87.60596, 41.83095]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60828, 41.83772], [-87.60824, 41.83749]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59414, 41.81541], [-87.59403, 41.81526]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61893, 41.86304], [-87.61888, 41.86288]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60626, 41.83133], [-87.60611, 41.83114]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61122, 41.84506], [-87.61116, 41.84484]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6118, 41.84658], [-87.61172, 41.84636]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62046, 41.86749], [-87.62038, 41.86728]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6193, 41.86409], [-87.61925, 41.86392]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61577, 41.85599], [-87.61571, 41.85581]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59803, 41.8205], [-87.5979, 41.82031]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61749, 41.85964], [-87.61739, 41.85947]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61709, 41.8588], [-87.61699, 41.85865]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61091, 41.8442], [-87.61083, 41.84399]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59762, 41.81994], [-87.59749, 41.81977]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60738, 41.83292], [-87.60725, 41.83272]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6197, 41.86521], [-87.61965, 41.86506]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61901, 41.86322], [-87.61893, 41.86304]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6007, 41.82566], [-87.60057, 41.82545]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59697, 41.81909], [-87.59684, 41.81894]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61683, 41.85833], [-87.61675, 41.85817]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60712, 41.83252], [-87.60698, 41.83231]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61299, 41.84938], [-87.61291, 41.84918]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61259, 41.84844], [-87.61251, 41.84824]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6138, 41.85134], [-87.61373, 41.85118]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61631, 41.85721], [-87.61623, 41.85704]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60884, 41.83912], [-87.60873, 41.83889]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61251, 41.84824], [-87.61243, 41.84804]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59403, 41.81526], [-87.59387, 41.8151]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60655, 41.83173], [-87.60641, 41.83152]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61207, 41.84723], [-87.61197, 41.84701]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59816, 41.82068], [-87.59803, 41.8205]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59841, 41.82107], [-87.59829, 41.82087]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61024, 41.84248], [-87.61014, 41.84226]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61534, 41.85493], [-87.61528, 41.85475]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60596, 41.83095], [-87.6058, 41.83076]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.596, 41.81785], [-87.59589, 41.8177]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60932, 41.84027], [-87.60924, 41.84004]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61388, 41.85152], [-87.6138, 41.85134]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61906, 41.86339], [-87.61901, 41.86322]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5994, 41.82293], [-87.59927, 41.82273]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60962, 41.84094], [-87.60952, 41.84071]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61958, 41.86491], [-87.61954, 41.86475]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6179, 41.86055], [-87.61782, 41.86036]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60865, 41.83866], [-87.60855, 41.83842]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60824, 41.83749], [-87.60819, 41.83727]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61757, 41.85982], [-87.61749, 41.85964]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60812, 41.83679], [-87.60809, 41.83655]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59927, 41.82273], [-87.59918, 41.82252]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59647, 41.81846], [-87.59636, 41.81832]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61815, 41.8611], [-87.61806, 41.86091]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61501, 41.85405], [-87.61493, 41.85386]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60924, 41.84004], [-87.60913, 41.8398]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61154, 41.84592], [-87.61146, 41.8457]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60746, 41.83313], [-87.60738, 41.83292]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61291, 41.84918], [-87.61284, 41.849]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62056, 41.86985], [-87.62056, 41.86964]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61997, 41.8661], [-87.61993, 41.86596]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60797, 41.83469], [-87.60792, 41.83446]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61138, 41.84549], [-87.6113, 41.84528]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61989, 41.86582], [-87.61984, 41.86566]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59829, 41.82087], [-87.59816, 41.82068]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61977, 41.86551], [-87.61973, 41.86536]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61806, 41.86091], [-87.61799, 41.86073]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61394, 41.85169], [-87.61388, 41.85152]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61373, 41.85118], [-87.61366, 41.85101]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60458, 41.8293], [-87.6044, 41.82912]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60361, 41.82849], [-87.6034, 41.82832]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59684, 41.81894], [-87.59673, 41.81878]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61723, 41.85913], [-87.61715, 41.85897]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62006, 41.8664], [-87.62001, 41.86625]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61337, 41.85031], [-87.61331, 41.85013]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59889, 41.82188], [-87.59876, 41.82167]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59978, 41.82378], [-87.59968, 41.82357]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59498, 41.8165], [-87.59485, 41.81633]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61215, 41.84743], [-87.61207, 41.84723]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59577, 41.81754], [-87.59566, 41.8174]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60781, 41.83401], [-87.60773, 41.83379]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60566, 41.83056], [-87.60552, 41.83038]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60801, 41.83516], [-87.60797, 41.83492]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61243, 41.84804], [-87.61234, 41.84784]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60814, 41.83703], [-87.60812, 41.83679]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6113, 41.84528], [-87.61122, 41.84506]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60081, 41.82587], [-87.6007, 41.82566]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61799, 41.86073], [-87.6179, 41.86055]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60978, 41.84138], [-87.6097, 41.84116]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59485, 41.81633], [-87.59474, 41.81618]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61881, 41.8627], [-87.61874, 41.86252]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60129, 41.82643], [-87.6011, 41.82625]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61098, 41.84442], [-87.61091, 41.8442]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60552, 41.83038], [-87.60537, 41.83018]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62058, 41.87007], [-87.62056, 41.86985]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62057, 41.86904], [-87.62057, 41.8689]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60401, 41.82881], [-87.60383, 41.82865]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61855, 41.86199], [-87.61846, 41.86181]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61544, 41.8551], [-87.61534, 41.85493]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61607, 41.8567], [-87.61599, 41.85653]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61675, 41.85817], [-87.61671, 41.85801]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61275, 41.84881], [-87.61267, 41.84862]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62032, 41.86706], [-87.6202, 41.8668]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61416, 41.85219], [-87.61408, 41.85202]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59523, 41.81681], [-87.59511, 41.81665]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60801, 41.83539], [-87.60801, 41.83516]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61521, 41.85457], [-87.61515, 41.8544]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.602, 41.82714], [-87.6018, 41.82696]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61623, 41.85704], [-87.61617, 41.85688]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59636, 41.81832], [-87.59625, 41.81816]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61284, 41.849], [-87.61275, 41.84881]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61493, 41.85386], [-87.61485, 41.85368]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60046, 41.82525], [-87.60037, 41.82505]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60952, 41.84071], [-87.60941, 41.84049]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6034, 41.82832], [-87.6032, 41.82815]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60819, 41.83727], [-87.60814, 41.83703]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60491, 41.82964], [-87.60475, 41.82946]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61838, 41.86163], [-87.61831, 41.86145]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62059, 41.87028], [-87.62058, 41.87007]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61571, 41.85581], [-87.61564, 41.85563]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61509, 41.85422], [-87.61501, 41.85405]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61434, 41.85254], [-87.61426, 41.85237]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61068, 41.84356], [-87.6106, 41.84334]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61408, 41.85202], [-87.614, 41.85185]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60757, 41.83335], [-87.60746, 41.83313]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5945, 41.81587], [-87.59438, 41.81571]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6106, 41.84334], [-87.61052, 41.84313]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61108, 41.84463], [-87.61098, 41.84442]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61426, 41.85237], [-87.61416, 41.85219]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59722, 41.81943], [-87.59708, 41.81926]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60893, 41.83935], [-87.60884, 41.83912]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61315, 41.84975], [-87.61307, 41.84956]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59625, 41.81816], [-87.59614, 41.818]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61528, 41.85475], [-87.61521, 41.85457]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61014, 41.84226], [-87.61006, 41.84203]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60808, 41.83608], [-87.60804, 41.83584]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60913, 41.8398], [-87.60903, 41.83957]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60873, 41.83889], [-87.60865, 41.83866]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60258, 41.82766], [-87.6024, 41.82749]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60037, 41.82505], [-87.60029, 41.82484]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6001, 41.82442], [-87.59999, 41.8242]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61663, 41.85785], [-87.61655, 41.85769]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61146, 41.8457], [-87.61138, 41.84549]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61564, 41.85563], [-87.61556, 41.85545]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60987, 41.8416], [-87.60978, 41.84138]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60537, 41.83018], [-87.60522, 41.83]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60475, 41.82946], [-87.60458, 41.8293]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61984, 41.86566], [-87.61977, 41.86551]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59918, 41.82252], [-87.59908, 41.8223]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61715, 41.85897], [-87.61709, 41.8588]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62056, 41.8695], [-87.62057, 41.86924]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59733, 41.81959], [-87.59722, 41.81943]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61267, 41.84862], [-87.61259, 41.84844]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59658, 41.81861], [-87.59647, 41.81846]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61947, 41.8646], [-87.61941, 41.86443]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60998, 41.84182], [-87.60987, 41.8416]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62057, 41.8689], [-87.62054, 41.86873]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60685, 41.83212], [-87.60669, 41.83193]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60765, 41.83356], [-87.60757, 41.83335]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62051, 41.86811], [-87.62051, 41.86797]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61116, 41.84484], [-87.61108, 41.84463]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60725, 41.83272], [-87.60712, 41.83252]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62059, 41.87045], [-87.62059, 41.87028]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61935, 41.86426], [-87.6193, 41.86409]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61888, 41.86288], [-87.61881, 41.8627]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61345, 41.85049], [-87.61337, 41.85031]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59463, 41.81602], [-87.5945, 41.81587]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59438, 41.81571], [-87.59426, 41.81557]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60855, 41.83842], [-87.60846, 41.83819]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59999, 41.8242], [-87.59987, 41.824]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60804, 41.83584], [-87.60804, 41.83562]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59898, 41.8221], [-87.59889, 41.82188]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6022, 41.82732], [-87.602, 41.82714]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.614, 41.85185], [-87.61394, 41.85169]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60941, 41.84049], [-87.60932, 41.84027]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62054, 41.86873], [-87.62052, 41.86857]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61874, 41.86252], [-87.61868, 41.86234]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61556, 41.85545], [-87.61548, 41.85527]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60029, 41.82484], [-87.60019, 41.82463]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61599, 41.85653], [-87.61593, 41.85634]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61006, 41.84203], [-87.60998, 41.84182]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61475, 41.85349], [-87.61467, 41.85329]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62011, 41.86652], [-87.62006, 41.8664]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6044, 41.82912], [-87.6042, 41.82897]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60669, 41.83193], [-87.60655, 41.83173]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60809, 41.83632], [-87.60808, 41.83608]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6042, 41.82897], [-87.60401, 41.82881]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61617, 41.85688], [-87.61607, 41.8567]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59774, 41.82013], [-87.59762, 41.81994]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61954, 41.86475], [-87.61947, 41.8646]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61467, 41.85329], [-87.61459, 41.85311]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62001, 41.86625], [-87.61997, 41.8661]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60019, 41.82463], [-87.6001, 41.82442]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61515, 41.8544], [-87.61509, 41.85422]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6202, 41.8668], [-87.62016, 41.86666]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61645, 41.85754], [-87.61639, 41.85738]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59589, 41.8177], [-87.59577, 41.81754]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61868, 41.86234], [-87.61861, 41.86217]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6058, 41.83076], [-87.60566, 41.83056]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61323, 41.84995], [-87.61315, 41.84975]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59908, 41.8223], [-87.59898, 41.8221]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62038, 41.86728], [-87.62032, 41.86706]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60698, 41.83231], [-87.60685, 41.83212]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60383, 41.82865], [-87.60361, 41.82849]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59534, 41.81696], [-87.59523, 41.81681]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59673, 41.81878], [-87.59658, 41.81861]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59959, 41.82335], [-87.59949, 41.82314]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61188, 41.84679], [-87.6118, 41.84658]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61825, 41.86127], [-87.61815, 41.8611]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61485, 41.85368], [-87.61475, 41.85349]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59708, 41.81926], [-87.59697, 41.81909]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61043, 41.84291], [-87.61032, 41.8427]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62051, 41.86797], [-87.62047, 41.86772]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61774, 41.86018], [-87.61764, 41.86]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59949, 41.82314], [-87.5994, 41.82293]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61459, 41.85311], [-87.6145, 41.85292]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61764, 41.86], [-87.61757, 41.85982]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62052, 41.86826], [-87.62051, 41.86811]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62056, 41.86964], [-87.62056, 41.8695]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6145, 41.85292], [-87.61442, 41.85274]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61671, 41.85801], [-87.61663, 41.85785]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61691, 41.85849], [-87.61683, 41.85833]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61861, 41.86217], [-87.61855, 41.86199]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61585, 41.85618], [-87.61577, 41.85599]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61226, 41.84763], [-87.61215, 41.84743]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61593, 41.85634], [-87.61585, 41.85618]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6097, 41.84116], [-87.60962, 41.84094]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61655, 41.85769], [-87.61645, 41.85754]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61782, 41.86036], [-87.61774, 41.86018]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59474, 41.81618], [-87.59463, 41.81602]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61353, 41.85066], [-87.61345, 41.85049]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61234, 41.84784], [-87.61226, 41.84763]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61739, 41.85947], [-87.61731, 41.8593]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61699, 41.85865], [-87.61691, 41.85849]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59867, 41.82147], [-87.59854, 41.82127]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61973, 41.86536], [-87.6197, 41.86521]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61831, 41.86145], [-87.61825, 41.86127]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.5979, 41.82031], [-87.59774, 41.82013]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62047, 41.86772], [-87.62046, 41.86749]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61358, 41.85084], [-87.61353, 41.85066]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61197, 41.84701], [-87.61188, 41.84679]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60804, 41.83562], [-87.60801, 41.83539]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61846, 41.86181], [-87.61838, 41.86163]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60773, 41.83379], [-87.60765, 41.83356]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60797, 41.83492], [-87.60797, 41.83469]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59426, 41.81557], [-87.59414, 41.81541]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62057, 41.86924], [-87.62057, 41.86904]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6018, 41.82696], [-87.60162, 41.8268]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61993, 41.86596], [-87.61989, 41.86582]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6024, 41.82749], [-87.6022, 41.82732]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59854, 41.82127], [-87.59841, 41.82107]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62016, 41.86666], [-87.62011, 41.86652]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.59511, 41.81665], [-87.59498, 41.8165]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61919, 41.86373], [-87.61914, 41.86356]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60792, 41.83446], [-87.60785, 41.83423]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60507, 41.82982], [-87.60491, 41.82964]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61162, 41.84614], [-87.61154, 41.84592]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.61941, 41.86443], [-87.61935, 41.86426]]}, "type": "Feature", "properties": {"num_passengers": 12982}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6342, 41.88196], [-87.63736, 41.88192]]}, "type": "Feature", "properties": {"num_passengers": 13014}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64477, 41.95074], [-87.64469, 41.95058]]}, "type": "Feature", "properties": {"num_passengers": 13028}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63079, 41.88199], [-87.63398, 41.88195]]}, "type": "Feature", "properties": {"num_passengers": 13032}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62413, 41.86403], [-87.62412, 41.86388]]}, "type": "Feature", "properties": {"num_passengers": 13106}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63398, 41.88195], [-87.6342, 41.88196]]}, "type": "Feature", "properties": {"num_passengers": 13138}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63904, 41.93163], [-87.63902, 41.93137]]}, "type": "Feature", "properties": {"num_passengers": 13155}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64123, 41.94463], [-87.64117, 41.94452]]}, "type": "Feature", "properties": {"num_passengers": 13178}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64469, 41.95058], [-87.64461, 41.95046]]}, "type": "Feature", "properties": {"num_passengers": 13196}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62428, 41.87361], [-87.62427, 41.87346]]}, "type": "Feature", "properties": {"num_passengers": 13250}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63921, 41.94097], [-87.63912, 41.94082]]}, "type": "Feature", "properties": {"num_passengers": 13327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63912, 41.94082], [-87.63904, 41.94067]]}, "type": "Feature", "properties": {"num_passengers": 13327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63956, 41.94142], [-87.63952, 41.94126]]}, "type": "Feature", "properties": {"num_passengers": 13327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64025, 41.94293], [-87.6402, 41.94281]]}, "type": "Feature", "properties": {"num_passengers": 13327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63931, 41.9411], [-87.63921, 41.94097]]}, "type": "Feature", "properties": {"num_passengers": 13327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64037, 41.94309], [-87.64025, 41.94293]]}, "type": "Feature", "properties": {"num_passengers": 13327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63987, 41.94227], [-87.63979, 41.94208]]}, "type": "Feature", "properties": {"num_passengers": 13327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63971, 41.94191], [-87.63961, 41.94171]]}, "type": "Feature", "properties": {"num_passengers": 13327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6402, 41.94281], [-87.64012, 41.94267]]}, "type": "Feature", "properties": {"num_passengers": 13327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64065, 41.94355], [-87.64037, 41.94309]]}, "type": "Feature", "properties": {"num_passengers": 13327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63961, 41.94171], [-87.63956, 41.94158]]}, "type": "Feature", "properties": {"num_passengers": 13327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63896, 41.94054], [-87.63894, 41.94052]]}, "type": "Feature", "properties": {"num_passengers": 13327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64012, 41.94267], [-87.64002, 41.94256]]}, "type": "Feature", "properties": {"num_passengers": 13327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63979, 41.94208], [-87.63971, 41.94191]]}, "type": "Feature", "properties": {"num_passengers": 13327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63904, 41.94067], [-87.63896, 41.94054]]}, "type": "Feature", "properties": {"num_passengers": 13327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63956, 41.94158], [-87.63956, 41.94142]]}, "type": "Feature", "properties": {"num_passengers": 13327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63952, 41.94126], [-87.63931, 41.9411]]}, "type": "Feature", "properties": {"num_passengers": 13327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.63996, 41.94241], [-87.63987, 41.94227]]}, "type": "Feature", "properties": {"num_passengers": 13327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64002, 41.94256], [-87.63996, 41.94241]]}, "type": "Feature", "properties": {"num_passengers": 13327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62428, 41.8738], [-87.62428, 41.87361]]}, "type": "Feature", "properties": {"num_passengers": 13365}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62849, 41.88202], [-87.63061, 41.88199]]}, "type": "Feature", "properties": {"num_passengers": 13449}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62413, 41.86418], [-87.62413, 41.86403]]}, "type": "Feature", "properties": {"num_passengers": 13457}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62429, 41.874], [-87.62428, 41.8738]]}, "type": "Feature", "properties": {"num_passengers": 13481}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62429, 41.87419], [-87.62429, 41.874]]}, "type": "Feature", "properties": {"num_passengers": 13528}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64461, 41.95046], [-87.64451, 41.95032]]}, "type": "Feature", "properties": {"num_passengers": 13551}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62434, 41.87461], [-87.6243, 41.87453]]}, "type": "Feature", "properties": {"num_passengers": 13570}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6243, 41.87453], [-87.6243, 41.87439]]}, "type": "Feature", "properties": {"num_passengers": 13573}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6243, 41.87439], [-87.62429, 41.87419]]}, "type": "Feature", "properties": {"num_passengers": 13574}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62414, 41.86432], [-87.62413, 41.86418]]}, "type": "Feature", "properties": {"num_passengers": 13667}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62415, 41.86452], [-87.62414, 41.86432]]}, "type": "Feature", "properties": {"num_passengers": 13876}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62802, 41.88581], [-87.62797, 41.88464]]}, "type": "Feature", "properties": {"num_passengers": 13899}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62437, 41.87649], [-87.62437, 41.8763]]}, "type": "Feature", "properties": {"num_passengers": 13960}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62427, 41.87346], [-87.62427, 41.87334]]}, "type": "Feature", "properties": {"num_passengers": 14080}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62416, 41.86466], [-87.62415, 41.86452]]}, "type": "Feature", "properties": {"num_passengers": 14106}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62438, 41.87756], [-87.62437, 41.87735]]}, "type": "Feature", "properties": {"num_passengers": 14169}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62437, 41.87717], [-87.62437, 41.87698]]}, "type": "Feature", "properties": {"num_passengers": 14169}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62437, 41.87659], [-87.62437, 41.87649]]}, "type": "Feature", "properties": {"num_passengers": 14169}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62441, 41.87838], [-87.6244, 41.87822]]}, "type": "Feature", "properties": {"num_passengers": 14169}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62437, 41.87677], [-87.62437, 41.87659]]}, "type": "Feature", "properties": {"num_passengers": 14169}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62438, 41.87778], [-87.62438, 41.87756]]}, "type": "Feature", "properties": {"num_passengers": 14169}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62439, 41.87801], [-87.62438, 41.87778]]}, "type": "Feature", "properties": {"num_passengers": 14169}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6244, 41.87822], [-87.62439, 41.87801]]}, "type": "Feature", "properties": {"num_passengers": 14169}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62437, 41.87698], [-87.62437, 41.87677]]}, "type": "Feature", "properties": {"num_passengers": 14169}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62437, 41.87735], [-87.62437, 41.87717]]}, "type": "Feature", "properties": {"num_passengers": 14169}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62416, 41.86485], [-87.62416, 41.86466]]}, "type": "Feature", "properties": {"num_passengers": 14334}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64117, 41.94452], [-87.64111, 41.94441]]}, "type": "Feature", "properties": {"num_passengers": 14447}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62421, 41.8993], [-87.62416, 41.89778]]}, "type": "Feature", "properties": {"num_passengers": 14471}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62416, 41.89778], [-87.62408, 41.89749]]}, "type": "Feature", "properties": {"num_passengers": 14471}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62416, 41.86503], [-87.62416, 41.86485]]}, "type": "Feature", "properties": {"num_passengers": 14497}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62416, 41.86536], [-87.62416, 41.8652]]}, "type": "Feature", "properties": {"num_passengers": 14661}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62417, 41.86827], [-87.62418, 41.86811]]}, "type": "Feature", "properties": {"num_passengers": 14661}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62419, 41.8667], [-87.62418, 41.86651]]}, "type": "Feature", "properties": {"num_passengers": 14661}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62416, 41.86556], [-87.62416, 41.86536]]}, "type": "Feature", "properties": {"num_passengers": 14661}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62419, 41.86716], [-87.62418, 41.86704]]}, "type": "Feature", "properties": {"num_passengers": 14661}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6242, 41.87013], [-87.6242, 41.86995]]}, "type": "Feature", "properties": {"num_passengers": 14661}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6242, 41.86733], [-87.62419, 41.86716]]}, "type": "Feature", "properties": {"num_passengers": 14661}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62417, 41.86796], [-87.62417, 41.86779]]}, "type": "Feature", "properties": {"num_passengers": 14661}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6242, 41.87034], [-87.6242, 41.87013]]}, "type": "Feature", "properties": {"num_passengers": 14661}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6242, 41.86975], [-87.62419, 41.86953]]}, "type": "Feature", "properties": {"num_passengers": 14661}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6242, 41.86995], [-87.6242, 41.86975]]}, "type": "Feature", "properties": {"num_passengers": 14661}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.86688], [-87.62419, 41.8667]]}, "type": "Feature", "properties": {"num_passengers": 14661}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62421, 41.86876], [-87.62418, 41.86858]]}, "type": "Feature", "properties": {"num_passengers": 14661}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.86761], [-87.62421, 41.86747]]}, "type": "Feature", "properties": {"num_passengers": 14661}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62421, 41.86905], [-87.62421, 41.86894]]}, "type": "Feature", "properties": {"num_passengers": 14661}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62421, 41.86747], [-87.6242, 41.86733]]}, "type": "Feature", "properties": {"num_passengers": 14661}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62421, 41.86883], [-87.62421, 41.86907]]}, "type": "Feature", "properties": {"num_passengers": 14661}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.86617], [-87.62418, 41.86593]]}, "type": "Feature", "properties": {"num_passengers": 14661}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.86651], [-87.62418, 41.86633]]}, "type": "Feature", "properties": {"num_passengers": 14661}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62421, 41.86893], [-87.62421, 41.86876]]}, "type": "Feature", "properties": {"num_passengers": 14661}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.86633], [-87.62418, 41.86617]]}, "type": "Feature", "properties": {"num_passengers": 14661}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.86704], [-87.62418, 41.86688]]}, "type": "Feature", "properties": {"num_passengers": 14661}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6242, 41.8692], [-87.62421, 41.86905]]}, "type": "Feature", "properties": {"num_passengers": 14661}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62421, 41.86907], [-87.62421, 41.86893]]}, "type": "Feature", "properties": {"num_passengers": 14661}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62417, 41.86568], [-87.62416, 41.86556]]}, "type": "Feature", "properties": {"num_passengers": 14661}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.86811], [-87.62417, 41.86796]]}, "type": "Feature", "properties": {"num_passengers": 14661}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62419, 41.86953], [-87.62423, 41.86934]]}, "type": "Feature", "properties": {"num_passengers": 14661}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.86858], [-87.62417, 41.86842]]}, "type": "Feature", "properties": {"num_passengers": 14661}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62417, 41.86842], [-87.62417, 41.86827]]}, "type": "Feature", "properties": {"num_passengers": 14661}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62421, 41.86894], [-87.62421, 41.86883]]}, "type": "Feature", "properties": {"num_passengers": 14661}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62416, 41.8652], [-87.62416, 41.86503]]}, "type": "Feature", "properties": {"num_passengers": 14661}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.86593], [-87.62417, 41.86568]]}, "type": "Feature", "properties": {"num_passengers": 14661}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62417, 41.86779], [-87.62418, 41.86761]]}, "type": "Feature", "properties": {"num_passengers": 14661}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.86934], [-87.6242, 41.8692]]}, "type": "Feature", "properties": {"num_passengers": 14661}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62426, 41.87291], [-87.62425, 41.87276]]}, "type": "Feature", "properties": {"num_passengers": 14786}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62422, 41.87113], [-87.62422, 41.87094]]}, "type": "Feature", "properties": {"num_passengers": 14786}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62422, 41.87079], [-87.6242, 41.87059]]}, "type": "Feature", "properties": {"num_passengers": 14786}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62426, 41.87305], [-87.62426, 41.87291]]}, "type": "Feature", "properties": {"num_passengers": 14786}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6242, 41.87059], [-87.6242, 41.87043]]}, "type": "Feature", "properties": {"num_passengers": 14786}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62421, 41.87179], [-87.62423, 41.87164]]}, "type": "Feature", "properties": {"num_passengers": 14786}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6242, 41.87043], [-87.6242, 41.87034]]}, "type": "Feature", "properties": {"num_passengers": 14786}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62422, 41.87094], [-87.62422, 41.87079]]}, "type": "Feature", "properties": {"num_passengers": 14786}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.872], [-87.62421, 41.87179]]}, "type": "Feature", "properties": {"num_passengers": 14786}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62426, 41.87217], [-87.62423, 41.872]]}, "type": "Feature", "properties": {"num_passengers": 14786}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.87164], [-87.62422, 41.87145]]}, "type": "Feature", "properties": {"num_passengers": 14786}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62425, 41.87276], [-87.62426, 41.87262]]}, "type": "Feature", "properties": {"num_passengers": 14786}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62422, 41.87129], [-87.62422, 41.87113]]}, "type": "Feature", "properties": {"num_passengers": 14786}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62426, 41.87262], [-87.62426, 41.87248]]}, "type": "Feature", "properties": {"num_passengers": 14786}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62426, 41.87248], [-87.62425, 41.87229]]}, "type": "Feature", "properties": {"num_passengers": 14786}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62425, 41.87229], [-87.62426, 41.87217]]}, "type": "Feature", "properties": {"num_passengers": 14786}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62422, 41.87145], [-87.62422, 41.87129]]}, "type": "Feature", "properties": {"num_passengers": 14786}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62428, 41.87324], [-87.62426, 41.87305]]}, "type": "Feature", "properties": {"num_passengers": 14848}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62427, 41.87334], [-87.62428, 41.87324]]}, "type": "Feature", "properties": {"num_passengers": 14909}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62797, 41.88464], [-87.62797, 41.88451]]}, "type": "Feature", "properties": {"num_passengers": 15014}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62073, 41.87319], [-87.62066, 41.87306]]}, "type": "Feature", "properties": {"num_passengers": 15297}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6206, 41.87127], [-87.6206, 41.87111]]}, "type": "Feature", "properties": {"num_passengers": 15297}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62065, 41.8723], [-87.62064, 41.87209]]}, "type": "Feature", "properties": {"num_passengers": 15297}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6032, 41.82815], [-87.60299, 41.82799]]}, "type": "Feature", "properties": {"num_passengers": 15297}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62066, 41.87306], [-87.62064, 41.87288]]}, "type": "Feature", "properties": {"num_passengers": 15297}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62064, 41.87288], [-87.62063, 41.87269]]}, "type": "Feature", "properties": {"num_passengers": 15297}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6206, 41.87079], [-87.62059, 41.87061]]}, "type": "Feature", "properties": {"num_passengers": 15297}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62059, 41.87061], [-87.62059, 41.87045]]}, "type": "Feature", "properties": {"num_passengers": 15297}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62064, 41.87251], [-87.62065, 41.8723]]}, "type": "Feature", "properties": {"num_passengers": 15297}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62062, 41.87167], [-87.62061, 41.87145]]}, "type": "Feature", "properties": {"num_passengers": 15297}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6206, 41.87097], [-87.6206, 41.87079]]}, "type": "Feature", "properties": {"num_passengers": 15297}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6206, 41.87111], [-87.6206, 41.87097]]}, "type": "Feature", "properties": {"num_passengers": 15297}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62062, 41.87187], [-87.62062, 41.87167]]}, "type": "Feature", "properties": {"num_passengers": 15297}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62063, 41.87269], [-87.62064, 41.87251]]}, "type": "Feature", "properties": {"num_passengers": 15297}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62061, 41.87145], [-87.6206, 41.87127]]}, "type": "Feature", "properties": {"num_passengers": 15297}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62064, 41.87209], [-87.62062, 41.87187]]}, "type": "Feature", "properties": {"num_passengers": 15297}}, {"geometry": {"type": "LineString", "coordinates": [[-87.60299, 41.82799], [-87.6028, 41.82783]]}, "type": "Feature", "properties": {"num_passengers": 15297}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62797, 41.88451], [-87.62793, 41.88348]]}, "type": "Feature", "properties": {"num_passengers": 15672}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64096, 41.94413], [-87.6409, 41.944]]}, "type": "Feature", "properties": {"num_passengers": 15687}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64105, 41.94428], [-87.64096, 41.94413]]}, "type": "Feature", "properties": {"num_passengers": 15703}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64111, 41.94441], [-87.64105, 41.94428]]}, "type": "Feature", "properties": {"num_passengers": 15718}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6409, 41.944], [-87.6408, 41.94383]]}, "type": "Feature", "properties": {"num_passengers": 15740}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6408, 41.94383], [-87.64073, 41.94369]]}, "type": "Feature", "properties": {"num_passengers": 15794}}, {"geometry": {"type": "LineString", "coordinates": [[-87.64073, 41.94369], [-87.64065, 41.94355]]}, "type": "Feature", "properties": {"num_passengers": 15857}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62444, 41.88679], [-87.62448, 41.88821]]}, "type": "Feature", "properties": {"num_passengers": 16079}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62448, 41.88821], [-87.62402, 41.88985]]}, "type": "Feature", "properties": {"num_passengers": 16175}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62402, 41.88985], [-87.62401, 41.89012]]}, "type": "Feature", "properties": {"num_passengers": 16268}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62793, 41.88348], [-87.62791, 41.88327]]}, "type": "Feature", "properties": {"num_passengers": 16327}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62401, 41.89012], [-87.62403, 41.8903]]}, "type": "Feature", "properties": {"num_passengers": 16446}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62435, 41.87581], [-87.62434, 41.87562]]}, "type": "Feature", "properties": {"num_passengers": 16618}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62436, 41.87615], [-87.62436, 41.87597]]}, "type": "Feature", "properties": {"num_passengers": 16618}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62433, 41.87545], [-87.62434, 41.87528]]}, "type": "Feature", "properties": {"num_passengers": 16618}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62434, 41.87528], [-87.62433, 41.8751]]}, "type": "Feature", "properties": {"num_passengers": 16618}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62436, 41.87597], [-87.62435, 41.87581]]}, "type": "Feature", "properties": {"num_passengers": 16618}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62437, 41.8763], [-87.62436, 41.87615]]}, "type": "Feature", "properties": {"num_passengers": 16618}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62434, 41.87562], [-87.62433, 41.87545]]}, "type": "Feature", "properties": {"num_passengers": 16618}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62433, 41.8751], [-87.62432, 41.87494]]}, "type": "Feature", "properties": {"num_passengers": 16737}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62432, 41.87494], [-87.62433, 41.87479]]}, "type": "Feature", "properties": {"num_passengers": 16854}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62433, 41.87479], [-87.62434, 41.87461]]}, "type": "Feature", "properties": {"num_passengers": 17157}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62791, 41.88327], [-87.62788, 41.88217]]}, "type": "Feature", "properties": {"num_passengers": 17201}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62456, 41.88631], [-87.62453, 41.88608]]}, "type": "Feature", "properties": {"num_passengers": 17403}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6245, 41.88521], [-87.62446, 41.88507]]}, "type": "Feature", "properties": {"num_passengers": 17403}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62448, 41.8887], [-87.62451, 41.88849]]}, "type": "Feature", "properties": {"num_passengers": 17403}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62451, 41.88849], [-87.62456, 41.88828]]}, "type": "Feature", "properties": {"num_passengers": 17403}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62461, 41.88807], [-87.62462, 41.88785]]}, "type": "Feature", "properties": {"num_passengers": 17403}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62462, 41.8875], [-87.62461, 41.88733]]}, "type": "Feature", "properties": {"num_passengers": 17403}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62456, 41.88675], [-87.62456, 41.88654]]}, "type": "Feature", "properties": {"num_passengers": 17403}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62456, 41.88828], [-87.62461, 41.88807]]}, "type": "Feature", "properties": {"num_passengers": 17403}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62456, 41.88654], [-87.62456, 41.88631]]}, "type": "Feature", "properties": {"num_passengers": 17403}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62451, 41.88537], [-87.6245, 41.88521]]}, "type": "Feature", "properties": {"num_passengers": 17403}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62446, 41.88505], [-87.62457, 41.88506]]}, "type": "Feature", "properties": {"num_passengers": 17403}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62426, 41.88944], [-87.62429, 41.88928]]}, "type": "Feature", "properties": {"num_passengers": 17403}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62429, 41.88928], [-87.62435, 41.88912]]}, "type": "Feature", "properties": {"num_passengers": 17403}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62435, 41.88912], [-87.62442, 41.8889]]}, "type": "Feature", "properties": {"num_passengers": 17403}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62457, 41.88704], [-87.62457, 41.8869]]}, "type": "Feature", "properties": {"num_passengers": 17403}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62446, 41.88507], [-87.62446, 41.88505]]}, "type": "Feature", "properties": {"num_passengers": 17403}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62451, 41.88555], [-87.62451, 41.88537]]}, "type": "Feature", "properties": {"num_passengers": 17403}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62442, 41.8889], [-87.62448, 41.8887]]}, "type": "Feature", "properties": {"num_passengers": 17403}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.88993], [-87.62418, 41.88976]]}, "type": "Feature", "properties": {"num_passengers": 17403}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62461, 41.88733], [-87.62461, 41.88716]]}, "type": "Feature", "properties": {"num_passengers": 17403}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62462, 41.88785], [-87.62462, 41.88768]]}, "type": "Feature", "properties": {"num_passengers": 17403}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62457, 41.8869], [-87.62456, 41.88675]]}, "type": "Feature", "properties": {"num_passengers": 17403}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62462, 41.88768], [-87.62462, 41.8875]]}, "type": "Feature", "properties": {"num_passengers": 17403}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.88976], [-87.62423, 41.88959]]}, "type": "Feature", "properties": {"num_passengers": 17403}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62453, 41.88608], [-87.62453, 41.88589]]}, "type": "Feature", "properties": {"num_passengers": 17403}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62461, 41.88716], [-87.62457, 41.88704]]}, "type": "Feature", "properties": {"num_passengers": 17403}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62453, 41.88589], [-87.62453, 41.88571]]}, "type": "Feature", "properties": {"num_passengers": 17403}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62453, 41.88571], [-87.62451, 41.88555]]}, "type": "Feature", "properties": {"num_passengers": 17403}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.88959], [-87.62426, 41.88944]]}, "type": "Feature", "properties": {"num_passengers": 17403}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62788, 41.88217], [-87.62786, 41.88204]]}, "type": "Feature", "properties": {"num_passengers": 18075}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62786, 41.88204], [-87.62782, 41.88195]]}, "type": "Feature", "properties": {"num_passengers": 18731}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62771, 41.87707], [-87.62771, 41.87694]]}, "type": "Feature", "properties": {"num_passengers": 19109}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62771, 41.87694], [-87.62767, 41.87508]]}, "type": "Feature", "properties": {"num_passengers": 19109}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62773, 41.87839], [-87.62774, 41.87825]]}, "type": "Feature", "properties": {"num_passengers": 19109}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62774, 41.87825], [-87.62771, 41.87707]]}, "type": "Feature", "properties": {"num_passengers": 19109}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62773, 41.8784], [-87.62773, 41.87839]]}, "type": "Feature", "properties": {"num_passengers": 19247}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6278, 41.88081], [-87.62773, 41.8784]]}, "type": "Feature", "properties": {"num_passengers": 19281}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62775, 41.88092], [-87.6278, 41.88081]]}, "type": "Feature", "properties": {"num_passengers": 19315}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62781, 41.88184], [-87.62775, 41.88092]]}, "type": "Feature", "properties": {"num_passengers": 19349}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62782, 41.88195], [-87.62781, 41.88184]]}, "type": "Feature", "properties": {"num_passengers": 19383}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62456, 41.88454], [-87.62453, 41.88429]]}, "type": "Feature", "properties": {"num_passengers": 19474}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62453, 41.88429], [-87.62453, 41.88409]]}, "type": "Feature", "properties": {"num_passengers": 19681}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62456, 41.8847], [-87.62456, 41.88454]]}, "type": "Feature", "properties": {"num_passengers": 19731}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62453, 41.88409], [-87.62453, 41.88384]]}, "type": "Feature", "properties": {"num_passengers": 19887}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62456, 41.8849], [-87.62456, 41.8847]]}, "type": "Feature", "properties": {"num_passengers": 19985}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62453, 41.88384], [-87.62455, 41.88364]]}, "type": "Feature", "properties": {"num_passengers": 20041}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62457, 41.88506], [-87.62456, 41.8849]]}, "type": "Feature", "properties": {"num_passengers": 20176}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62455, 41.88364], [-87.62453, 41.88344]]}, "type": "Feature", "properties": {"num_passengers": 20193}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62419, 41.89056], [-87.62423, 41.89037]]}, "type": "Feature", "properties": {"num_passengers": 21619}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.89119], [-87.62423, 41.89104]]}, "type": "Feature", "properties": {"num_passengers": 21619}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.89138], [-87.62423, 41.89122]]}, "type": "Feature", "properties": {"num_passengers": 21619}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.89069], [-87.62419, 41.89056]]}, "type": "Feature", "properties": {"num_passengers": 21619}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.89155], [-87.62423, 41.89138]]}, "type": "Feature", "properties": {"num_passengers": 21619}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.89104], [-87.62418, 41.89085]]}, "type": "Feature", "properties": {"num_passengers": 21619}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.89019], [-87.62418, 41.89002]]}, "type": "Feature", "properties": {"num_passengers": 21619}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.89002], [-87.62418, 41.88993]]}, "type": "Feature", "properties": {"num_passengers": 21619}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.89122], [-87.62423, 41.89119]]}, "type": "Feature", "properties": {"num_passengers": 21619}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.89085], [-87.62418, 41.89069]]}, "type": "Feature", "properties": {"num_passengers": 21619}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.89037], [-87.62418, 41.89019]]}, "type": "Feature", "properties": {"num_passengers": 21619}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.89171], [-87.62423, 41.89155]]}, "type": "Feature", "properties": {"num_passengers": 23095}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62403, 41.8903], [-87.62408, 41.89171]]}, "type": "Feature", "properties": {"num_passengers": 23614}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62408, 41.89171], [-87.62409, 41.89187]]}, "type": "Feature", "properties": {"num_passengers": 23875}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62411, 41.89311], [-87.62412, 41.89328]]}, "type": "Feature", "properties": {"num_passengers": 24134}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62409, 41.89187], [-87.62411, 41.89311]]}, "type": "Feature", "properties": {"num_passengers": 24134}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62412, 41.89328], [-87.62416, 41.89471]]}, "type": "Feature", "properties": {"num_passengers": 24134}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62416, 41.89471], [-87.62416, 41.8949]]}, "type": "Feature", "properties": {"num_passengers": 24134}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.89184], [-87.62423, 41.89171]]}, "type": "Feature", "properties": {"num_passengers": 24571}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6243, 41.89585], [-87.62434, 41.89578]]}, "type": "Feature", "properties": {"num_passengers": 25018}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62427, 41.89658], [-87.6243, 41.8964]]}, "type": "Feature", "properties": {"num_passengers": 25018}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.89676], [-87.62427, 41.89658]]}, "type": "Feature", "properties": {"num_passengers": 25018}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62413, 41.89731], [-87.62418, 41.89712]]}, "type": "Feature", "properties": {"num_passengers": 25018}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62419, 41.89694], [-87.62423, 41.89676]]}, "type": "Feature", "properties": {"num_passengers": 25018}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6243, 41.89624], [-87.6243, 41.89608]]}, "type": "Feature", "properties": {"num_passengers": 25018}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6243, 41.8964], [-87.6243, 41.89624]]}, "type": "Feature", "properties": {"num_passengers": 25018}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62418, 41.89712], [-87.62419, 41.89694]]}, "type": "Feature", "properties": {"num_passengers": 25018}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62408, 41.89749], [-87.62413, 41.89731]]}, "type": "Feature", "properties": {"num_passengers": 25018}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6243, 41.89608], [-87.6243, 41.89593]]}, "type": "Feature", "properties": {"num_passengers": 25018}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6243, 41.89593], [-87.6243, 41.89585]]}, "type": "Feature", "properties": {"num_passengers": 25018}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62416, 41.8949], [-87.6242, 41.89659]]}, "type": "Feature", "properties": {"num_passengers": 25299}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.89202], [-87.62423, 41.89184]]}, "type": "Feature", "properties": {"num_passengers": 25525}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6242, 41.89659], [-87.62405, 41.89754]]}, "type": "Feature", "properties": {"num_passengers": 26460}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.89219], [-87.62423, 41.89202]]}, "type": "Feature", "properties": {"num_passengers": 26479}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.89237], [-87.62423, 41.89219]]}, "type": "Feature", "properties": {"num_passengers": 26673}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62423, 41.89253], [-87.62423, 41.89237]]}, "type": "Feature", "properties": {"num_passengers": 26868}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62405, 41.89754], [-87.62399, 41.89799]]}, "type": "Feature", "properties": {"num_passengers": 27078}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62427, 41.89273], [-87.62423, 41.89253]]}, "type": "Feature", "properties": {"num_passengers": 27205}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62433, 41.89435], [-87.6243, 41.89427]]}, "type": "Feature", "properties": {"num_passengers": 27393}}, {"geometry": {"type": "LineString", "coordinates": [[-87.6243, 41.89427], [-87.62427, 41.89273]]}, "type": "Feature", "properties": {"num_passengers": 27540}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62399, 41.89799], [-87.62399, 41.89799]]}, "type": "Feature", "properties": {"num_passengers": 27697}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62434, 41.89578], [-87.62433, 41.89435]]}, "type": "Feature", "properties": {"num_passengers": 28197}}, {"geometry": {"type": "LineString", "coordinates": [[-87.62433, 41.89435], [-87.62433, 41.89435]]}, "type": "Feature", "properties": {"num_passengers": 28288}}]} \ No newline at end of file diff --git a/ridership_map/docker-compose.yml b/ridership_map/docker-compose.yml new file mode 100644 index 0000000..b22e5b8 --- /dev/null +++ b/ridership_map/docker-compose.yml @@ -0,0 +1,13 @@ +db: + image: postgres:9.4 + ports: + - "5432" +compute: + build: . + stdin_open: true + tty: true + entrypoint: /app/run.sh + volumes: + - ./data:/app/data + links: + - db diff --git a/ridership_map/import.sh b/ridership_map/import.sh new file mode 100644 index 0000000..e0d8b90 --- /dev/null +++ b/ridership_map/import.sh @@ -0,0 +1,8 @@ +#!/bin/bash +cd gtfs_SQL_IMPORTER/src +echo 'CREATE DATABASE transit' | psql -h db -U postgres +cat gtfs_tables.sql \ + <(python2.7 import_gtfs_to_sql.py /app) \ + gtfs_tables_makeindexes.sql \ + vacuumer.sql \ +| psql -h db -U postgres transit diff --git a/ridership_map/join_riders_using_gtfs.py b/ridership_map/join_riders_using_gtfs.py index 15acee6..25d0d67 100644 --- a/ridership_map/join_riders_using_gtfs.py +++ b/ridership_map/join_riders_using_gtfs.py @@ -3,7 +3,7 @@ import geojson import argparse -conn = psycopg2.connect(database='transit', user='transit') +conn = psycopg2.connect(database='transit', user='postgres', host='db') cursor = conn.cursor() diff --git a/ridership_map/run.sh b/ridership_map/run.sh new file mode 100644 index 0000000..832149d --- /dev/null +++ b/ridership_map/run.sh @@ -0,0 +1,8 @@ +#!/bin/sh + +./import.sh +cat create_foia_table.sql | psql -h db -U postgres transit +cat CTA\ original\ bus\ ridership\ data\ for\ October\ 2012.csv | psql -h db -U postgres -c 'COPY foia_data from stdin csv' transit +cat create_segment_ridership.sql | psql -h db -U postgres transit +python2.7 join_riders_using_gtfs.py +python2.7 create_geojson.py