Skip to content

Instantly share code, notes, and snippets.

@christophermanning
Last active September 13, 2019 10:31
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save christophermanning/6203413 to your computer and use it in GitHub Desktop.
Save christophermanning/6203413 to your computer and use it in GitHub Desktop.
CTA Line Simplification
/*
Copyright (c) 2013, Vladimir Agafonkin
Simplify.js is a high-performance JS polyline simplification library
mourner.github.io/simplify-js
*/
(function (global, undefined) {
"use strict";
// to suit your point format, run search/replace for '[0]' and '[1]';
// to switch to 3D, uncomment the lines in the next 2 functions
// (configurability would draw significant performance overhead)
function getSquareDistance(p1, p2) { // square distance between 2 points
var dx = p1[0] - p2[0],
// dz = p1.z - p2.z,
dy = p1[1] - p2[1];
return dx * dx +
// dz * dz +
dy * dy;
}
function getSquareSegmentDistance(p, p1, p2) { // square distance from a point to a segment
var x = p1[0],
y = p1[1],
// z = p1.z,
dx = p2[0] - x,
dy = p2[1] - y,
// dz = p2.z - z,
t;
if (dx !== 0 || dy !== 0) {
t = ((p[0] - x) * dx +
// (p.z - z) * dz +
(p[1] - y) * dy) /
(dx * dx +
// dz * dz +
dy * dy);
if (t > 1) {
x = p2[0];
y = p2[1];
// z = p2.z;
} else if (t > 0) {
x += dx * t;
y += dy * t;
// z += dz * t;
}
}
dx = p[0] - x;
dy = p[1] - y;
// dz = p.z - z;
return dx * dx +
// dz * dz +
dy * dy;
}
// the rest of the code doesn't care for the point format
// basic distance-based simplification
function simplifyRadialDistance(points, sqTolerance) {
var i,
len = points.length,
point,
prevPoint = points[0],
newPoints = [prevPoint];
for (i = 1; i < len; i++) {
point = points[i];
if (getSquareDistance(point, prevPoint) > sqTolerance) {
newPoints.push(point);
prevPoint = point;
}
}
if (prevPoint !== point) {
newPoints.push(point);
}
return newPoints;
}
// simplification using optimized Douglas-Peucker algorithm with recursion elimination
function simplifyDouglasPeucker(points, sqTolerance) {
var len = points.length,
MarkerArray = (typeof Uint8Array !== undefined + '')
? Uint8Array
: Array,
markers = new MarkerArray(len),
first = 0,
last = len - 1,
i,
maxSqDist,
sqDist,
index,
firstStack = [],
lastStack = [],
newPoints = [];
markers[first] = markers[last] = 1;
while (last) {
maxSqDist = 0;
for (i = first + 1; i < last; i++) {
sqDist = getSquareSegmentDistance(points[i], points[first], points[last]);
if (sqDist > maxSqDist) {
index = i;
maxSqDist = sqDist;
}
}
if (maxSqDist > sqTolerance) {
markers[index] = 1;
firstStack.push(first);
lastStack.push(index);
firstStack.push(index);
lastStack.push(last);
}
first = firstStack.pop();
last = lastStack.pop();
}
for (i = 0; i < len; i++) {
if (markers[i]) {
newPoints.push(points[i]);
}
}
return newPoints;
}
// both algorithms combined for awesome performance
function simplify(points, tolerance, highestQuality) {
var sqTolerance = tolerance !== undefined ? tolerance * tolerance : 1;
points = highestQuality ? points : simplifyRadialDistance(points, sqTolerance);
points = simplifyDouglasPeucker(points, sqTolerance);
return points;
};
// export either as a Node.js module, AMD module or a global browser variable
if (typeof exports === 'object') {
module.exports = simplify;
} else if (typeof define === 'function' && define.amd) {
define(function () {
return simplify;
});
} else {
global.simplify = simplify;
}
}(this));

Created by Christopher Manning

Summary

Line simplification of the CTA train routes. Different line interpolations and simplification levels create interesting designs.

I created this because I like line simplification, d3.js, the CTA train map, and abstract geometric shapes.

extract_gtfs.rb extracts the train lines from a GTFS zip file and creates a GeoJSON file.

Controls

  • Zoom (mousewheel, double click, or pinch) adjusts the simplification percentage.

References

Run this gist at bl.ocks.org

Display the source blob
Display the rendered blob
Raw
{"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"LineString","coordinates":[["-87.67289245","42.01906322"],["-87.67232427","42.01859536"],["-87.67177458","42.01814272"],["-87.67142086","42.01785004"],["-87.67078724","42.01732575"],["-87.6703651","42.01697644"],["-87.66988213","42.0165768"],["-87.66909211","42.01587618"],["-87.66769221","42.01466296"],["-87.66718331","42.0142149"],["-87.6668905","42.01388178"],["-87.66663474","42.01354887"],["-87.66629817","42.01297382"],["-87.66612624","42.01259306"],["-87.66605557","42.01226813"],["-87.66601382","42.01183289"],["-87.66597127","42.0105898"],["-87.66590909","42.00836182"],["-87.6658316","42.00686606"],["-87.66576971","42.00618445"],["-87.66571247","42.00585967"],["-87.6655256","42.00524967"],["-87.66527119","42.00466526"],["-87.6649991","42.00414785"],["-87.66476825","42.00381535"],["-87.66447543","42.00348006"],["-87.66404229","42.00308129"],["-87.6634618","42.00263791"],["-87.66343068","42.00261784"],["-87.66288053","42.00226521"],["-87.66224922","42.00186888"],["-87.66165748","42.00152497"],["-87.66142024","42.00136677"],["-87.6610607","42.00107336"],["-87.66082777","42.00089935"],["-87.66067007","42.00075584"],["-87.6604919","42.00058923"],["-87.66035169","42.00043663"],["-87.66021157","42.00027483"],["-87.66004709","42.0000853"],["-87.65989503","41.99988663"],["-87.65977997","41.99968818"],["-87.65964699","41.99943444"],["-87.65955679","41.99921774"],["-87.65947896","41.99899652"],["-87.65942551","41.99880303"],["-87.65935478","41.99849446"],["-87.65930832","41.99822283"],["-87.65926768","41.99798342"],["-87.65926651","41.99750968"],["-87.65925719","41.99722447"],["-87.65921122","41.99632273"],["-87.65918917","41.99549012"],["-87.65918313","41.99463461"],["-87.65920228","41.99366426"],["-87.65913049","41.99235303"],["-87.65908078","41.99083188"],["-87.65907586","41.99025949"],["-87.65901441","41.98881187"],["-87.65898335","41.98760155"],["-87.65887359","41.98450197"],["-87.65884028","41.98350423"],["-87.65879205","41.98184409"],["-87.65875047","41.98059282"],["-87.65871639","41.97966866"],["-87.65866842","41.97798399"],["-87.65858793","41.97522799"],["-87.65852996","41.97345332"],["-87.65848822","41.97117997"],["-87.65849296","41.96913894"],["-87.65846557","41.96837614"],["-87.65842209","41.96745896"],["-87.65838428","41.9668815"],["-87.65835859","41.96669002"],["-87.65831898","41.96650363"],["-87.65819034","41.96621846"],["-87.65802133","41.96581929"],["-87.65758751","41.96427269"],["-87.65756347","41.96397046"],["-87.65699866","41.96181419"],["-87.65689009","41.95861071"],["-87.65683673","41.95692259"],["-87.65676903","41.95490657"],["-87.65673866","41.95441024"],["-87.65673984","41.9542995"],["-87.65671751","41.95416647"],["-87.65664761","41.95404202"],["-87.65656532","41.95396623"],["-87.65646538","41.95387704"],["-87.65634749","41.95380104"],["-87.65623502","41.95377379"],["-87.65606302","41.95376392"],["-87.65557043","41.95376544"],["-87.65492939","41.95377495"],["-87.65430649","41.95375354"],["-87.65407863","41.95373404"],["-87.65393908","41.95370264"],["-87.65385068","41.95364453"],["-87.65378606","41.95358213"],["-87.65373336","41.95351536"],["-87.65369271","41.95343096"],["-87.65368469","41.95332028"],["-87.65367159","41.95311154"],["-87.65362592","41.95245597"],["-87.65366049","41.95199547"],["-87.65365831","41.95108289"],["-87.65364564","41.95059995"],["-87.65363554","41.94819887"],["-87.65362593","41.947428"],["-87.65361976","41.94689194"],["-87.65353484","41.94538969"],["-87.65351486","41.944477"],["-87.6534747","41.94434829"],["-87.65342275","41.94421066"],["-87.65341837","41.94406445"],["-87.65340241","41.94389158"],["-87.653388","41.94357254"],["-87.65336257","41.9431737"],["-87.65337754","41.94288141"],["-87.65339746","41.94268218"],["-87.65342448","41.94237225"],["-87.65345392","41.94217681"],["-87.65344193","41.94185235"],["-87.65342292","41.94145685"],["-87.65339708","41.94083241"],["-87.65338299","41.93991377"],["-87.65338049","41.93975075"],["-87.65337492","41.93938762"],["-87.65336788","41.93892875"],["-87.65336361","41.93865028"],["-87.65332582","41.93763218"],["-87.65330865","41.93716958"],["-87.65327514","41.93626663"],["-87.65326645","41.9360326"],["-87.65323493","41.93531994"],["-87.65321677","41.9349102"],["-87.65319648","41.93445211"],["-87.65313731","41.93311676"],["-87.65313086","41.9327315"],["-87.65309585","41.93217697"],["-87.65307037","41.93151468"],["-87.6530468","41.93090174"],["-87.65302372","41.93030173"],["-87.65299317","41.9295075"],["-87.65296222","41.92870278"],["-87.65295478","41.92841813"],["-87.65293544","41.92767809"],["-87.6529216","41.92714879"],["-87.65289134","41.92599125"],["-87.65287507","41.92536849"],["-87.65286584","41.92505137"],["-87.6528172","41.92352232"],["-87.65275988","41.9217182"],["-87.65274114","41.92112856"],["-87.65264431","41.91821657"],["-87.65263982","41.91808172"],["-87.65262488","41.91763256"],["-87.65260981","41.91717935"],["-87.65254835","41.91562579"],["-87.65250043","41.91405947"],["-87.65249381","41.91326816"],["-87.65249098","41.91316184"],["-87.65248582","41.91308123"],["-87.65242439","41.91298749"],["-87.65235283","41.91293355"],["-87.65140702","41.91225559"],["-87.65069802","41.91174551"],["-87.64917727","41.91065458"],["-87.64785436","41.90970772"],["-87.64554535","41.90806704"],["-87.64068611","41.90458051"],["-87.63993404","41.90404078"],["-87.63971211","41.90391757"],["-87.63950553","41.90383366"],["-87.63925701","41.90379082"],["-87.63895663","41.90379051"],["-87.63698055","41.90382479"],["-87.63447013","41.9038683"],["-87.63141229","41.90392031"],["-87.62907711","41.90394525"],["-87.6289143","41.90393613"],["-87.62880245","41.903903"],["-87.62874488","41.90387019"],["-87.62869478","41.9038185"],["-87.6286665","41.90375613"],["-87.62864241","41.90364239"],["-87.62862013","41.90316336"],["-87.62834794","41.90212033"],["-87.62829735","41.9002617"],["-87.62826415","41.89913649"],["-87.62817635","41.89667121"],["-87.62812919","41.89562296"],["-87.62808817","41.89411885"],["-87.6280395","41.8923342"],["-87.62802126","41.8916652"],["-87.62799534","41.89071471"],["-87.62798932","41.8896486"],["-87.62793498","41.88783248"],["-87.62783085","41.88596106"],["-87.62783518","41.88574041"],["-87.62781338","41.88480887"],["-87.62774837","41.88321471"],["-87.62769646","41.88074456"],["-87.6275961","41.87815276"],["-87.62756582","41.87687452"],["-87.62754332","41.87592492"],["-87.62751165","41.87471423"],["-87.62747912","41.87403924"],["-87.62748716","41.87305724"],["-87.62745665","41.87189073"],["-87.62746905","41.87076337"],["-87.62745141","41.86921464"],["-87.62740238","41.86736767"],["-87.62735946","41.86575399"],["-87.627309","41.86403659"],["-87.62739231","41.86363282"],["-87.62755562","41.86337346"],["-87.62767738","41.86325419"],["-87.62778108","41.86315569"],["-87.62803494","41.8629643"],["-87.62849051","41.862686"],["-87.62934126","41.86211473"],["-87.63017783","41.86138139"],["-87.6305816","41.86092837"],["-87.6309444","41.86034507"],["-87.63101434","41.86027569"],["-87.63112203","41.86012938"],["-87.63120354","41.85996075"],["-87.63129492","41.85976359"],["-87.63136451","41.85951865"],["-87.63141865","41.85923074"],["-87.63143776","41.85894023"],["-87.63144047","41.8586925"],["-87.63141868","41.85746088"],["-87.63136122","41.85575191"],["-87.63127726","41.85454011"],["-87.6311552","41.85389308"],["-87.63106167","41.85351323"],["-87.63096783","41.8532058"],["-87.63090594","41.85293893"],["-87.63084988","41.85267631"],["-87.63082074","41.85242838"],["-87.63073488","41.8517912"],["-87.63068875","41.85107222"],["-87.63068598","41.84960231"],["-87.63072478","41.84896889"],["-87.6308493","41.8483622"],["-87.63101191","41.84747702"],["-87.63108849","41.84717496"],["-87.63114935","41.84685374"],["-87.63117026","41.84668949"],["-87.63120348","41.84647246"],["-87.63127176","41.84585636"],["-87.63127922","41.84547159"],["-87.63125653","41.84458317"],["-87.63113576","41.84285161"],["-87.63103162","41.84183724"],["-87.63093039","41.84036575"],["-87.63086698","41.83952531"],["-87.63081133","41.8372117"],["-87.63074638","41.83494624"],["-87.6306363","41.83119056"],["-87.63055897","41.82748375"],["-87.63050182","41.82519"],["-87.63043612","41.82268556"],["-87.63030896","41.81768665"],["-87.63027912","41.8164671"],["-87.6302518","41.81524"],["-87.6302109","41.8135075"],["-87.6301863","41.81281083"],["-87.63019351","41.81246736"],["-87.63021852","41.81213836"],["-87.63027195","41.81181867"],["-87.63037931","41.81147236"],["-87.63041479","41.81138476"],["-87.63055731","41.81108602"],["-87.6310258","41.81033813"],["-87.63133611","41.80984756"],["-87.63151633","41.80946726"],["-87.63156732","41.80932982"],["-87.63158621","41.80928602"],["-87.63160052","41.80923962"],["-87.63161373","41.8091889"],["-87.63168032","41.80899215"],["-87.63169571","41.8089535"],["-87.63174058","41.80870039"],["-87.63177168","41.80852951"],["-87.63179146","41.8082989"],["-87.63180673","41.8080458"],["-87.6317891","41.8076823"],["-87.63173289","41.80689865"],["-87.6316203","41.8053475"],["-87.63146187","41.80305314"],["-87.63134505","41.80188958"],["-87.6313221","41.80083727"],["-87.63124131","41.79775373"],["-87.63116917","41.79541826"],["-87.63114474","41.79390167"],["-87.63109916","41.79167244"],["-87.63100379","41.78772181"],["-87.63103118","41.7872155"],["-87.63112207","41.78558225"],["-87.63106005","41.7833598"],["-87.63104498","41.78269984"],["-87.63100045","41.78053433"],["-87.63097131","41.77982223"],["-87.63093205","41.77942143"],["-87.6308187","41.77892332"],["-87.63076685","41.77874209"],["-87.63064648","41.77846821"],["-87.63048387","41.77814855"],["-87.63028061","41.77783233"],["-87.63003951","41.77748916"],["-87.62979012","41.77722884"],["-87.62953938","41.77697955"],["-87.62925623","41.77676967"],["-87.62882057","41.77644189"],["-87.62852633","41.77623286"],["-87.62750369","41.77540883"],["-87.62725069","41.7751435"],["-87.62711932","41.77500638"],["-87.62703971","41.77490569"],["-87.62683109","41.77463179"],["-87.62669922","41.77445046"],["-87.62651835","41.77416052"],["-87.62644409","41.77402081"],["-87.62641507","41.77397422"],["-87.62634973","41.77383014"],["-87.62619402","41.77348878"],["-87.62617535","41.77343263"],["-87.62602762","41.77295726"],["-87.62600698","41.77286429"],["-87.6259628","41.77258625"],["-87.62595363","41.7725243"],["-87.62592","41.77218112"],["-87.62589782","41.77187152"],["-87.62584883","41.77014895"],["-87.62580935","41.76836787"],["-87.62569108","41.76541567"],["-87.62567217","41.76289575"],["-87.62557432","41.75814698"],["-87.6255329","41.75603934"],["-87.62549567","41.75515849"],["-87.62537482","41.75387619"],["-87.6253061","41.7531612"],["-87.62525009","41.75263996"],["-87.62520485","41.75188762"],["-87.62519091","41.75128341"],["-87.62517835","41.75041234"],["-87.62499805","41.74459946"],["-87.624967","41.74302979"],["-87.62482283","41.73948341"],["-87.62478388","41.73613488"],["-87.62475307","41.73537121"],["-87.62472177","41.73448308"],["-87.62463427","41.73211746"],["-87.62458408","41.72904473"],["-87.62454371","41.72800134"],["-87.62441475","41.72237598"]]},"properties":{"route_id":"Red","route_color":"C60C30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.672892","42.019063"]},"properties":{"name":"Howard","stop_id":"30174","route_id":"Red"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.669092","42.015876"]},"properties":{"name":"Jarvis","stop_id":"30228","route_id":"Red"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.665909","42.008362"]},"properties":{"name":"Morse","stop_id":"30021","route_id":"Red"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.661061","42.001073"]},"properties":{"name":"Loyola","stop_id":"30252","route_id":"Red"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.659202","41.993664"]},"properties":{"name":"Granville","stop_id":"30148","route_id":"Red"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.659076","41.990259"]},"properties":{"name":"Thorndale","stop_id":"30170","route_id":"Red"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.65884","41.983504"]},"properties":{"name":"Bryn Mawr","stop_id":"30268","route_id":"Red"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.658668","41.977984"]},"properties":{"name":"Berwyn","stop_id":"30067","route_id":"Red"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.65853","41.973453"]},"properties":{"name":"Argyle","stop_id":"30230","route_id":"Red"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.658493","41.969139"]},"properties":{"name":"Lawrence","stop_id":"30150","route_id":"Red"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.657588","41.964273"]},"properties":{"name":"Wilson","stop_id":"30106","route_id":"Red"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.654929","41.953775"]},"properties":{"name":"Sheridan","stop_id":"30017","route_id":"Red"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.653626","41.947428"]},"properties":{"name":"Addison-Red","stop_id":"30274","route_id":"Red"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.65338","41.939751"]},"properties":{"name":"Belmont","stop_id":"30256","route_id":"Red"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.652866","41.925051"]},"properties":{"name":"Fullerton","stop_id":"30234","route_id":"Red"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.649177","41.910655"]},"properties":{"name":"North/Clybourn","stop_id":"30126","route_id":"Red"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.631412","41.90392"]},"properties":{"name":"Clark/Division","stop_id":"30122","route_id":"Red"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.628176","41.896671"]},"properties":{"name":"Chicago-Red","stop_id":"30280","route_id":"Red"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.628021","41.891665"]},"properties":{"name":"Grand-Red","stop_id":"30065","route_id":"Red"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.627813","41.884809"]},"properties":{"name":"Lake","stop_id":"30290","route_id":"Red"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.627696","41.880745"]},"properties":{"name":"Monroe-Red","stop_id":"30212","route_id":"Red"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.627596","41.878153"]},"properties":{"name":"Jackson-Red","stop_id":"30110","route_id":"Red"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.627479","41.874039"]},"properties":{"name":"Harrison","stop_id":"30286","route_id":"Red"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.627402","41.867368"]},"properties":{"name":"Roosevelt (Subway)","stop_id":"30270","route_id":"Red"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.630968","41.853206"]},"properties":{"name":"Cermak-Chinatown","stop_id":"30194","route_id":"Red"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.630636","41.831191"]},"properties":{"name":"Sox-35th","stop_id":"30037","route_id":"Red"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.63094","41.810318"]},"properties":{"name":"47th-Red","stop_id":"30238","route_id":"Red"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.631157","41.79542"]},"properties":{"name":"Garfield-Red","stop_id":"30224","route_id":"Red"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.630952","41.780536"]},"properties":{"name":"63rd","stop_id":"30178","route_id":"Red"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.625724","41.768367"]},"properties":{"name":"69th","stop_id":"30192","route_id":"Red"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.625112","41.750419"]},"properties":{"name":"79th","stop_id":"30047","route_id":"Red"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.624717","41.735372"]},"properties":{"name":"87th","stop_id":"30276","route_id":"Red"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.624342","41.722377"]},"properties":{"name":"95th","stop_id":"30089","route_id":"Red"}},{"type":"Feature","geometry":{"type":"LineString","coordinates":[["-87.69072952","42.07315276"],["-87.69032288","42.07239479"],["-87.68985219","42.07161518"],["-87.68953579","42.07111848"],["-87.68924753","42.07066451"],["-87.68891015","42.07012512"],["-87.6885246","42.06940452"],["-87.68820946","42.06878543"],["-87.68791516","42.06822498"],["-87.68730691","42.06699513"],["-87.68681394","42.06610969"],["-87.68651017","42.06556406"],["-87.68608111","42.06479338"],["-87.68573158","42.0641854"],["-87.68561726","42.06398654"],["-87.68484869","42.06274126"],["-87.68416604","42.06148119"],["-87.68381708","42.06085956"],["-87.683736","42.06065631"],["-87.68369196","42.0605265"],["-87.68365514","42.06043053"],["-87.68360401","42.0602556"],["-87.68353839","42.06001864"],["-87.68342897","42.05962933"],["-87.68339359","42.05939253"],["-87.68335203","42.0590205"],["-87.68333401","42.05856411"],["-87.68332766","42.05844578"],["-87.68333688","42.05828247"],["-87.68333283","42.05793882"],["-87.68336113","42.05738693"],["-87.68338869","42.05690826"],["-87.68352123","42.0557711"],["-87.68351093","42.05529785"],["-87.68354039","42.0546333"],["-87.68356033","42.05416022"],["-87.68354226","42.05296588"],["-87.68349573","42.05234033"],["-87.68348995","42.05216567"],["-87.68348762","42.05165303"],["-87.68352978","42.04900003"],["-87.68354256","42.04848748"],["-87.68354293","42.04771009"],["-87.68357953","42.04708501"],["-87.68358044","42.04699489"],["-87.68346194","42.04675762"],["-87.68326168","42.0463847"],["-87.68301798","42.04582563"],["-87.68276667","42.04527215"],["-87.68241988","42.04444773"],["-87.68222119","42.04392271"],["-87.68185537","42.04274329"],["-87.68160199","42.04165464"],["-87.68152226","42.04132183"],["-87.68147213","42.04105115"],["-87.68136431","42.04050975"],["-87.68084912","42.03823733"],["-87.68033445","42.03591774"],["-87.67993618","42.03422551"],["-87.67982551","42.03396434"],["-87.67961168","42.03363217"],["-87.67953792","42.03345571"],["-87.67925885","42.03211623"],["-87.67891549","42.03060034"],["-87.67855471","42.02894352"],["-87.67832942","42.02761185"],["-87.67810981","42.02609902"],["-87.67775357","42.02432097"],["-87.67752026","42.023211"],["-87.67743237","42.02274327"],["-87.67730231","42.02241077"],["-87.67718549","42.02223316"],["-87.67705352","42.02208588"],["-87.67689153","42.02197437"],["-87.67573568","42.02129917"],["-87.67405644","42.02002207"],["-87.67388248","42.01986342"],["-87.67350896","42.0195597"],["-87.67289245","42.01906322"],["-87.67232427","42.01859536"],["-87.67177458","42.01814272"],["-87.67142086","42.01785004"],["-87.67078724","42.01732575"],["-87.6703651","42.01697644"],["-87.66988213","42.0165768"],["-87.66909211","42.01587618"],["-87.66769221","42.01466296"],["-87.66718331","42.0142149"],["-87.6668905","42.01388178"],["-87.66663474","42.01354887"],["-87.66629817","42.01297382"],["-87.66612624","42.01259306"],["-87.66605557","42.01226813"],["-87.66601382","42.01183289"],["-87.66597127","42.0105898"],["-87.66590909","42.00836182"],["-87.6658316","42.00686606"],["-87.66576971","42.00618445"],["-87.66571247","42.00585967"],["-87.6655256","42.00524967"],["-87.66527119","42.00466526"],["-87.6649991","42.00414785"],["-87.66476825","42.00381535"],["-87.66447543","42.00348006"],["-87.66404402","42.00308289"],["-87.66400051","42.00304938"],["-87.6634618","42.00263791"],["-87.66346127","42.00263745"],["-87.66288053","42.00226521"],["-87.66224922","42.00186888"],["-87.66165748","42.00152497"],["-87.66142024","42.00136677"],["-87.6610607","42.00107336"],["-87.66082777","42.00089935"],["-87.66067007","42.00075584"],["-87.6604919","42.00058923"],["-87.66035169","42.00043663"],["-87.66021157","42.00027483"],["-87.66004709","42.0000853"],["-87.65989503","41.99988663"],["-87.65977997","41.99968818"],["-87.65964699","41.99943444"],["-87.65955679","41.99921774"],["-87.65947896","41.99899652"],["-87.65942551","41.99880303"],["-87.65935478","41.99849446"],["-87.65930832","41.99822283"],["-87.65926768","41.99798342"],["-87.65926651","41.99750968"],["-87.65925719","41.99722447"],["-87.65921122","41.99632273"],["-87.65918917","41.99549012"],["-87.65918313","41.99463461"],["-87.65920228","41.99366426"],["-87.65913049","41.99235303"],["-87.65908078","41.99083188"],["-87.65907586","41.99025949"],["-87.65901441","41.98881187"],["-87.65898335","41.98760155"],["-87.65887359","41.98450197"],["-87.65884028","41.98350423"],["-87.65879205","41.98184409"],["-87.65875047","41.98059282"],["-87.65871639","41.97966866"],["-87.65866842","41.97798399"],["-87.65858793","41.97522799"],["-87.65852996","41.97345332"],["-87.65848822","41.97117997"],["-87.65849296","41.96913894"],["-87.65846557","41.96837614"],["-87.65842209","41.96745896"],["-87.65838428","41.9668815"],["-87.65835859","41.96669002"],["-87.65831898","41.96650363"],["-87.65819034","41.96621846"],["-87.65802133","41.96581929"],["-87.65758751","41.96427269"],["-87.65756347","41.96397046"],["-87.65699866","41.96181419"],["-87.65689009","41.95861071"],["-87.65683673","41.95692259"],["-87.65676903","41.95490657"],["-87.65673866","41.95441024"],["-87.65673984","41.9542995"],["-87.65671751","41.95416647"],["-87.65664761","41.95404202"],["-87.65656532","41.95396623"],["-87.65646538","41.95387704"],["-87.65634749","41.95380104"],["-87.65623502","41.95377379"],["-87.65606302","41.95376392"],["-87.65557043","41.95376544"],["-87.65492939","41.95377495"],["-87.65430649","41.95375354"],["-87.65407863","41.95373404"],["-87.65393908","41.95370264"],["-87.65385068","41.95364453"],["-87.65378606","41.95358213"],["-87.65373336","41.95351536"],["-87.65369271","41.95343096"],["-87.65368469","41.95332028"],["-87.65367159","41.95311154"],["-87.65362592","41.95245597"],["-87.65366049","41.95199547"],["-87.65365831","41.95108289"],["-87.65364564","41.95059995"],["-87.65363554","41.94819887"],["-87.65362593","41.947428"],["-87.65361976","41.94689194"],["-87.65353484","41.94538969"],["-87.65351486","41.944477"],["-87.6534747","41.94434829"],["-87.65342275","41.94421066"],["-87.65341837","41.94406445"],["-87.65340241","41.94389158"],["-87.653388","41.94357254"],["-87.65336257","41.9431737"],["-87.65337754","41.94288141"],["-87.65339746","41.94268218"],["-87.65342448","41.94237225"],["-87.65345392","41.94217681"],["-87.65338049","41.93975075"],["-87.65337492","41.93938762"],["-87.65336788","41.93892875"],["-87.65336361","41.93865028"],["-87.65332582","41.93763218"],["-87.65330865","41.93716958"],["-87.65327514","41.93626663"],["-87.65326645","41.9360326"],["-87.65323493","41.93531994"],["-87.65321677","41.9349102"],["-87.65319648","41.93445211"],["-87.65313731","41.93311676"],["-87.65313086","41.9327315"],["-87.65309585","41.93217697"],["-87.65307037","41.93151468"],["-87.6530468","41.93090174"],["-87.65302372","41.93030173"],["-87.65299317","41.9295075"],["-87.65296222","41.92870278"],["-87.65295478","41.92841813"],["-87.65293544","41.92767809"],["-87.6529216","41.92714879"],["-87.65289134","41.92599125"],["-87.65287507","41.92536849"],["-87.65286584","41.92505137"],["-87.6528172","41.92352232"],["-87.65275988","41.9217182"],["-87.65274114","41.92112856"],["-87.65264431","41.91821657"],["-87.65263982","41.91808172"],["-87.65262488","41.91763256"],["-87.65260981","41.91717935"],["-87.65254835","41.91562579"],["-87.65250043","41.91405947"],["-87.65242186","41.91376522"],["-87.65234404","41.91361861"],["-87.65222841","41.91350708"],["-87.65207812","41.91338828"],["-87.65182737","41.913217"],["-87.65092623","41.91260086"],["-87.65016827","41.91203038"],["-87.64984873","41.91179737"],["-87.64971386","41.91171403"],["-87.64956621","41.91164476"],["-87.64948143","41.9116018"],["-87.6493901","41.91158004"],["-87.64920439","41.91152705"],["-87.64899947","41.91149989"],["-87.64883215","41.91149889"],["-87.64862688","41.91150474"],["-87.64791644","41.91151229"],["-87.64781239","41.91149988"],["-87.64768022","41.911459"],["-87.64755789","41.91138517"],["-87.64744848","41.91122027"],["-87.6474045","41.91112474"],["-87.64739069","41.91101257"],["-87.64737726","41.9108582"],["-87.64735677","41.91070715"],["-87.64733568","41.91061269"],["-87.64727679","41.91051094"],["-87.64717963","41.91044433"],["-87.6470949","41.91039665"],["-87.64696898","41.91036289"],["-87.6468177","41.9103384"],["-87.64664356","41.91033001"],["-87.646456","41.91033263"],["-87.64580383","41.91034174"],["-87.64522967","41.91034069"],["-87.64347882","41.9103632"],["-87.64254966","41.91038714"],["-87.64099977","41.91039701"],["-87.64037786","41.91040097"],["-87.63974615","41.91040499"],["-87.63930216","41.91040918"],["-87.6381392","41.91041896"],["-87.63797586","41.91040921"],["-87.63787123","41.91039245"],["-87.63771148","41.91034083"],["-87.63757044","41.91027089"],["-87.63746014","41.91020805"],["-87.63736257","41.91010844"],["-87.63729603","41.9099906"],["-87.63726856","41.90985888"],["-87.63726226","41.90972932"],["-87.63724926","41.9095076"],["-87.63722675","41.9087418"],["-87.63718162","41.90757577"],["-87.6371325","41.90606718"],["-87.63710856","41.90543378"],["-87.63701552","41.90381127"],["-87.63702361","41.90367742"],["-87.63700803","41.90333767"],["-87.63699391","41.90321957"],["-87.63694494","41.90311565"],["-87.63688076","41.90299437"],["-87.63682372","41.90292494"],["-87.63670958","41.90279184"],["-87.63659164","41.90265296"],["-87.63652727","41.90254895"],["-87.63648981","41.90245085"],["-87.63645623","41.9023499"],["-87.63646547","41.90220892"],["-87.63647039","41.90211108"],["-87.63650218","41.90202204"],["-87.63653046","41.90190132"],["-87.63658966","41.90177215"],["-87.6366575","41.90155668"],["-87.63668973","41.90142734"],["-87.63669869","41.90131226"],["-87.63670382","41.90119428"],["-87.63663663","41.90028716"],["-87.63663932","41.90007918"],["-87.63662211","41.89975187"],["-87.63657813","41.89891558"],["-87.636565","41.89866596"],["-87.63654244","41.89760965"],["-87.63654112","41.89737649"],["-87.63649236","41.8972553"],["-87.63640876","41.89714829"],["-87.63634017","41.8970788"],["-87.6362256","41.89698599"],["-87.63594666","41.89677417"],["-87.63583409","41.8966681"],["-87.635735","41.89654494"],["-87.635685","41.89645174"],["-87.63568316","41.89632785"],["-87.63564521","41.89542002"],["-87.63562832","41.89433604"],["-87.63559527","41.89327102"],["-87.63558019","41.89260631"],["-87.6355352","41.89146737"],["-87.63552647","41.89051207"],["-87.63548093","41.89030217"],["-87.63539908","41.89020638"],["-87.63532664","41.89012495"],["-87.63523992","41.8900701"],["-87.63507921","41.89001149"],["-87.63493301","41.8899701"],["-87.63475395","41.88993627"],["-87.63461577","41.88991178"],["-87.6344677","41.88988635"],["-87.63436376","41.88984038"],["-87.63424638","41.88978726"],["-87.63413677","41.88970196"],["-87.63407169","41.88962373"],["-87.63402006","41.88952193"],["-87.63399342","41.8894262"],["-87.63397336","41.88896793"],["-87.63395565","41.88706928"],["-87.63391317","41.88572453"],["-87.63284572","41.88573014"],["-87.63203975","41.88573666"],["-87.63088602","41.88573698"],["-87.63019852","41.88573752"],["-87.63011395","41.88573771"],["-87.62992165","41.88573816"],["-87.62981629","41.8857384"],["-87.62947821","41.88573919"],["-87.62887179","41.88574059"],["-87.62783518","41.88574041"],["-87.62682986","41.88573881"],["-87.6266122","41.88573846"],["-87.62655437","41.88573625"],["-87.62650323","41.88573298"],["-87.62642067","41.88572251"],["-87.62634684","41.8856894"],["-87.62630227","41.88565825"],["-87.62626769","41.88561777"],["-87.62625295","41.88557002"],["-87.62625476","41.88552136"],["-87.62625673","41.88534271"],["-87.62622211","41.8844349"],["-87.62615617","41.8820309"],["-87.6260979","41.87951022"],["-87.62605379","41.87830696"],["-87.62603392","41.87696579"],["-87.62634913","41.87696048"],["-87.62649605","41.8769593"],["-87.62756718","41.87693211"],["-87.62820914","41.87690834"],["-87.62925296","41.87688614"],["-87.63173383","41.87685534"],["-87.63262638","41.87684887"],["-87.63337545","41.8768463"],["-87.63344863","41.87685865"],["-87.63352807","41.87688058"],["-87.63358516","41.87690713"],["-87.63364522","41.87695275"],["-87.63369311","41.8770628"],["-87.63368645","41.87726125"],["-87.63373998","41.87872328"],["-87.63378257","41.88014092"],["-87.63384491","41.88143957"],["-87.63385353","41.88269502"],["-87.63388906","41.88440562"],["-87.63391317","41.88572453"],["-87.63395565","41.88706928"],["-87.63397336","41.88896793"],["-87.63399342","41.8894262"],["-87.63402006","41.88952193"],["-87.63407169","41.88962373"],["-87.63413677","41.88970196"],["-87.63424638","41.88978726"],["-87.63436376","41.88984038"],["-87.6344677","41.88988635"],["-87.63461577","41.88991178"],["-87.63475395","41.88993627"],["-87.63493301","41.8899701"],["-87.63507921","41.89001149"],["-87.63523992","41.8900701"],["-87.63532664","41.89012495"],["-87.63539908","41.89020638"],["-87.63548093","41.89030217"],["-87.63552647","41.89051207"],["-87.6355352","41.89146737"],["-87.63558019","41.89260631"],["-87.63559527","41.89327102"],["-87.63562832","41.89433604"],["-87.63564521","41.89542002"],["-87.63568316","41.89632785"],["-87.635685","41.89645174"],["-87.635735","41.89654494"],["-87.63583409","41.8966681"],["-87.63594666","41.89677417"],["-87.6362256","41.89698599"],["-87.63634017","41.8970788"],["-87.63640876","41.89714829"],["-87.63649236","41.8972553"],["-87.63654112","41.89737649"],["-87.63654244","41.89760965"],["-87.636565","41.89866596"],["-87.63657813","41.89891558"],["-87.63662211","41.89975187"],["-87.63663932","41.90007918"],["-87.63663663","41.90028716"],["-87.63670382","41.90119428"],["-87.63669869","41.90131226"],["-87.63668973","41.90142734"],["-87.6366575","41.90155668"],["-87.63658966","41.90177215"],["-87.63653046","41.90190132"],["-87.63650218","41.90202204"],["-87.63647039","41.90211108"],["-87.63646547","41.90220892"],["-87.63645623","41.9023499"],["-87.63648981","41.90245085"],["-87.63652727","41.90254895"],["-87.63659164","41.90265296"],["-87.63670958","41.90279184"],["-87.63682372","41.90292494"],["-87.63688076","41.90299437"],["-87.63694494","41.90311565"],["-87.63699391","41.90321957"],["-87.63700803","41.90333767"],["-87.63702361","41.90367742"],["-87.63701552","41.90381127"],["-87.63710856","41.90543378"],["-87.6371325","41.90606718"],["-87.63718162","41.90757577"],["-87.63722675","41.9087418"],["-87.63724926","41.9095076"],["-87.63726226","41.90972932"],["-87.63726856","41.90985888"],["-87.63729603","41.9099906"],["-87.63736257","41.91010844"],["-87.63746014","41.91020805"],["-87.63757044","41.91027089"],["-87.63771148","41.91034083"],["-87.63787123","41.91039245"],["-87.63797586","41.91040921"],["-87.6381392","41.91041896"],["-87.63930216","41.91040918"],["-87.63974615","41.91040499"],["-87.64037786","41.91040097"],["-87.64099977","41.91039701"],["-87.64254966","41.91038714"],["-87.64347882","41.9103632"],["-87.64522967","41.91034069"],["-87.64580383","41.91034174"],["-87.646456","41.91033263"],["-87.64664356","41.91033001"],["-87.6468177","41.9103384"],["-87.64696898","41.91036289"],["-87.6470949","41.91039665"],["-87.64717963","41.91044433"],["-87.64727679","41.91051094"],["-87.64733568","41.91061269"],["-87.64735677","41.91070715"],["-87.64737726","41.9108582"],["-87.64739069","41.91101257"],["-87.6474045","41.91112474"],["-87.64744848","41.91122027"],["-87.64755789","41.91138517"],["-87.64768022","41.911459"],["-87.64781239","41.91149988"],["-87.64791644","41.91151229"],["-87.64862688","41.91150474"],["-87.64883215","41.91149889"],["-87.64899947","41.91149989"],["-87.64920439","41.91152705"],["-87.6493901","41.91158004"],["-87.64948143","41.9116018"],["-87.64956621","41.91164476"],["-87.64971386","41.91171403"],["-87.64984873","41.91179737"],["-87.65016827","41.91203038"],["-87.65092623","41.91260086"],["-87.65182737","41.913217"],["-87.65207812","41.91338828"],["-87.65222841","41.91350708"],["-87.65234404","41.91361861"],["-87.65242186","41.91376522"],["-87.65250043","41.91405947"],["-87.65254835","41.91562579"],["-87.65260981","41.91717935"],["-87.65262488","41.91763256"],["-87.65263982","41.91808172"],["-87.65264431","41.91821657"],["-87.65274114","41.92112856"],["-87.65275988","41.9217182"],["-87.6528172","41.92352232"],["-87.65286584","41.92505137"],["-87.65287507","41.92536849"],["-87.65289134","41.92599125"],["-87.6529216","41.92714879"],["-87.65293544","41.92767809"],["-87.65295478","41.92841813"],["-87.65296222","41.92870278"],["-87.65299317","41.9295075"],["-87.65302372","41.93030173"],["-87.6530468","41.93090174"],["-87.65307037","41.93151468"],["-87.65309585","41.93217697"],["-87.65313086","41.9327315"],["-87.65313731","41.93311676"],["-87.65319648","41.93445211"],["-87.65321677","41.9349102"],["-87.65323493","41.93531994"],["-87.65326645","41.9360326"],["-87.65327514","41.93626663"],["-87.65330865","41.93716958"],["-87.65332582","41.93763218"],["-87.65336361","41.93865028"],["-87.65336788","41.93892875"],["-87.65337492","41.93938762"],["-87.65338049","41.93975075"],["-87.65345392","41.94217681"],["-87.65342448","41.94237225"],["-87.65339746","41.94268218"],["-87.65337754","41.94288141"],["-87.65336257","41.9431737"],["-87.653388","41.94357254"],["-87.65340241","41.94389158"],["-87.65341837","41.94406445"],["-87.65342275","41.94421066"],["-87.6534747","41.94434829"],["-87.65351486","41.944477"],["-87.65353484","41.94538969"],["-87.65361976","41.94689194"],["-87.65362593","41.947428"],["-87.65363554","41.94819887"],["-87.65364564","41.95059995"],["-87.65365831","41.95108289"],["-87.65366049","41.95199547"],["-87.65362592","41.95245597"],["-87.65367159","41.95311154"],["-87.65368469","41.95332028"],["-87.65369271","41.95343096"],["-87.65373336","41.95351536"],["-87.65378606","41.95358213"],["-87.65385068","41.95364453"],["-87.65393908","41.95370264"],["-87.65407863","41.95373404"],["-87.65430649","41.95375354"],["-87.65492939","41.95377495"],["-87.65557043","41.95376544"],["-87.65606302","41.95376392"],["-87.65623502","41.95377379"],["-87.65634749","41.95380104"],["-87.65646538","41.95387704"],["-87.65656532","41.95396623"],["-87.65664761","41.95404202"],["-87.65671751","41.95416647"],["-87.65673984","41.9542995"],["-87.65673866","41.95441024"],["-87.65676903","41.95490657"],["-87.65683673","41.95692259"],["-87.65689009","41.95861071"],["-87.65699866","41.96181419"],["-87.65756347","41.96397046"],["-87.65758751","41.96427269"],["-87.65802133","41.96581929"],["-87.65819034","41.96621846"],["-87.65831898","41.96650363"],["-87.65835859","41.96669002"],["-87.65838428","41.9668815"],["-87.65842209","41.96745896"],["-87.65846557","41.96837614"],["-87.65849296","41.96913894"],["-87.65848822","41.97117997"],["-87.65852996","41.97345332"],["-87.65858793","41.97522799"],["-87.65866842","41.97798399"],["-87.65871639","41.97966866"],["-87.65875047","41.98059282"],["-87.65879205","41.98184409"],["-87.65884028","41.98350423"],["-87.65887359","41.98450197"],["-87.65898335","41.98760155"],["-87.65901441","41.98881187"],["-87.65907586","41.99025949"],["-87.65908078","41.99083188"],["-87.65913049","41.99235303"],["-87.65920228","41.99366426"],["-87.65918313","41.99463461"],["-87.65918917","41.99549012"],["-87.65921122","41.99632273"],["-87.65925719","41.99722447"],["-87.65926651","41.99750968"],["-87.65926768","41.99798342"],["-87.65930832","41.99822283"],["-87.65935478","41.99849446"],["-87.65942551","41.99880303"],["-87.65947896","41.99899652"],["-87.65955679","41.99921774"],["-87.65964699","41.99943444"],["-87.65977997","41.99968818"],["-87.65989503","41.99988663"],["-87.66004709","42.0000853"],["-87.66021157","42.00027483"],["-87.66035169","42.00043663"],["-87.6604919","42.00058923"],["-87.66067007","42.00075584"],["-87.66082777","42.00089935"],["-87.6610607","42.00107336"],["-87.66142024","42.00136677"],["-87.66165748","42.00152497"],["-87.66224922","42.00186888"],["-87.66288053","42.00226521"],["-87.66346127","42.00263745"],["-87.6634618","42.00263791"],["-87.66400051","42.00304938"],["-87.66404402","42.00308289"],["-87.66447543","42.00348006"],["-87.66476825","42.00381535"],["-87.6649991","42.00414785"],["-87.66527119","42.00466526"],["-87.6655256","42.00524967"],["-87.66571247","42.00585967"],["-87.66576971","42.00618445"],["-87.6658316","42.00686606"],["-87.66590909","42.00836182"],["-87.66597127","42.0105898"],["-87.66601382","42.01183289"],["-87.66605557","42.01226813"],["-87.66612624","42.01259306"],["-87.66629817","42.01297382"],["-87.66663474","42.01354887"],["-87.6668905","42.01388178"],["-87.66718331","42.0142149"],["-87.66769221","42.01466296"],["-87.66909211","42.01587618"],["-87.66988213","42.0165768"],["-87.6703651","42.01697644"],["-87.67078724","42.01732575"],["-87.67142086","42.01785004"],["-87.67177458","42.01814272"],["-87.67232427","42.01859536"],["-87.67289245","42.01906322"],["-87.67350896","42.0195597"],["-87.67388248","42.01986342"],["-87.67405644","42.02002207"],["-87.67573568","42.02129917"],["-87.67689153","42.02197437"],["-87.67705352","42.02208588"],["-87.67718549","42.02223316"],["-87.67730231","42.02241077"],["-87.67743237","42.02274327"],["-87.67752026","42.023211"],["-87.67775357","42.02432097"],["-87.67810981","42.02609902"],["-87.67832942","42.02761185"],["-87.67855471","42.02894352"],["-87.67891549","42.03060034"],["-87.67925885","42.03211623"],["-87.67953792","42.03345571"],["-87.67961168","42.03363217"],["-87.67982551","42.03396434"],["-87.67993618","42.03422551"],["-87.68033445","42.03591774"],["-87.68084912","42.03823733"],["-87.68136431","42.04050975"],["-87.68147213","42.04105115"],["-87.68152226","42.04132183"],["-87.68160199","42.04165464"],["-87.68185537","42.04274329"],["-87.68222119","42.04392271"],["-87.68241988","42.04444773"],["-87.68276667","42.04527215"],["-87.68301798","42.04582563"],["-87.68326168","42.0463847"],["-87.68346194","42.04675762"],["-87.68358044","42.04699489"],["-87.68357953","42.04708501"],["-87.68354293","42.04771009"],["-87.68354256","42.04848748"],["-87.68352978","42.04900003"],["-87.68348762","42.05165303"],["-87.68348995","42.05216567"],["-87.68349573","42.05234033"],["-87.68354226","42.05296588"],["-87.68356033","42.05416022"],["-87.68354039","42.0546333"],["-87.68351093","42.05529785"],["-87.68352123","42.0557711"],["-87.68338869","42.05690826"],["-87.68336113","42.05738693"],["-87.68333283","42.05793882"],["-87.68333688","42.05828247"],["-87.68332766","42.05844578"],["-87.68333401","42.05856411"],["-87.68335203","42.0590205"],["-87.68339359","42.05939253"],["-87.68342897","42.05962933"],["-87.68353839","42.06001864"],["-87.68360401","42.0602556"],["-87.68365514","42.06043053"],["-87.68369196","42.0605265"],["-87.683736","42.06065631"],["-87.68381708","42.06085956"],["-87.68416604","42.06148119"],["-87.68484869","42.06274126"],["-87.68561726","42.06398654"],["-87.68573158","42.0641854"],["-87.68608111","42.06479338"],["-87.68651017","42.06556406"],["-87.68681394","42.06610969"],["-87.68730691","42.06699513"],["-87.68791516","42.06822498"],["-87.68820946","42.06878543"],["-87.6885246","42.06940452"],["-87.68891015","42.07012512"],["-87.68924753","42.07066451"],["-87.68953579","42.07111848"],["-87.68985219","42.07161518"],["-87.69032288","42.07239479"],["-87.69072952","42.07315276"]]},"properties":{"route_id":"P","route_color":"522398"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.69073","42.073153"]},"properties":{"name":"Linden","stop_id":"30204","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.685617","42.063987"]},"properties":{"name":"Central-Purple","stop_id":"30242","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.683337","42.058282"]},"properties":{"name":"Noyes","stop_id":"30079","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.68356","42.05416"]},"properties":{"name":"Foster","stop_id":"30102","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.683543","42.04771"]},"properties":{"name":"Davis","stop_id":"30011","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.681602","42.041655"]},"properties":{"name":"Dempster","stop_id":"30134","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.679538","42.033456"]},"properties":{"name":"Main","stop_id":"30053","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.678329","42.027612"]},"properties":{"name":"South Boulevard","stop_id":"30164","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.672892","42.019063"]},"properties":{"name":"Howard","stop_id":"30176","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.65338","41.939751"]},"properties":{"name":"Belmont","stop_id":"30258","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.653266","41.936033"]},"properties":{"name":"Wellington","stop_id":"30232","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.653131","41.932732"]},"properties":{"name":"Diversey","stop_id":"30104","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.652866","41.925051"]},"properties":{"name":"Fullerton","stop_id":"30236","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.652644","41.918217"]},"properties":{"name":"Armitage","stop_id":"30128","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.639302","41.910409"]},"properties":{"name":"Sedgwick","stop_id":"30156","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.635924","41.89681"]},"properties":{"name":"Chicago-Brown","stop_id":"30138","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.633924","41.888969"]},"properties":{"name":"Merchandise Mart","stop_id":"30091","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.630886","41.885737"]},"properties":{"name":"Clark/Lake (Elevated)","stop_id":"30074","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.627835","41.88574"]},"properties":{"name":"State/Lake","stop_id":"30050","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.626149","41.884431"]},"properties":{"name":"Randolph/Wabash","stop_id":"30039","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.626098","41.882023"]},"properties":{"name":"Madison/Wabash","stop_id":"30124","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.626037","41.879507"]},"properties":{"name":"Adams/Wabash","stop_id":"30132","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.628196","41.876862"]},"properties":{"name":"Harold Washington Library","stop_id":"30166","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.631739","41.8768"]},"properties":{"name":"LaSalle/Van Buren","stop_id":"30031","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.63374","41.878723"]},"properties":{"name":"Quincy/Wells","stop_id":"30007","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.63378","41.882695"]},"properties":{"name":"Washington/Wells","stop_id":"30141","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.633924","41.888969"]},"properties":{"name":"Merchandise Mart","stop_id":"30090","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.635924","41.89681"]},"properties":{"name":"Chicago-Brown","stop_id":"30137","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.639302","41.910409"]},"properties":{"name":"Sedgwick","stop_id":"30155","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.652644","41.918217"]},"properties":{"name":"Armitage","stop_id":"30127","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.652866","41.925051"]},"properties":{"name":"Fullerton","stop_id":"30235","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.653131","41.932732"]},"properties":{"name":"Diversey","stop_id":"30103","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.653266","41.936033"]},"properties":{"name":"Wellington","stop_id":"30231","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.65338","41.939751"]},"properties":{"name":"Belmont","stop_id":"30257","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.672892","42.019063"]},"properties":{"name":"Howard","stop_id":"30175","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.678329","42.027612"]},"properties":{"name":"South Boulevard","stop_id":"30163","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.679538","42.033456"]},"properties":{"name":"Main","stop_id":"30052","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.681602","42.041655"]},"properties":{"name":"Dempster","stop_id":"30133","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.683543","42.04771"]},"properties":{"name":"Davis","stop_id":"30010","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.68356","42.05416"]},"properties":{"name":"Foster","stop_id":"30101","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.683337","42.058282"]},"properties":{"name":"Noyes","stop_id":"30078","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.685617","42.063987"]},"properties":{"name":"Central-Purple","stop_id":"30241","route_id":"P"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.69073","42.073153"]},"properties":{"name":"Linden","stop_id":"30203","route_id":"P"}},{"type":"Feature","geometry":{"type":"LineString","coordinates":[["-87.67289245","42.01906322"],["-87.67344811","42.01951021"],["-87.67388248","42.01986342"],["-87.67448615","42.02020544"],["-87.67473773","42.02035518"],["-87.67513325","42.02057316"],["-87.67555575","42.02080478"],["-87.67588842","42.02098195"],["-87.6762845","42.021146"],["-87.67659978","42.02125566"],["-87.67692395","42.02134195"],["-87.67716462","42.0214022"],["-87.67733156","42.02143213"],["-87.67747908","42.02145858"],["-87.67761803","42.02148362"],["-87.67783158","42.02152884"],["-87.67811494","42.02158248"],["-87.67862305","42.0216358"],["-87.67915678","42.02168241"],["-87.67963442","42.02170944"],["-87.68216798","42.021705"],["-87.68483836","42.02170736"],["-87.68574308","42.02170815"],["-87.6860563","42.02170842"],["-87.68745606","42.02169534"],["-87.68800835","42.02169652"],["-87.68877925","42.02175744"],["-87.68922875","42.02179959"],["-87.68959624","42.02185155"],["-87.69005279","42.02192063"],["-87.69048744","42.02194801"],["-87.69095531","42.02200053"],["-87.69134606","42.02206107"],["-87.69160898","42.02210876"],["-87.69185647","42.02215058"],["-87.69256055","42.02224116"],["-87.69332736","42.02225699"],["-87.69429587","42.02224506"],["-87.69497001","42.02223148"],["-87.69579926","42.02220143"],["-87.69663601","42.02219452"],["-87.69719372","42.02220338"],["-87.69750336","42.02222821"],["-87.69855904","42.0223205"],["-87.6994739","42.02242814"],["-87.69978405","42.02246796"],["-87.7003114","42.02253256"],["-87.7010092","42.02259418"],["-87.70181457","42.02262749"],["-87.70299994","42.02262245"],["-87.70415473","42.0225768"],["-87.70660339","42.02252088"],["-87.70731632","42.02250166"],["-87.70787016","42.02250928"],["-87.70831967","42.02250464"],["-87.70878562","42.02249491"],["-87.70981896","42.02253029"],["-87.71021811","42.02254396"],["-87.71039281","42.02254994"],["-87.71074166","42.02255555"],["-87.71132555","42.02256499"],["-87.71180345","42.02257703"],["-87.71274012","42.02260117"],["-87.71382074","42.02265219"],["-87.71440226","42.02265938"],["-87.71496192","42.02266059"],["-87.71533241","42.02265525"],["-87.716023","42.02264527"],["-87.71690643","42.02265354"],["-87.71790087","42.02264773"],["-87.71805309","42.02264551"],["-87.71820298","42.02264332"],["-87.71852096","42.02262333"],["-87.71914114","42.02261452"],["-87.71980347","42.02257345"],["-87.72010847","42.0225477"],["-87.72045515","42.02253327"],["-87.72089099","42.02249881"],["-87.72132015","42.02245797"],["-87.72195122","42.02239739"],["-87.72219353","42.02237612"],["-87.72243073","42.02236234"],["-87.72272842","42.02235264"],["-87.72332371","42.02234076"],["-87.72820538","42.02233756"],["-87.73080769","42.0223358"],["-87.73788099","42.02231058"],["-87.74058939","42.02230906"],["-87.7412404","42.02235334"],["-87.74200494","42.02243287"],["-87.74239347","42.02250727"],["-87.74277561","42.02259822"],["-87.74315009","42.02270545"],["-87.74351566","42.02282858"],["-87.74387112","42.0229672"],["-87.74421527","42.02312087"],["-87.74454698","42.02328907"],["-87.74486515","42.02347123"],["-87.74516871","42.02366676"],["-87.74545666","42.023875"],["-87.74572805","42.02409527"],["-87.74598197","42.02432682"],["-87.74621758","42.0245689"],["-87.7464341","42.0248207"],["-87.7466308","42.02508138"],["-87.74680703","42.02535008"],["-87.74696221","42.0256259"],["-87.74709582","42.02590793"],["-87.74720557","42.02620658"],["-87.74722084","42.02624348"],["-87.74732022","42.02648363"],["-87.74742648","42.02678796"],["-87.74758262","42.02732951"],["-87.74772066","42.02776632"],["-87.74782464","42.02807697"],["-87.74798637","42.02857158"],["-87.74861249","42.03065218"],["-87.74868363","42.03091182"],["-87.74907608","42.0320186"],["-87.74921127","42.03246133"],["-87.74923982","42.03255482"],["-87.74936546","42.03293095"],["-87.74948206","42.03335083"],["-87.74952072","42.03346152"],["-87.74969461","42.03395949"],["-87.75005886","42.03472813"],["-87.75032595","42.03532937"],["-87.75039776","42.03550023"],["-87.7507992","42.03635409"],["-87.75117228","42.0371699"],["-87.75125766","42.0373566"],["-87.75160623","42.03811237"],["-87.75191863","42.03895069"],["-87.75191863","42.03895069"],["-87.75160623","42.03811237"],["-87.75125766","42.0373566"],["-87.75117228","42.0371699"],["-87.7507992","42.03635409"],["-87.75039776","42.03550023"],["-87.75032595","42.03532937"],["-87.75005886","42.03472813"],["-87.74969461","42.03395949"],["-87.74952072","42.03346152"],["-87.74948206","42.03335083"],["-87.74936546","42.03293095"],["-87.74923982","42.03255482"],["-87.74921127","42.03246133"],["-87.74907608","42.0320186"],["-87.74868363","42.03091182"],["-87.74861249","42.03065218"],["-87.74798637","42.02857158"],["-87.74782464","42.02807697"],["-87.74772066","42.02776632"],["-87.74758262","42.02732951"],["-87.74742648","42.02678796"],["-87.74732022","42.02648363"],["-87.74722084","42.02624348"],["-87.74720557","42.02620658"],["-87.74709582","42.02590793"],["-87.74696221","42.0256259"],["-87.74680703","42.02535008"],["-87.7466308","42.02508138"],["-87.7464341","42.0248207"],["-87.74621758","42.0245689"],["-87.74598197","42.02432682"],["-87.74572805","42.02409527"],["-87.74545666","42.023875"],["-87.74516871","42.02366676"],["-87.74486515","42.02347123"],["-87.74454698","42.02328907"],["-87.74421527","42.02312087"],["-87.74387112","42.0229672"],["-87.74351566","42.02282858"],["-87.74315009","42.02270545"],["-87.74277561","42.02259822"],["-87.74239347","42.02250727"],["-87.74200494","42.02243287"],["-87.7412404","42.02235334"],["-87.74058939","42.02230906"],["-87.73788099","42.02231058"],["-87.73080769","42.0223358"],["-87.72820538","42.02233756"],["-87.72332371","42.02234076"],["-87.72272842","42.02235264"],["-87.72243073","42.02236234"],["-87.72219353","42.02237612"],["-87.72195122","42.02239739"],["-87.72132015","42.02245797"],["-87.72089099","42.02249881"],["-87.72045515","42.02253327"],["-87.72010847","42.0225477"],["-87.71980347","42.02257345"],["-87.71914114","42.02261452"],["-87.71852096","42.02262333"],["-87.71820298","42.02264332"],["-87.71805309","42.02264551"],["-87.71790087","42.02264773"],["-87.71690643","42.02265354"],["-87.716023","42.02264527"],["-87.71533241","42.02265525"],["-87.71496192","42.02266059"],["-87.71440226","42.02265938"],["-87.71382074","42.02265219"],["-87.71274012","42.02260117"],["-87.71180345","42.02257703"],["-87.71132555","42.02256499"],["-87.71074166","42.02255555"],["-87.71039281","42.02254994"],["-87.71021811","42.02254396"],["-87.70981896","42.02253029"],["-87.70878562","42.02249491"],["-87.70831967","42.02250464"],["-87.70787016","42.02250928"],["-87.70731632","42.02250166"],["-87.70660339","42.02252088"],["-87.70415473","42.0225768"],["-87.70299994","42.02262245"],["-87.70181457","42.02262749"],["-87.7010092","42.02259418"],["-87.7003114","42.02253256"],["-87.69978405","42.02246796"],["-87.6994739","42.02242814"],["-87.69855904","42.0223205"],["-87.69750336","42.02222821"],["-87.69719372","42.02220338"],["-87.69663601","42.02219452"],["-87.69579926","42.02220143"],["-87.69497001","42.02223148"],["-87.69429587","42.02224506"],["-87.69332736","42.02225699"],["-87.69256055","42.02224116"],["-87.69185647","42.02215058"],["-87.69160898","42.02210876"],["-87.69134606","42.02206107"],["-87.69095531","42.02200053"],["-87.69048744","42.02194801"],["-87.69005279","42.02192063"],["-87.68959624","42.02185155"],["-87.68922875","42.02179959"],["-87.68877925","42.02175744"],["-87.68800835","42.02169652"],["-87.68745606","42.02169534"],["-87.6860563","42.02170842"],["-87.68574308","42.02170815"],["-87.68483836","42.02170736"],["-87.68216798","42.021705"],["-87.67963442","42.02170944"],["-87.67915678","42.02168241"],["-87.67862305","42.0216358"],["-87.67811494","42.02158248"],["-87.67783158","42.02152884"],["-87.67761803","42.02148362"],["-87.67747908","42.02145858"],["-87.67733156","42.02143213"],["-87.67716462","42.0214022"],["-87.67692395","42.02134195"],["-87.67659978","42.02125566"],["-87.6762845","42.021146"],["-87.67588842","42.02098195"],["-87.67555575","42.02080478"],["-87.67513325","42.02057316"],["-87.67473773","42.02035518"],["-87.67448615","42.02020544"],["-87.67388248","42.01986342"],["-87.67344811","42.01951021"],["-87.67289245","42.01906322"]]},"properties":{"route_id":"Y","route_color":"F9E300"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.672892","42.019063"]},"properties":{"name":"Howard","stop_id":"30175","route_id":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.74722084","42.02624348"]},"properties":{"name":"Oakton-Skokie","stop_id":"30297","route_id":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.751919","42.038951"]},"properties":{"name":"Dempster-Skokie","stop_id":"30026","route_id":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.751919","42.038951"]},"properties":{"name":"Dempster-Skokie","stop_id":"30027","route_id":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.74722084","42.02624348"]},"properties":{"name":"Oakton-Skokie","stop_id":"30298","route_id":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.672892","42.019063"]},"properties":{"name":"Howard","stop_id":"30176","route_id":"Y"}},{"type":"Feature","geometry":{"type":"LineString","coordinates":[["-87.90422307","41.97766526"],["-87.9023365","41.97943479"],["-87.90195088","41.97980091"],["-87.90170306","41.9800246"],["-87.9014826","41.9802484"],["-87.90128985","41.98042125"],["-87.90097264","41.98078762"],["-87.90057263","41.98125579"],["-87.89994061","41.98163118"],["-87.89915937","41.98181202"],["-87.89842043","41.98180922"],["-87.89777763","41.98175573"],["-87.89713287","41.98173823"],["-87.896584","41.98167389"],["-87.89627341","41.98158624"],["-87.89601268","41.98146743"],["-87.89576232","41.98131848"],["-87.8956234","41.98118715"],["-87.89561945","41.98118342"],["-87.89382638","41.97964711"],["-87.89279035","41.97870625"],["-87.89170352","41.97778651"],["-87.89148139","41.97762588"],["-87.89123632","41.97748896"],["-87.89095022","41.97735528"],["-87.89065488","41.97724196"],["-87.89030923","41.97715563"],["-87.8899316","41.97708279"],["-87.88959478","41.97703729"],["-87.88926779","41.97703263"],["-87.88902049","41.97703167"],["-87.88900711","41.97703162"],["-87.88874734","41.97704421"],["-87.88840075","41.97709386"],["-87.88804941","41.97717069"],["-87.88771699","41.97727746"],["-87.88747219","41.97736761"],["-87.88725507","41.97746614"],["-87.88550783","41.97822948"],["-87.87874407","41.98097833"],["-87.87873837","41.98098062"],["-87.8757005","41.98223372"],["-87.87462728","41.98266271"],["-87.87434443","41.98277299"],["-87.87407849","41.98284001"],["-87.87363784","41.98297442"],["-87.87317262","41.9830654"],["-87.8727574","41.98312563"],["-87.87236728","41.98315501"],["-87.87193564","41.98319041"],["-87.87139015","41.98320978"],["-87.8709317","41.98321113"],["-87.87032594","41.98323345"],["-87.8687661","41.98326429"],["-87.86632688","41.98329772"],["-87.86395388","41.98334993"],["-87.861298","41.98344006"],["-87.8593877","41.98350729"],["-87.85668585","41.98362187"],["-87.85359632","41.9837457"],["-87.85238162","41.98377187"],["-87.85066734","41.98378833"],["-87.84814326","41.98388126"],["-87.84567595","41.98397597"],["-87.84477368","41.983978"],["-87.84339125","41.98403069"],["-87.84185692","41.98409444"],["-87.84021829","41.98418927"],["-87.83802598","41.98429406"],["-87.83678627","41.98434011"],["-87.83561233","41.98439531"],["-87.83421847","41.98446709"],["-87.83275535","41.98453653"],["-87.83115853","41.9845732"],["-87.82959146","41.98454796"],["-87.82833859","41.9845057"],["-87.82684424","41.98443479"],["-87.8252764","41.984313"],["-87.82404903","41.98416283"],["-87.82300315","41.98403642"],["-87.82178963","41.98388859"],["-87.8207531","41.98374843"],["-87.81948899","41.98357507"],["-87.81860703","41.98344163"],["-87.81772771","41.98325962"],["-87.81684857","41.9830564"],["-87.81594021","41.98283318"],["-87.81527964","41.9826579"],["-87.81469869","41.98253582"],["-87.81420362","41.98245547"],["-87.81355173","41.98234914"],["-87.81303479","41.98230775"],["-87.81248078","41.98228226"],["-87.81112287","41.98228988"],["-87.80984335","41.98231392"],["-87.80889493","41.98232337"],["-87.8071845","41.98233996"],["-87.80605743","41.9823467"],["-87.80306574","41.98236389"],["-87.80106696","41.98238323"],["-87.79876173","41.98239634"],["-87.79403307","41.98243139"],["-87.79065177","41.98246072"],["-87.78792307","41.98247756"],["-87.78712483","41.98248568"],["-87.78650615","41.98249762"],["-87.78597932","41.98250106"],["-87.7855405","41.9824811"],["-87.78516166","41.98244654"],["-87.78468736","41.98237579"],["-87.78420139","41.98226925"],["-87.78364398","41.9821177"],["-87.78306725","41.98189161"],["-87.78252269","41.98163888"],["-87.78175231","41.98119449"],["-87.78082689","41.98068086"],["-87.77983018","41.98010733"],["-87.77838178","41.97927953"],["-87.77701486","41.97852487"],["-87.77523686","41.97751144"],["-87.77368309","41.9766329"],["-87.77192957","41.97563187"],["-87.76943998","41.97421161"],["-87.76796766","41.97338559"],["-87.7672231","41.97298493"],["-87.76623882","41.97243422"],["-87.76571754","41.97216492"],["-87.76534488","41.972008"],["-87.7651296","41.9719139"],["-87.76471474","41.97175468"],["-87.76429716","41.97161448"],["-87.76370961","41.97145529"],["-87.76320203","41.97134533"],["-87.76268371","41.97121944"],["-87.76209485","41.97107385"],["-87.76148982","41.97087855"],["-87.76089228","41.97063414"],["-87.76057217","41.970497"],["-87.76012628","41.97030588"],["-87.75969831","41.97007631"],["-87.75918142","41.96979339"],["-87.75856855","41.96943777"],["-87.75738335","41.96876303"],["-87.75640013","41.96819535"],["-87.75586289","41.96789249"],["-87.7553071","41.9675824"],["-87.75466243","41.96721945"],["-87.75396379","41.96682287"],["-87.75332239","41.96645279"],["-87.75261457","41.96601566"],["-87.75218305","41.96573239"],["-87.75163101","41.96536513"],["-87.7508583","41.96477624"],["-87.74999672","41.96432299"],["-87.74975216","41.96419073"],["-87.74951064","41.96407516"],["-87.74924682","41.96395471"],["-87.74891612","41.96381963"],["-87.74869672","41.96372799"],["-87.74837212","41.96362391"],["-87.74802209","41.96350778"],["-87.74758941","41.9633555"],["-87.74698783","41.96317377"],["-87.74655489","41.96305007"],["-87.74611251","41.96291203"],["-87.74576899","41.96278402"],["-87.74546371","41.96266096"],["-87.74525517","41.96256077"],["-87.74502219","41.96243002"],["-87.74476812","41.96229294"],["-87.74455868","41.96216084"],["-87.74433023","41.96201436"],["-87.74409555","41.96185117"],["-87.74388319","41.96169048"],["-87.74361697","41.96148663"],["-87.7434292","41.96133034"],["-87.74326413","41.96117499"],["-87.74300083","41.96097563"],["-87.74274433","41.96075754"],["-87.74250999","41.96055862"],["-87.7421455","41.9602828"],["-87.74169273","41.95999823"],["-87.74121429","41.95970079"],["-87.74074034","41.95940681"],["-87.73724475","41.95742674"],["-87.73594259","41.9567037"],["-87.73446564","41.95595039"],["-87.73272936","41.95495036"],["-87.73043118","41.95364244"],["-87.72917727","41.95294026"],["-87.7279785","41.95226795"],["-87.72632123","41.95131999"],["-87.72547559","41.95084845"],["-87.7235679","41.94974946"],["-87.72301657","41.94943617"],["-87.72240307","41.94910186"],["-87.72180805","41.94880866"],["-87.72154734","41.94868772"],["-87.72121653","41.94854136"],["-87.72098264","41.94844479"],["-87.72073366","41.94832742"],["-87.72042659","41.94820352"],["-87.7201196","41.94805517"],["-87.71991961","41.94795582"],["-87.71971864","41.9478395"],["-87.71949643","41.94767938"],["-87.71927823","41.94751191"],["-87.7190993","41.9473601"],["-87.71891025","41.94720022"],["-87.71879031","41.9470638"],["-87.71867663","41.94693932"],["-87.7185006","41.94666205"],["-87.71830839","41.94640852"],["-87.71813588","41.94609791"],["-87.71789414","41.94568689"],["-87.71770584","41.94535953"],["-87.71749566","41.94498441"],["-87.71726678","41.94456393"],["-87.71703132","41.94416484"],["-87.71680196","41.94379438"],["-87.71664773","41.9435744"],["-87.71652181","41.94339744"],["-87.71636079","41.9432203"],["-87.7161683","41.94299773"],["-87.71593422","41.94278684"],["-87.71562291","41.94255402"],["-87.71529387","41.94230479"],["-87.71502783","41.94213204"],["-87.71473025","41.94195581"],["-87.714523","41.94185397"],["-87.71427822","41.94172984"],["-87.71393553","41.94156118"],["-87.7136109","41.94142559"],["-87.71328652","41.94126566"],["-87.71299484","41.94109375"],["-87.71278477","41.9409101"],["-87.7125754","41.94065346"],["-87.71247951","41.94045827"],["-87.7124174","41.94014159"],["-87.71239433","41.93926454"],["-87.71235935","41.93813167"],["-87.71230825","41.93676531"],["-87.71224675","41.93457512"],["-87.71219757","41.9324216"],["-87.71216834","41.93223381"],["-87.71214229","41.93207578"],["-87.71206089","41.93193804"],["-87.71192413","41.9318206"],["-87.71179623","41.93173753"],["-87.71159842","41.93159394"],["-87.71032044","41.93083019"],["-87.70854139","41.92972804"],["-87.70734983","41.9289952"],["-87.70692193","41.92869169"],["-87.70639049","41.92833103"],["-87.70593901","41.92795889"],["-87.70555124","41.92760498"],["-87.70529803","41.92737105"],["-87.70499733","41.92709513"],["-87.70470449","41.92683117"],["-87.70437168","41.92657296"],["-87.70395236","41.92626704"],["-87.70202759","41.92505956"],["-87.69994294","41.92382124"],["-87.69823041","41.92277446"],["-87.6968898","41.92193917"],["-87.69406207","41.92023781"],["-87.69112836","41.91846597"],["-87.68896757","41.91714804"],["-87.68736438","41.91615743"],["-87.68522081","41.91476683"],["-87.6838186","41.91386207"],["-87.68209218","41.91273517"],["-87.6809934","41.91203663"],["-87.67927753","41.91091761"],["-87.67743665","41.90974379"],["-87.67572041","41.90860012"],["-87.67362789","41.90725858"],["-87.67103571","41.90560312"],["-87.67063535","41.90537685"],["-87.67014285","41.905138"],["-87.66900001","41.9046515"],["-87.66827594","41.90440343"],["-87.66649607","41.90335508"],["-87.6659264","41.9029715"],["-87.66523689","41.90252066"],["-87.66417013","41.90184244"],["-87.66357448","41.90146211"],["-87.66258694","41.90082394"],["-87.66162232","41.90022026"],["-87.66090145","41.8997448"],["-87.65986888","41.89909693"],["-87.65878563","41.89839501"],["-87.65781427","41.89777385"],["-87.65671703","41.89705301"],["-87.6557968","41.896444"],["-87.65521428","41.89607524"],["-87.65484577","41.89585023"],["-87.65380031","41.89520191"],["-87.65284748","41.89459569"],["-87.65192905","41.89397752"],["-87.65044316","41.8930241"],["-87.64942295","41.8923691"],["-87.64858589","41.89184118"],["-87.64757831","41.89118929"],["-87.64677726","41.89066691"],["-87.64571582","41.88996962"],["-87.64505612","41.88951828"],["-87.64444378","41.88909932"],["-87.64335336","41.88830148"],["-87.64265496","41.88778648"],["-87.64195886","41.8872746"],["-87.6411946","41.88671255"],["-87.64085444","41.88646233"],["-87.64057509","41.88625684"],["-87.64000752","41.88583932"],["-87.63993759","41.88579098"],["-87.63984909","41.88575056"],["-87.63969773","41.88573105"],["-87.63944319","41.88570262"],["-87.63815039","41.88570777"],["-87.63605729","41.88571607"],["-87.63391317","41.88572453"],["-87.63284572","41.88573014"],["-87.63203975","41.88573666"],["-87.63088602","41.88573698"],["-87.63019852","41.88573752"],["-87.63011395","41.88573771"],["-87.62992165","41.88573816"],["-87.62981629","41.8857384"],["-87.6297528","41.88573324"],["-87.62970436","41.88572294"],["-87.62966029","41.88570782"],["-87.62958341","41.88567767"],["-87.62952469","41.88563306"],["-87.629478","41.88557083"],["-87.6294706","41.8855151"],["-87.6294674","41.88546497"],["-87.62946559","41.88536911"],["-87.62944006","41.88316442"],["-87.62942377","41.88212792"],["-87.62941973","41.88200294"],["-87.62939844","41.88134486"],["-87.62937948","41.88075857"],["-87.6293777","41.88070346"],["-87.6293387","41.87949755"],["-87.62932376","41.87903553"],["-87.62931371","41.87873039"],["-87.62929622","41.87819956"],["-87.62929566","41.87818252"],["-87.62925296","41.87688614"],["-87.62925155","41.87684338"],["-87.62924018","41.87649829"],["-87.62923386","41.87630626"],["-87.62922078","41.87597688"],["-87.62922668","41.87586118"],["-87.62928578","41.87574063"],["-87.62942065","41.87566546"],["-87.629548","41.87562864"],["-87.62969028","41.87560828"],["-87.63172208","41.87556763"],["-87.63362557","41.87556862"],["-87.63729877","41.87560396"],["-87.64098422","41.87553891"],["-87.64190784","41.87551262"],["-87.64710038","41.87552181"],["-87.64964223","41.87551621"],["-87.65039824","41.87547711"],["-87.6517952","41.87546555"],["-87.65375545","41.87559876"],["-87.65584254","41.87577926"],["-87.65680567","41.87583495"],["-87.65697321","41.87584685"],["-87.65738563","41.87587613"],["-87.65786288","41.87590034"],["-87.65820813","41.87589648"],["-87.65863314","41.87589534"],["-87.65898051","41.87588285"],["-87.65934444","41.87588083"],["-87.65945551","41.87588563"],["-87.66018348","41.87587122"],["-87.66499024","41.8758102"],["-87.66658131","41.87577209"],["-87.66753107","41.87576183"],["-87.66886443","41.87573458"],["-87.67275361","41.87565478"],["-87.67335924","41.87565112"],["-87.67394588","41.87563543"],["-87.67645141","41.87560929"],["-87.68026795","41.87558079"],["-87.68612887","41.87554513"],["-87.68702777","41.87553828"],["-87.68843451","41.87552957"],["-87.69103474","41.87549168"],["-87.69147747","41.87547164"],["-87.69232945","41.87546985"],["-87.69601713","41.87540916"],["-87.6967297","41.8753958"],["-87.69778011","41.87539819"],["-87.6983062","41.87537966"],["-87.69877816","41.87535606"],["-87.69916409","41.87532961"],["-87.69960428","41.87529631"],["-87.70000302","41.87526277"],["-87.70043378","41.87521512"],["-87.70081346","41.87517672"],["-87.70146776","41.87508503"],["-87.70394008","41.87472396"],["-87.7059783","41.87442551"],["-87.70619054","41.87439613"],["-87.70675973","41.87431285"],["-87.70719227","41.87425394"],["-87.70752062","41.8742086"],["-87.70785516","41.87417508"],["-87.70825601","41.87413248"],["-87.70944818","41.87409655"],["-87.71075699","41.87406477"],["-87.71252265","41.87406372"],["-87.71421605","41.87403752"],["-87.71561618","41.87401678"],["-87.71969659","41.87396796"],["-87.72421844","41.87391662"],["-87.72514248","41.87389324"],["-87.72562493","41.87388873"],["-87.72706597","41.87387513"],["-87.73026351","41.87382834"],["-87.73267888","41.87380801"],["-87.73318368","41.87377294"],["-87.73374878","41.87369577"],["-87.7342131","41.87360629"],["-87.73469989","41.87347451"],["-87.73503816","41.8733773"],["-87.73583565","41.87306096"],["-87.7362347","41.8728698"],["-87.73710898","41.87243132"],["-87.73745072","41.87229877"],["-87.7378715","41.87214307"],["-87.73816545","41.87206447"],["-87.73851312","41.87197201"],["-87.73879748","41.8719075"],["-87.73940709","41.87178811"],["-87.73976067","41.8717381"],["-87.74018033","41.87170256"],["-87.74065974","41.87168383"],["-87.74145757","41.87166673"],["-87.74380675","41.87163404"],["-87.74485378","41.87160406"],["-87.74517218","41.87160805"],["-87.74998706","41.8715572"],["-87.75335168","41.87149883"],["-87.75583938","41.8714878"],["-87.75674431","41.87148057"],["-87.75765251","41.87146156"],["-87.75833694","41.871432"],["-87.7589141","41.87141132"],["-87.75939703","41.87135011"],["-87.7597825","41.87125777"],["-87.76010835","41.8711345"],["-87.76043091","41.87102535"],["-87.76059861","41.87095785"],["-87.76091191","41.87082745"],["-87.76125693","41.87067364"],["-87.76166218","41.87048478"],["-87.76188373","41.87038926"],["-87.76211773","41.8703103"],["-87.76237066","41.87023144"],["-87.76252861","41.87019688"],["-87.76275917","41.87015089"],["-87.76301495","41.87010503"],["-87.7632927","41.87007106"],["-87.76353568","41.87004635"],["-87.76384473","41.87003845"],["-87.76432073","41.87004553"],["-87.76490354","41.8700979"],["-87.76738919","41.87031284"],["-87.76824934","41.87037599"],["-87.77014318","41.87048898"],["-87.77245732","41.87062817"],["-87.77395373","41.87071992"],["-87.77445094","41.87074239"],["-87.77678527","41.87088639"],["-87.77826234","41.8709782"],["-87.78251583","41.8713013"],["-87.78418295","41.87145056"],["-87.78723692","41.87172391"],["-87.79160215","41.87210797"],["-87.79279015","41.87221247"],["-87.79635444","41.87250685"],["-87.80151761","41.87296709"],["-87.80448335","41.87324883"],["-87.80568707","41.87336317"],["-87.80696087","41.87349005"],["-87.80900242","41.87369337"],["-87.8104465","41.87383927"],["-87.81079933","41.87384014"],["-87.81110022","41.87381971"],["-87.81124761","41.87381433"],["-87.81133522","41.87381113"],["-87.81148928","41.87379813"],["-87.81181169","41.87375544"],["-87.81197237","41.87373654"],["-87.81212688","41.87371835"],["-87.81241268","41.87368164"],["-87.81268443","41.87367258"],["-87.81286039","41.87365379"],["-87.81302153","41.8736297"],["-87.8132122","41.87361071"],["-87.81342516","41.87360243"],["-87.81370421","41.8735815"],["-87.81393342","41.87360686"],["-87.81410105","41.87365194"],["-87.81429797","41.87374146"],["-87.81447525","41.87381612"],["-87.81468199","41.87391307"],["-87.81483956","41.87398025"],["-87.81501702","41.87403276"],["-87.81523412","41.87407067"],["-87.81555999","41.87410168"],["-87.81590556","41.87414017"],["-87.81731778","41.87425731"]]},"properties":{"route_id":"Blue","route_color":"00A1DE"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.90422307","41.97766526"]},"properties":{"name":"O'Hare","stop_id":"30172","route_id":"Blue"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.859388","41.983507"]},"properties":{"name":"Rosemont","stop_id":"30160","route_id":"Blue"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.838028","41.984246"]},"properties":{"name":"Cumberland","stop_id":"30045","route_id":"Blue"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.8089","41.98227"]},"properties":{"name":"Harlem-O'Hare","stop_id":"30146","route_id":"Blue"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.760892","41.970634"]},"properties":{"name":"Jefferson Park","stop_id":"30248","route_id":"Blue"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.743574","41.961539"]},"properties":{"name":"Montrose-Blue","stop_id":"30260","route_id":"Blue"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.729229","41.952925"]},"properties":{"name":"Irving Park-Blue","stop_id":"30108","route_id":"Blue"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.71906","41.94738"]},"properties":{"name":"Addison-Blue","stop_id":"30240","route_id":"Blue"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.712359","41.938132"]},"properties":{"name":"Belmont-Blue","stop_id":"30013","route_id":"Blue"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.708541","41.929728"]},"properties":{"name":"Logan Square","stop_id":"30198","route_id":"Blue"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.69689","41.921939"]},"properties":{"name":"California-O'Hare","stop_id":"30112","route_id":"Blue"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.687364","41.916157"]},"properties":{"name":"Western-O'Hare","stop_id":"30130","route_id":"Blue"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.677437","41.909744"]},"properties":{"name":"Damen-O'Hare","stop_id":"30116","route_id":"Blue"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.666496","41.903355"]},"properties":{"name":"Division","stop_id":"30063","route_id":"Blue"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.655214","41.896075"]},"properties":{"name":"Chicago-Blue","stop_id":"30272","route_id":"Blue"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.647578","41.891189"]},"properties":{"name":"Grand-Blue","stop_id":"30096","route_id":"Blue"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.630886","41.885737"]},"properties":{"name":"Clark/Lake (Subway)","stop_id":"30374","route_id":"Blue"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.62944","41.883164"]},"properties":{"name":"Washington-Blue","stop_id":"30073","route_id":"Blue"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.629378","41.880703"]},"properties":{"name":"Monroe-Blue","stop_id":"30154","route_id":"Blue"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.629296","41.878183"]},"properties":{"name":"Jackson-Blue","stop_id":"30015","route_id":"Blue"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.631722","41.875568"]},"properties":{"name":"LaSalle","stop_id":"30262","route_id":"Blue"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.640984","41.875539"]},"properties":{"name":"Clinton-Blue","stop_id":"30085","route_id":"Blue"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.649707","41.875474"]},"properties":{"name":"UIC-Halsted","stop_id":"30069","route_id":"Blue"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.659458","41.87592"]},"properties":{"name":"Racine","stop_id":"30093","route_id":"Blue"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.673932","41.875706"]},"properties":{"name":"Illinois Medical District","stop_id":"30158","route_id":"Blue"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.688436","41.875478"]},"properties":{"name":"Western-Forest Park","stop_id":"30043","route_id":"Blue"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.70604","41.874341"]},"properties":{"name":"Kedzie-Homan","stop_id":"30049","route_id":"Blue"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.725663","41.873797"]},"properties":{"name":"Pulaski-Forest Park","stop_id":"30180","route_id":"Blue"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.745154","41.871574"]},"properties":{"name":"Cicero-Forest Park","stop_id":"30188","route_id":"Blue"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.776812","41.870851"]},"properties":{"name":"Austin-Blue","stop_id":"30002","route_id":"Blue"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.791602","41.872108"]},"properties":{"name":"Oak Park-Blue","stop_id":"30035","route_id":"Blue"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.806961","41.87349"]},"properties":{"name":"Harlem-Forest Park","stop_id":"30190","route_id":"Blue"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.817318","41.874257"]},"properties":{"name":"Forest Park","stop_id":"30077","route_id":"Blue"}},{"type":"Feature","geometry":{"type":"LineString","coordinates":[["-87.75669201","41.85177331"],["-87.75212987","41.85188373"],["-87.74921043","41.85187971"],["-87.74534201","41.85192472"],["-87.74252557","41.85196066"],["-87.73987495","41.85201667"],["-87.73903367","41.85203019"],["-87.73793437","41.852037"],["-87.7377646","41.85204863"],["-87.73760908","41.85206926"],["-87.73749171","41.85209903"],["-87.73736233","41.85213587"],["-87.73717128","41.85220355"],["-87.73693525","41.85232125"],["-87.73681257","41.85240816"],["-87.73658944","41.85259609"],["-87.73615394","41.85308008"],["-87.73591027","41.85332894"],["-87.7357996","41.85340877"],["-87.73567471","41.85347601"],["-87.73555222","41.85354148"],["-87.73538492","41.85361279"],["-87.73521416","41.85366121"],["-87.73509438","41.85369274"],["-87.73496035","41.85371527"],["-87.734781","41.85372863"],["-87.73460439","41.8537339"],["-87.73326366","41.85375069"],["-87.7299506","41.85381413"],["-87.72735966","41.85386659"],["-87.72593292","41.85387513"],["-87.72432673","41.85385683"],["-87.7230334","41.85386723"],["-87.72014053","41.85391225"],["-87.71670508","41.85394566"],["-87.71488026","41.85399196"],["-87.70977033","41.85404634"],["-87.70542796","41.85413059"],["-87.70425602","41.8541481"],["-87.70231216","41.85417714"],["-87.70115845","41.85419435"],["-87.698303","41.85424768"],["-87.69482291","41.85427963"],["-87.68851587","41.85438379"],["-87.68517922","41.85439684"],["-87.68321727","41.85442836"],["-87.68290639","41.8544335"],["-87.68234468","41.85444237"],["-87.6759741","41.85451486"],["-87.67460505","41.85453918"],["-87.67357306","41.85455732"],["-87.66995494","41.85459915"],["-87.6698946","41.8546043"],["-87.66981063","41.85461811"],["-87.66975318","41.85462767"],["-87.66969142","41.85464519"],["-87.66964104","41.8546633"],["-87.66957016","41.85469148"],["-87.6695219","41.85471362"],["-87.66947557","41.85473711"],["-87.6693645","41.85481233"],["-87.6693037","41.85486036"],["-87.66923386","41.85493032"],["-87.6691906","41.85498944"],["-87.66916882","41.85504122"],["-87.6691424","41.85509759"],["-87.66911663","41.85517482"],["-87.66910742","41.85521215"],["-87.66909742","41.85532534"],["-87.66916012","41.85790771"],["-87.6692158","41.86008742"],["-87.6692443","41.86102854"],["-87.66929296","41.86279401"],["-87.66934859","41.86480845"],["-87.66942032","41.86673787"],["-87.66945448","41.86807872"],["-87.66948166","41.86914596"],["-87.66949647","41.86972719"],["-87.66954323","41.871563"],["-87.66964332","41.87514972"],["-87.66970113","41.87542651"],["-87.66971183","41.87574638"],["-87.669736","41.87692415"],["-87.6697543","41.87754676"],["-87.66976043","41.87776115"],["-87.66976579","41.87780051"],["-87.66977539","41.87786579"],["-87.66978783","41.87790326"],["-87.66980406","41.877947"],["-87.66982665","41.877997"],["-87.66985884","41.87804802"],["-87.66994431","41.87817028"],["-87.66999986","41.87826447"],["-87.67003784","41.87836466"],["-87.6700557","41.87848187"],["-87.67005631","41.87857457"],["-87.67005769","41.87892634"],["-87.67011915","41.88058204"],["-87.67018707","41.88274702"],["-87.6701348","41.8830644"],["-87.67009644","41.88341062"],["-87.67011998","41.88399353"],["-87.67013807","41.88438858"],["-87.67014369","41.88455986"],["-87.67013129","41.88468683"],["-87.670113","41.88480355"],["-87.67006166","41.88488097"],["-87.67001174","41.88494259"],["-87.66989454","41.88506385"],["-87.66978668","41.88512951"],["-87.66963444","41.88519768"],["-87.66942867","41.88524264"],["-87.66695094","41.8853114"],["-87.66516384","41.88535112"],["-87.66414329","41.8853774"],["-87.66312289","41.88538934"],["-87.66147945","41.88543343"],["-87.65834625","41.88548307"],["-87.65672702","41.88550217"],["-87.65558664","41.88553482"],["-87.65310951","41.88556023"],["-87.65212993","41.88557676"],["-87.65187374","41.88558108"],["-87.65087986","41.88560403"],["-87.64972128","41.88562214"],["-87.64850601","41.88564568"],["-87.64735515","41.88566382"],["-87.64633819","41.8856789"],["-87.64506122","41.88569434"],["-87.64394131","41.88570685"],["-87.64279942","41.88570247"],["-87.6417713","41.88570342"],["-87.63883807","41.88570503"],["-87.63719937","41.88571154"],["-87.63515169","41.88571964"],["-87.63391317","41.88572453"],["-87.63284572","41.88573014"],["-87.63203975","41.88573666"],["-87.63088602","41.88573698"],["-87.63019852","41.88573752"],["-87.63011395","41.88573771"],["-87.62992165","41.88573816"],["-87.62981629","41.8857384"],["-87.62947821","41.88573919"],["-87.62887179","41.88574059"],["-87.62783518","41.88574041"],["-87.62682986","41.88573881"],["-87.6266122","41.88573846"],["-87.62655437","41.88573625"],["-87.62650323","41.88573298"],["-87.62642067","41.88572251"],["-87.62634684","41.8856894"],["-87.62630227","41.88565825"],["-87.62626769","41.88561777"],["-87.62625295","41.88557002"],["-87.62625476","41.88552136"],["-87.62625673","41.88534271"],["-87.62622211","41.8844349"],["-87.62615617","41.8820309"],["-87.6260979","41.87951022"],["-87.62605379","41.87830696"],["-87.62603392","41.87696579"],["-87.62634913","41.87696048"],["-87.62649605","41.8769593"],["-87.62756718","41.87693211"],["-87.62820914","41.87690834"],["-87.62925296","41.87688614"],["-87.63173383","41.87685534"],["-87.63262638","41.87684887"],["-87.63337545","41.8768463"],["-87.63344863","41.87685865"],["-87.63352807","41.87688058"],["-87.63358516","41.87690713"],["-87.63364522","41.87695275"],["-87.63369311","41.8770628"],["-87.63368645","41.87726125"],["-87.63373998","41.87872328"],["-87.63378257","41.88014092"],["-87.63384491","41.88143957"],["-87.63385353","41.88269502"],["-87.63388906","41.88440562"],["-87.63391317","41.88572453"],["-87.63515169","41.88571964"],["-87.63719937","41.88571154"],["-87.63883807","41.88570503"],["-87.6417713","41.88570342"],["-87.64279942","41.88570247"],["-87.64394131","41.88570685"],["-87.64506122","41.88569434"],["-87.64633819","41.8856789"],["-87.64735515","41.88566382"],["-87.64850601","41.88564568"],["-87.64972128","41.88562214"],["-87.65087986","41.88560403"],["-87.65187374","41.88558108"],["-87.65212993","41.88557676"],["-87.65310951","41.88556023"],["-87.65558664","41.88553482"],["-87.65672702","41.88550217"],["-87.65834625","41.88548307"],["-87.66147945","41.88543343"],["-87.66312289","41.88538934"],["-87.66414329","41.8853774"],["-87.66516384","41.88535112"],["-87.66695094","41.8853114"],["-87.66942867","41.88524264"],["-87.66963444","41.88519768"],["-87.66978668","41.88512951"],["-87.66989454","41.88506385"],["-87.67001174","41.88494259"],["-87.67006166","41.88488097"],["-87.670113","41.88480355"],["-87.67013129","41.88468683"],["-87.67014369","41.88455986"],["-87.67013807","41.88438858"],["-87.67011998","41.88399353"],["-87.67009644","41.88341062"],["-87.6701348","41.8830644"],["-87.67018707","41.88274702"],["-87.67011915","41.88058204"],["-87.67005769","41.87892634"],["-87.67005631","41.87857457"],["-87.6700557","41.87848187"],["-87.67003784","41.87836466"],["-87.66999986","41.87826447"],["-87.66994431","41.87817028"],["-87.66985884","41.87804802"],["-87.66982665","41.877997"],["-87.66980406","41.877947"],["-87.66978783","41.87790326"],["-87.66977539","41.87786579"],["-87.66976579","41.87780051"],["-87.66976043","41.87776115"],["-87.6697543","41.87754676"],["-87.669736","41.87692415"],["-87.66971183","41.87574638"],["-87.66970113","41.87542651"],["-87.66964332","41.87514972"],["-87.66954323","41.871563"],["-87.66949647","41.86972719"],["-87.66948166","41.86914596"],["-87.66945448","41.86807872"],["-87.66942032","41.86673787"],["-87.66934859","41.86480845"],["-87.66929296","41.86279401"],["-87.6692443","41.86102854"],["-87.6692158","41.86008742"],["-87.66916012","41.85790771"],["-87.66909742","41.85532534"],["-87.66910742","41.85521215"],["-87.66911663","41.85517482"],["-87.6691424","41.85509759"],["-87.66916882","41.85504122"],["-87.6691906","41.85498944"],["-87.66923386","41.85493032"],["-87.6693037","41.85486036"],["-87.6693645","41.85481233"],["-87.66947557","41.85473711"],["-87.6695219","41.85471362"],["-87.66957016","41.85469148"],["-87.66964104","41.8546633"],["-87.66969142","41.85464519"],["-87.66975318","41.85462767"],["-87.66981063","41.85461811"],["-87.6698946","41.8546043"],["-87.66995494","41.85459915"],["-87.67357306","41.85455732"],["-87.67460505","41.85453918"],["-87.6759741","41.85451486"],["-87.68234468","41.85444237"],["-87.68290639","41.8544335"],["-87.68321727","41.85442836"],["-87.68517922","41.85439684"],["-87.68851587","41.85438379"],["-87.69482291","41.85427963"],["-87.698303","41.85424768"],["-87.70115845","41.85419435"],["-87.70231216","41.85417714"],["-87.70425602","41.8541481"],["-87.70542796","41.85413059"],["-87.70977033","41.85404634"],["-87.71488026","41.85399196"],["-87.71670508","41.85394566"],["-87.72014053","41.85391225"],["-87.7230334","41.85386723"],["-87.72432673","41.85385683"],["-87.72593292","41.85387513"],["-87.72735966","41.85386659"],["-87.7299506","41.85381413"],["-87.73326366","41.85375069"],["-87.73460439","41.8537339"],["-87.734781","41.85372863"],["-87.73496035","41.85371527"],["-87.73509438","41.85369274"],["-87.73521416","41.85366121"],["-87.73538492","41.85361279"],["-87.73555222","41.85354148"],["-87.73567471","41.85347601"],["-87.7357996","41.85340877"],["-87.73591027","41.85332894"],["-87.73615394","41.85308008"],["-87.73658944","41.85259609"],["-87.73681257","41.85240816"],["-87.73693525","41.85232125"],["-87.73717128","41.85220355"],["-87.73736233","41.85213587"],["-87.73749171","41.85209903"],["-87.73760908","41.85206926"],["-87.7377646","41.85204863"],["-87.73793437","41.852037"],["-87.73903367","41.85203019"],["-87.73987495","41.85201667"],["-87.74252557","41.85196066"],["-87.74534201","41.85192472"],["-87.74921043","41.85187971"],["-87.75212987","41.85188373"],["-87.75669201","41.85177331"]]},"properties":{"route_id":"Pink","route_color":"E27EA6"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.75669201","41.85177331"]},"properties":{"name":"54th/Cermak","stop_id":"30113","route_id":"Pink"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.745336","41.85182"]},"properties":{"name":"Cicero-Cermak","stop_id":"30082","route_id":"Pink"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.733258","41.853751"]},"properties":{"name":"Kostner","stop_id":"30117","route_id":"Pink"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.724311","41.853732"]},"properties":{"name":"Pulaski-Cermak","stop_id":"30028","route_id":"Pink"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.714842","41.853839"]},"properties":{"name":"Central Park","stop_id":"30151","route_id":"Pink"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.705408","41.853964"]},"properties":{"name":"Kedzie-Cermak","stop_id":"30201","route_id":"Pink"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.694774","41.854109"]},"properties":{"name":"California-Cermak","stop_id":"30086","route_id":"Pink"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.685129","41.854225"]},"properties":{"name":"Western-Cermak","stop_id":"30143","route_id":"Pink"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.675975","41.854517"]},"properties":{"name":"Damen-Cermak","stop_id":"30040","route_id":"Pink"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.669147","41.857908"]},"properties":{"name":"18th","stop_id":"30161","route_id":"Pink"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.66953","41.871551"]},"properties":{"name":"Polk","stop_id":"30199","route_id":"Pink"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.666969","41.885269"]},"properties":{"name":"Ashland-Lake","stop_id":"30032","route_id":"Pink"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.65212993","41.88557676"]},"properties":{"name":"Morgan","stop_id":"30295","route_id":"Pink"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.641782","41.885678"]},"properties":{"name":"Clinton-Green","stop_id":"30221","route_id":"Pink"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.630886","41.885737"]},"properties":{"name":"Clark/Lake (Elevated)","stop_id":"30074","route_id":"Pink"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.627835","41.88574"]},"properties":{"name":"State/Lake","stop_id":"30050","route_id":"Pink"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.626149","41.884431"]},"properties":{"name":"Randolph/Wabash","stop_id":"30039","route_id":"Pink"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.626098","41.882023"]},"properties":{"name":"Madison/Wabash","stop_id":"30124","route_id":"Pink"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.626037","41.879507"]},"properties":{"name":"Adams/Wabash","stop_id":"30132","route_id":"Pink"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.628196","41.876862"]},"properties":{"name":"Harold Washington Library","stop_id":"30166","route_id":"Pink"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.631739","41.8768"]},"properties":{"name":"LaSalle/Van Buren","stop_id":"30031","route_id":"Pink"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.63374","41.878723"]},"properties":{"name":"Quincy/Wells","stop_id":"30007","route_id":"Pink"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.63378","41.882695"]},"properties":{"name":"Washington/Wells","stop_id":"30141","route_id":"Pink"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.641782","41.885678"]},"properties":{"name":"Clinton-Green","stop_id":"30222","route_id":"Pink"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.65212993","41.88557676"]},"properties":{"name":"Morgan","stop_id":"30296","route_id":"Pink"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.666969","41.885269"]},"properties":{"name":"Ashland-Lake","stop_id":"30033","route_id":"Pink"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.66953","41.871551"]},"properties":{"name":"Polk","stop_id":"30200","route_id":"Pink"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.669147","41.857908"]},"properties":{"name":"18th","stop_id":"30162","route_id":"Pink"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.675975","41.854517"]},"properties":{"name":"Damen-Cermak","stop_id":"30041","route_id":"Pink"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.685129","41.854225"]},"properties":{"name":"Western-Cermak","stop_id":"30144","route_id":"Pink"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.694774","41.854109"]},"properties":{"name":"California-Cermak","stop_id":"30087","route_id":"Pink"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.705408","41.853964"]},"properties":{"name":"Kedzie-Cermak","stop_id":"30202","route_id":"Pink"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.714842","41.853839"]},"properties":{"name":"Central Park","stop_id":"30152","route_id":"Pink"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.724311","41.853732"]},"properties":{"name":"Pulaski-Cermak","stop_id":"30029","route_id":"Pink"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.733258","41.853751"]},"properties":{"name":"Kostner","stop_id":"30118","route_id":"Pink"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.745336","41.85182"]},"properties":{"name":"Cicero-Cermak","stop_id":"30083","route_id":"Pink"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.75669201","41.85177331"]},"properties":{"name":"54th/Cermak","stop_id":"30114","route_id":"Pink"}},{"type":"Feature","geometry":{"type":"LineString","coordinates":[["-87.80317599","41.8868483"],["-87.80210503","41.88686474"],["-87.80135307","41.88688078"],["-87.80071507","41.88689439"],["-87.79992097","41.88691133"],["-87.79863161","41.88691971"],["-87.79794997","41.88692413"],["-87.79712937","41.88693563"],["-87.79643861","41.8869453"],["-87.79557037","41.88695746"],["-87.79449445","41.88697401"],["-87.79378335","41.88698752"],["-87.79245901","41.88701022"],["-87.79124302","41.88703921"],["-87.78956249","41.88706019"],["-87.78860218","41.887073"],["-87.78793601","41.88709877"],["-87.78619348","41.8871252"],["-87.78451294","41.88714611"],["-87.78366103","41.8871594"],["-87.78247596","41.88719422"],["-87.78100454","41.8872103"],["-87.77979639","41.88722763"],["-87.77856511","41.88723326"],["-87.7773724","41.88725643"],["-87.77613332","41.88726778"],["-87.77511096","41.88729174"],["-87.77413526","41.88729279"],["-87.77315945","41.88730539"],["-87.77189699","41.88733394"],["-87.77001512","41.88735366"],["-87.76901614","41.88736032"],["-87.76803269","41.88736127"],["-87.76741303","41.88738137"],["-87.76649922","41.88738843"],["-87.76564951","41.88738901"],["-87.7651315","41.88738675"],["-87.76399783","41.88741078"],["-87.76259599","41.88743854"],["-87.76077474","41.88744015"],["-87.75845818","41.88747541"],["-87.75780987","41.88750145"],["-87.75756213","41.88749442"],["-87.75726805","41.88747558"],["-87.75701278","41.88744537"],["-87.756773","41.88741524"],["-87.75650229","41.88737916"],["-87.75614678","41.88730215"],["-87.75573696","41.88723644"],["-87.7553116","41.88717644"],["-87.75498649","41.88716323"],["-87.75326849","41.88704462"],["-87.75161992","41.88695527"],["-87.75035051","41.88689676"],["-87.74870211","41.88679001"],["-87.7464577","41.88665705"],["-87.7454671","41.88659412"],["-87.7446984","41.88651935"],["-87.74469097","41.88651891"],["-87.74296029","41.88641604"],["-87.74129781","41.88631719"],["-87.74054285","41.88627229"],["-87.73805564","41.88613221"],["-87.73558548","41.88599339"],["-87.73431229","41.88592182"],["-87.73379933","41.88589298"],["-87.73311392","41.88585373"],["-87.73204302","41.88579238"],["-87.73113272","41.88574022"],["-87.72994393","41.8856721"],["-87.72925548","41.88563264"],["-87.72673838","41.88548835"],["-87.72624586","41.88546011"],["-87.72572894","41.88543046"],["-87.72540377","41.88541198"],["-87.72461673","41.88536774"],["-87.72296532","41.8852749"],["-87.72242129","41.88524431"],["-87.72155657","41.88519568"],["-87.72086821","41.88515696"],["-87.71995672","41.88510569"],["-87.71679907","41.88492058"],["-87.71652283","41.88490438"],["-87.71601049","41.88487433"],["-87.71529794","41.88483254"],["-87.71455175","41.88478878"],["-87.71414237","41.88476507"],["-87.71267935","41.88468613"],["-87.71207383","41.88465346"],["-87.71106319","41.88459891"],["-87.70934764","41.88450631"],["-87.70857442","41.88446456"],["-87.70744882","41.88439781"],["-87.70668493","41.88435251"],["-87.70615542","41.8843211"],["-87.7061164","41.88431879"],["-87.7056731","41.88429249"],["-87.7056037","41.88428837"],["-87.7041832","41.88420409"],["-87.70371351","41.88417422"],["-87.70277395","41.88411445"],["-87.70131213","41.88402145"],["-87.70129009","41.88402238"],["-87.70107699","41.88403141"],["-87.70062543","41.88403883"],["-87.70023187","41.88405778"],["-87.69952651","41.88407573"],["-87.69879828","41.88411221"],["-87.69786892","41.88413022"],["-87.69623422","41.88421953"],["-87.69511111","41.8842538"],["-87.69359283","41.88431479"],["-87.6926478","41.88435002"],["-87.69167192","41.88437351"],["-87.69075012","41.88440886"],["-87.68981272","41.88445568"],["-87.68765131","41.88455928"],["-87.68608679","41.88459676"],["-87.68404169","41.88468358"],["-87.68183398","41.88476945"],["-87.68043182","41.88483092"],["-87.67945575","41.88487166"],["-87.67775168","41.88492559"],["-87.6766516","41.88497717"],["-87.67579179","41.88500697"],["-87.67429682","41.88505626"],["-87.67308066","41.88510135"],["-87.67222078","41.88513691"],["-87.67081854","41.88520405"],["-87.66942867","41.88524264"],["-87.66695094","41.8853114"],["-87.66516384","41.88535112"],["-87.66414329","41.8853774"],["-87.66312289","41.88538934"],["-87.66147945","41.88543343"],["-87.65834625","41.88548307"],["-87.65672702","41.88550217"],["-87.65558664","41.88553482"],["-87.65310951","41.88556023"],["-87.65212993","41.88557676"],["-87.65187374","41.88558108"],["-87.65087986","41.88560403"],["-87.64972128","41.88562214"],["-87.64850601","41.88564568"],["-87.64735515","41.88566382"],["-87.64633819","41.8856789"],["-87.64506122","41.88569434"],["-87.64394131","41.88570685"],["-87.64279942","41.88570247"],["-87.6417713","41.88570342"],["-87.63883807","41.88570503"],["-87.63719937","41.88571154"],["-87.63515169","41.88571964"],["-87.63391317","41.88572453"],["-87.63284572","41.88573014"],["-87.63203975","41.88573666"],["-87.63088602","41.88573698"],["-87.63019852","41.88573752"],["-87.63011395","41.88573771"],["-87.62992165","41.88573816"],["-87.62981629","41.8857384"],["-87.62947821","41.88573919"],["-87.62887179","41.88574059"],["-87.62783518","41.88574041"],["-87.62682986","41.88573881"],["-87.6266122","41.88573846"],["-87.62655437","41.88573625"],["-87.62650323","41.88573298"],["-87.62642067","41.88572251"],["-87.62634684","41.8856894"],["-87.62630227","41.88565825"],["-87.62626769","41.88561777"],["-87.62625295","41.88557002"],["-87.62625476","41.88552136"],["-87.62625673","41.88534271"],["-87.62622211","41.8844349"],["-87.62615617","41.8820309"],["-87.6260979","41.87951022"],["-87.62605379","41.87830696"],["-87.62603392","41.87696579"],["-87.62597864","41.87569351"],["-87.62599768","41.8753822"],["-87.62601549","41.87526311"],["-87.62609975","41.87510333"],["-87.62616147","41.87499273"],["-87.626223","41.87489857"],["-87.62632326","41.87478409"],["-87.6264012","41.87469826"],["-87.6265125","41.87457974"],["-87.62658521","41.8744692"],["-87.62668033","41.87432182"],["-87.62673442","41.87421307"],["-87.62677631","41.87409633"],["-87.62679939","41.87399783"],["-87.62680602","41.87389511"],["-87.62679625","41.87378407"],["-87.62679265","41.87361141"],["-87.62671099","41.86997473"],["-87.62658989","41.86740496"],["-87.62656329","41.86573307"],["-87.62649959","41.86188825"],["-87.62647268","41.86016163"],["-87.62641799","41.85875871"],["-87.62645577","41.85838881"],["-87.62648841","41.85806932"],["-87.6264647","41.85646121"],["-87.62644477","41.8553772"],["-87.6264069","41.85331878"],["-87.6263388","41.85024346"],["-87.62632412","41.84955158"],["-87.62626548","41.84797975"],["-87.62625465","41.84747009"],["-87.62623007","41.84709832"],["-87.62615202","41.84432297"],["-87.62614713","41.84270015"],["-87.62612467","41.84186734"],["-87.62611445","41.84115543"],["-87.62600148","41.83827959"],["-87.62598202","41.8372178"],["-87.62592728","41.83494171"],["-87.62588147","41.83167802"],["-87.6258665","41.83097552"],["-87.62578286","41.82784882"],["-87.6257098","41.82478651"],["-87.62566812","41.82246139"],["-87.62563567","41.82214762"],["-87.62558984","41.82205118"],["-87.62554596","41.82198659"],["-87.62547356","41.82190991"],["-87.62531199","41.82183268"],["-87.62516282","41.8217865"],["-87.62504839","41.82176674"],["-87.62480647","41.82175572"],["-87.62442737","41.82176767"],["-87.62353858","41.82179077"],["-87.62146281","41.8218152"],["-87.62002213","41.82184164"],["-87.61974843","41.82182565"],["-87.61959276","41.82179133"],["-87.61947857","41.82175013"],["-87.61935519","41.82167551"],["-87.61926701","41.82158682"],["-87.61919544","41.82146879"],["-87.61916157","41.82133127"],["-87.61916377","41.82113357"],["-87.61915941","41.8209525"],["-87.61909221","41.81868901"],["-87.61903578","41.81646322"],["-87.61897875","41.81475314"],["-87.61892038","41.81270045"],["-87.61885824","41.81059549"],["-87.61882613","41.80920884"],["-87.6187677","41.80674763"],["-87.61870405","41.80648267"],["-87.61867351","41.80636576"],["-87.61863702","41.80621069"],["-87.61861927","41.80608908"],["-87.61860345","41.80579359"],["-87.61858076","41.80392454"],["-87.6185016","41.80209158"],["-87.61849305","41.80155635"],["-87.61844964","41.79932511"],["-87.61836426","41.79703553"],["-87.61833897","41.79567595"],["-87.61832411","41.79517665"],["-87.61827174","41.79329328"],["-87.61822686","41.79153426"],["-87.61814033","41.78930707"],["-87.61817634","41.78896541"],["-87.6181432","41.78746835"],["-87.61801415","41.78476622"],["-87.61800255","41.78380809"],["-87.61795512","41.78145683"],["-87.61793889","41.78035645"],["-87.61790246","41.78022135"],["-87.61781798","41.78014274"],["-87.61768601","41.78007094"],["-87.61750599","41.78005562"],["-87.61708834","41.78008851"],["-87.61554588","41.78012972"],["-87.61228846","41.78017247"],["-87.60970572","41.78024465"],["-87.60585742","41.78030877"]]},"properties":{"route_id":"G","route_color":"009B3A"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.803176","41.886848"]},"properties":{"name":"Harlem-Green","stop_id":"30003","route_id":"G"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.793783","41.886988"]},"properties":{"name":"Oak Park-Green","stop_id":"30263","route_id":"G"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.783661","41.887159"]},"properties":{"name":"Ridgeland","stop_id":"30119","route_id":"G"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.774135","41.887293"]},"properties":{"name":"Austin-Green","stop_id":"30243","route_id":"G"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.76565","41.887389"]},"properties":{"name":"Central-Green","stop_id":"30054","route_id":"G"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.754986","41.887163"]},"properties":{"name":"Laramie","stop_id":"30135","route_id":"G"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.744698","41.886519"]},"properties":{"name":"Cicero-Green","stop_id":"30094","route_id":"G"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.725404","41.885412"]},"properties":{"name":"Pulaski-Green","stop_id":"30005","route_id":"G"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.716523","41.884904"]},"properties":{"name":"Conservatory","stop_id":"30291","route_id":"G"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.706155","41.884321"]},"properties":{"name":"Kedzie-Green","stop_id":"30207","route_id":"G"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.696234","41.88422"]},"properties":{"name":"California-Green","stop_id":"30265","route_id":"G"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.666969","41.885269"]},"properties":{"name":"Ashland-Lake","stop_id":"30032","route_id":"G"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.65212993","41.88557676"]},"properties":{"name":"Morgan","stop_id":"30295","route_id":"G"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.641782","41.885678"]},"properties":{"name":"Clinton-Green","stop_id":"30221","route_id":"G"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.630886","41.885737"]},"properties":{"name":"Clark/Lake (Elevated)","stop_id":"30074","route_id":"G"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.627835","41.88574"]},"properties":{"name":"State/Lake","stop_id":"30050","route_id":"G"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.626149","41.884431"]},"properties":{"name":"Randolph/Wabash","stop_id":"30039","route_id":"G"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.626098","41.882023"]},"properties":{"name":"Madison/Wabash","stop_id":"30124","route_id":"G"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.626037","41.879507"]},"properties":{"name":"Adams/Wabash","stop_id":"30132","route_id":"G"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.62659","41.867405"]},"properties":{"name":"Roosevelt (Elevated)","stop_id":"30081","route_id":"G"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.625826","41.831677"]},"properties":{"name":"35-Bronzeville-IIT","stop_id":"30214","route_id":"G"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.621371","41.821732"]},"properties":{"name":"Indiana","stop_id":"30059","route_id":"G"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.619021","41.816462"]},"properties":{"name":"43rd","stop_id":"30246","route_id":"G"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.618826","41.809209"]},"properties":{"name":"47th-Green","stop_id":"30210","route_id":"G"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.618487","41.80209"]},"properties":{"name":"51st","stop_id":"30025","route_id":"G"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.618327","41.795172"]},"properties":{"name":"Garfield-Green","stop_id":"30100","route_id":"G"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.615546","41.78013"]},"properties":{"name":"King Drive","stop_id":"30217","route_id":"G"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.605857","41.780309"]},"properties":{"name":"East 63rd-Cottage Grove","stop_id":"30139","route_id":"G"}},{"type":"Feature","geometry":{"type":"LineString","coordinates":[["-87.71314204","41.96792815"],["-87.71311517","41.96666667"],["-87.71311027","41.96643432"],["-87.71309863","41.96635333"],["-87.71308736","41.96629526"],["-87.71303368","41.96621493"],["-87.71297936","41.96615033"],["-87.71292015","41.96611498"],["-87.71280249","41.96607162"],["-87.71268108","41.96604693"],["-87.71255225","41.9660489"],["-87.71239867","41.96604562"],["-87.71218725","41.96605227"],["-87.71172598","41.9660609"],["-87.71107883","41.96607449"],["-87.71027448","41.96607489"],["-87.70884379","41.96609261"],["-87.7076281","41.96610814"],["-87.70645022","41.966116"],["-87.70399231","41.96613352"],["-87.70266764","41.96613817"],["-87.70165573","41.9661469"],["-87.70075244","41.96614669"],["-87.69953628","41.96615189"],["-87.69872867","41.96615934"],["-87.69789216","41.9661833"],["-87.69674932","41.9661984"],["-87.69502245","41.96620549"],["-87.69411113","41.96620995"],["-87.6914457","41.96623081"],["-87.69025501","41.9662432"],["-87.68946333","41.96625306"],["-87.68850261","41.96625005"],["-87.68718086","41.96628073"],["-87.68545377","41.96630911"],["-87.68398535","41.96632464"],["-87.68271469","41.96635317"],["-87.68159424","41.96636349"],["-87.68033964","41.96638257"],["-87.67863488","41.96641097"],["-87.67766444","41.96642211"],["-87.67740918","41.9664135"],["-87.67722097","41.9664029"],["-87.67695468","41.96637994"],["-87.67664886","41.96632102"],["-87.67638167","41.96623135"],["-87.67612751","41.96611556"],["-87.6758897","41.96596174"],["-87.67569677","41.96578912"],["-87.67557377","41.96564549"],["-87.6754447","41.96547085"],["-87.67539102","41.96536232"],["-87.67530397","41.96518896"],["-87.67524173","41.96503376"],["-87.67522864","41.96490982"],["-87.67521732","41.96476921"],["-87.67521396","41.96456866"],["-87.67520485","41.96433571"],["-87.67518991","41.96371139"],["-87.67516539","41.96175171"],["-87.6751308","41.96077151"],["-87.67505415","41.95798493"],["-87.67500717","41.95665782"],["-87.67497183","41.95513067"],["-87.67495574","41.95452314"],["-87.67490767","41.95392257"],["-87.67486587","41.95302284"],["-87.67485384","41.95202132"],["-87.6748355","41.95101358"],["-87.67479274","41.94958739"],["-87.6747647","41.9485915"],["-87.67473611","41.94702866"],["-87.67468326","41.94596259"],["-87.67465991","41.94513109"],["-87.67462997","41.94494035"],["-87.67457143","41.94473753"],["-87.67449996","41.94455131"],["-87.67441875","41.94438172"],["-87.674299","41.9442362"],["-87.67419466","41.94414269"],["-87.67404893","41.94404181"],["-87.6738586","41.94393352"],["-87.67367107","41.94386336"],["-87.67347708","41.94380031"],["-87.67334025","41.94376379"],["-87.67310771","41.94372672"],["-87.67289419","41.94370167"],["-87.67262952","41.94368586"],["-87.67233916","41.94368657"],["-87.67150019","41.94370197"],["-87.67088394","41.94370915"],["-87.66938411","41.94372669"],["-87.66748678","41.94376811"],["-87.66584659","41.94378241"],["-87.66508073","41.94378986"],["-87.66360956","41.94381226"],["-87.65909524","41.94390732"],["-87.65766575","41.94391083"],["-87.6560829","41.94393247"],["-87.65549572","41.94394092"],["-87.65521492","41.94394164"],["-87.65503","41.94392864"],["-87.65488029","41.94390393"],["-87.65469889","41.94385998"],["-87.65454315","41.94380189"],["-87.65441292","41.94374633"],["-87.65424813","41.94364054"],["-87.65409951","41.94351341"],["-87.65400478","41.94341995"],["-87.65391661","41.94330985"],["-87.65382221","41.94318542"],["-87.65374693","41.94306349"],["-87.65366549","41.94292007"],["-87.65360771","41.94280301"],["-87.65355471","41.94268597"],["-87.65351126","41.94257137"],["-87.65347497","41.94238297"],["-87.65345392","41.94217681"],["-87.65338049","41.93975075"],["-87.65337492","41.93938762"],["-87.65336788","41.93892875"],["-87.65336361","41.93865028"],["-87.65332582","41.93763218"],["-87.65330865","41.93716958"],["-87.65327514","41.93626663"],["-87.65326645","41.9360326"],["-87.65323493","41.93531994"],["-87.65321677","41.9349102"],["-87.65319648","41.93445211"],["-87.65313731","41.93311676"],["-87.65313086","41.9327315"],["-87.65309585","41.93217697"],["-87.65307037","41.93151468"],["-87.6530468","41.93090174"],["-87.65302372","41.93030173"],["-87.65299317","41.9295075"],["-87.65296222","41.92870278"],["-87.65295478","41.92841813"],["-87.65293544","41.92767809"],["-87.6529216","41.92714879"],["-87.65289134","41.92599125"],["-87.65287507","41.92536849"],["-87.65286584","41.92505137"],["-87.6528172","41.92352232"],["-87.65275988","41.9217182"],["-87.65274114","41.92112856"],["-87.65264431","41.91821657"],["-87.65263982","41.91808172"],["-87.65262488","41.91763256"],["-87.65260981","41.91717935"],["-87.65254835","41.91562579"],["-87.65250043","41.91405947"],["-87.65242186","41.91376522"],["-87.65234404","41.91361861"],["-87.65222841","41.91350708"],["-87.65207812","41.91338828"],["-87.65182737","41.913217"],["-87.65092623","41.91260086"],["-87.65016827","41.91203038"],["-87.64984873","41.91179737"],["-87.64971386","41.91171403"],["-87.64956621","41.91164476"],["-87.64948143","41.9116018"],["-87.6493901","41.91158004"],["-87.64920439","41.91152705"],["-87.64899947","41.91149989"],["-87.64883215","41.91149889"],["-87.64862688","41.91150474"],["-87.64791644","41.91151229"],["-87.64781239","41.91149988"],["-87.64768022","41.911459"],["-87.64755789","41.91138517"],["-87.64744848","41.91122027"],["-87.6474045","41.91112474"],["-87.64739069","41.91101257"],["-87.64737726","41.9108582"],["-87.64735677","41.91070715"],["-87.64733568","41.91061269"],["-87.64727679","41.91051094"],["-87.64717963","41.91044433"],["-87.6470949","41.91039665"],["-87.64696898","41.91036289"],["-87.6468177","41.9103384"],["-87.64664356","41.91033001"],["-87.646456","41.91033263"],["-87.64580383","41.91034174"],["-87.64522967","41.91034069"],["-87.64347882","41.9103632"],["-87.64254966","41.91038714"],["-87.64099977","41.91039701"],["-87.64037786","41.91040097"],["-87.63974615","41.91040499"],["-87.63930216","41.91040918"],["-87.6381392","41.91041896"],["-87.63797586","41.91040921"],["-87.63787123","41.91039245"],["-87.63771148","41.91034083"],["-87.63757044","41.91027089"],["-87.63746014","41.91020805"],["-87.63736257","41.91010844"],["-87.63729603","41.9099906"],["-87.63726856","41.90985888"],["-87.63726226","41.90972932"],["-87.63724926","41.9095076"],["-87.63722675","41.9087418"],["-87.63718162","41.90757577"],["-87.6371325","41.90606718"],["-87.63710856","41.90543378"],["-87.63701552","41.90381127"],["-87.63702361","41.90367742"],["-87.63700803","41.90333767"],["-87.63699391","41.90321957"],["-87.63694494","41.90311565"],["-87.63688076","41.90299437"],["-87.63682372","41.90292494"],["-87.63670958","41.90279184"],["-87.63659164","41.90265296"],["-87.63652727","41.90254895"],["-87.63648981","41.90245085"],["-87.63645623","41.9023499"],["-87.63646547","41.90220892"],["-87.63647039","41.90211108"],["-87.63650218","41.90202204"],["-87.63653046","41.90190132"],["-87.63658966","41.90177215"],["-87.6366575","41.90155668"],["-87.63668973","41.90142734"],["-87.63669869","41.90131226"],["-87.63670382","41.90119428"],["-87.63663663","41.90028716"],["-87.63663932","41.90007918"],["-87.63662211","41.89975187"],["-87.63657813","41.89891558"],["-87.636565","41.89866596"],["-87.63654244","41.89760965"],["-87.63654112","41.89737649"],["-87.63649236","41.8972553"],["-87.63640876","41.89714829"],["-87.63634017","41.8970788"],["-87.6362256","41.89698599"],["-87.63594666","41.89677417"],["-87.63583409","41.8966681"],["-87.635735","41.89654494"],["-87.635685","41.89645174"],["-87.63568316","41.89632785"],["-87.63564521","41.89542002"],["-87.63562832","41.89433604"],["-87.63559527","41.89327102"],["-87.63558019","41.89260631"],["-87.6355352","41.89146737"],["-87.63552647","41.89051207"],["-87.63548093","41.89030217"],["-87.63539908","41.89020638"],["-87.63532664","41.89012495"],["-87.63523992","41.8900701"],["-87.63507921","41.89001149"],["-87.63493301","41.8899701"],["-87.63475395","41.88993627"],["-87.63461577","41.88991178"],["-87.6344677","41.88988635"],["-87.63436376","41.88984038"],["-87.63424638","41.88978726"],["-87.63413677","41.88970196"],["-87.63407169","41.88962373"],["-87.63402006","41.88952193"],["-87.63399342","41.8894262"],["-87.63397336","41.88896793"],["-87.63395565","41.88706928"],["-87.63391317","41.88572453"],["-87.63388906","41.88440562"],["-87.63385353","41.88269502"],["-87.63384491","41.88143957"],["-87.63378257","41.88014092"],["-87.63373998","41.87872328"],["-87.63368645","41.87726125"],["-87.63369311","41.8770628"],["-87.63364522","41.87695275"],["-87.63358516","41.87690713"],["-87.63352807","41.87688058"],["-87.63344863","41.87685865"],["-87.63337545","41.8768463"],["-87.63262638","41.87684887"],["-87.63173383","41.87685534"],["-87.62925296","41.87688614"],["-87.62820914","41.87690834"],["-87.62756718","41.87693211"],["-87.62649605","41.8769593"],["-87.62634913","41.87696048"],["-87.62603392","41.87696579"],["-87.62605379","41.87830696"],["-87.6260979","41.87951022"],["-87.62615617","41.8820309"],["-87.62622211","41.8844349"],["-87.62625673","41.88534271"],["-87.62625476","41.88552136"],["-87.62625295","41.88557002"],["-87.62626769","41.88561777"],["-87.62630227","41.88565825"],["-87.62634684","41.8856894"],["-87.62642067","41.88572251"],["-87.62650323","41.88573298"],["-87.62655437","41.88573625"],["-87.6266122","41.88573846"],["-87.62682986","41.88573881"],["-87.62783518","41.88574041"],["-87.62887179","41.88574059"],["-87.62947821","41.88573919"],["-87.62981629","41.8857384"],["-87.62992165","41.88573816"],["-87.63011395","41.88573771"],["-87.63019852","41.88573752"],["-87.63088602","41.88573698"],["-87.63203975","41.88573666"],["-87.63284572","41.88573014"],["-87.63391317","41.88572453"],["-87.63395565","41.88706928"],["-87.63397336","41.88896793"],["-87.63399342","41.8894262"],["-87.63402006","41.88952193"],["-87.63407169","41.88962373"],["-87.63413677","41.88970196"],["-87.63424638","41.88978726"],["-87.63436376","41.88984038"],["-87.6344677","41.88988635"],["-87.63461577","41.88991178"],["-87.63475395","41.88993627"],["-87.63493301","41.8899701"],["-87.63507921","41.89001149"],["-87.63523992","41.8900701"],["-87.63532664","41.89012495"],["-87.63539908","41.89020638"],["-87.63548093","41.89030217"],["-87.63552647","41.89051207"],["-87.6355352","41.89146737"],["-87.63558019","41.89260631"],["-87.63559527","41.89327102"],["-87.63562832","41.89433604"],["-87.63564521","41.89542002"],["-87.63568316","41.89632785"],["-87.635685","41.89645174"],["-87.635735","41.89654494"],["-87.63583409","41.8966681"],["-87.63594666","41.89677417"],["-87.6362256","41.89698599"],["-87.63634017","41.8970788"],["-87.63640876","41.89714829"],["-87.63649236","41.8972553"],["-87.63654112","41.89737649"],["-87.63654244","41.89760965"],["-87.636565","41.89866596"],["-87.63657813","41.89891558"],["-87.63662211","41.89975187"],["-87.63663932","41.90007918"],["-87.63663663","41.90028716"],["-87.63670382","41.90119428"],["-87.63669869","41.90131226"],["-87.63668973","41.90142734"],["-87.6366575","41.90155668"],["-87.63658966","41.90177215"],["-87.63653046","41.90190132"],["-87.63650218","41.90202204"],["-87.63647039","41.90211108"],["-87.63646547","41.90220892"],["-87.63645623","41.9023499"],["-87.63648981","41.90245085"],["-87.63652727","41.90254895"],["-87.63659164","41.90265296"],["-87.63670958","41.90279184"],["-87.63682372","41.90292494"],["-87.63688076","41.90299437"],["-87.63694494","41.90311565"],["-87.63699391","41.90321957"],["-87.63700803","41.90333767"],["-87.63702361","41.90367742"],["-87.63701552","41.90381127"],["-87.63710856","41.90543378"],["-87.6371325","41.90606718"],["-87.63718162","41.90757577"],["-87.63722675","41.9087418"],["-87.63724926","41.9095076"],["-87.63726226","41.90972932"],["-87.63726856","41.90985888"],["-87.63729603","41.9099906"],["-87.63736257","41.91010844"],["-87.63746014","41.91020805"],["-87.63757044","41.91027089"],["-87.63771148","41.91034083"],["-87.63787123","41.91039245"],["-87.63797586","41.91040921"],["-87.6381392","41.91041896"],["-87.63930216","41.91040918"],["-87.63974615","41.91040499"],["-87.64037786","41.91040097"],["-87.64099977","41.91039701"],["-87.64254966","41.91038714"],["-87.64347882","41.9103632"],["-87.64522967","41.91034069"],["-87.64580383","41.91034174"],["-87.646456","41.91033263"],["-87.64664356","41.91033001"],["-87.6468177","41.9103384"],["-87.64696898","41.91036289"],["-87.6470949","41.91039665"],["-87.64717963","41.91044433"],["-87.64727679","41.91051094"],["-87.64733568","41.91061269"],["-87.64735677","41.91070715"],["-87.64737726","41.9108582"],["-87.64739069","41.91101257"],["-87.6474045","41.91112474"],["-87.64744848","41.91122027"],["-87.64755789","41.91138517"],["-87.64768022","41.911459"],["-87.64781239","41.91149988"],["-87.64791644","41.91151229"],["-87.64862688","41.91150474"],["-87.64883215","41.91149889"],["-87.64899947","41.91149989"],["-87.64920439","41.91152705"],["-87.6493901","41.91158004"],["-87.64948143","41.9116018"],["-87.64956621","41.91164476"],["-87.64971386","41.91171403"],["-87.64984873","41.91179737"],["-87.65016827","41.91203038"],["-87.65092623","41.91260086"],["-87.65182737","41.913217"],["-87.65207812","41.91338828"],["-87.65222841","41.91350708"],["-87.65234404","41.91361861"],["-87.65242186","41.91376522"],["-87.65250043","41.91405947"],["-87.65254835","41.91562579"],["-87.65260981","41.91717935"],["-87.65262488","41.91763256"],["-87.65263982","41.91808172"],["-87.65264431","41.91821657"],["-87.65274114","41.92112856"],["-87.65275988","41.9217182"],["-87.6528172","41.92352232"],["-87.65286584","41.92505137"],["-87.65287507","41.92536849"],["-87.65289134","41.92599125"],["-87.6529216","41.92714879"],["-87.65293544","41.92767809"],["-87.65295478","41.92841813"],["-87.65296222","41.92870278"],["-87.65299317","41.9295075"],["-87.65302372","41.93030173"],["-87.6530468","41.93090174"],["-87.65307037","41.93151468"],["-87.65309585","41.93217697"],["-87.65313086","41.9327315"],["-87.65313731","41.93311676"],["-87.65319648","41.93445211"],["-87.65321677","41.9349102"],["-87.65323493","41.93531994"],["-87.65326645","41.9360326"],["-87.65327514","41.93626663"],["-87.65330865","41.93716958"],["-87.65332582","41.93763218"],["-87.65336361","41.93865028"],["-87.65336788","41.93892875"],["-87.65337492","41.93938762"],["-87.65338049","41.93975075"],["-87.65345392","41.94217681"],["-87.65347497","41.94238297"],["-87.65351126","41.94257137"],["-87.65355471","41.94268597"],["-87.65360771","41.94280301"],["-87.65366549","41.94292007"],["-87.65374693","41.94306349"],["-87.65382221","41.94318542"],["-87.65391661","41.94330985"],["-87.65400478","41.94341995"],["-87.65409951","41.94351341"],["-87.65424813","41.94364054"],["-87.65441292","41.94374633"],["-87.65454315","41.94380189"],["-87.65469889","41.94385998"],["-87.65488029","41.94390393"],["-87.65503","41.94392864"],["-87.65521492","41.94394164"],["-87.65549572","41.94394092"],["-87.6560829","41.94393247"],["-87.65766575","41.94391083"],["-87.65909524","41.94390732"],["-87.66360956","41.94381226"],["-87.66508073","41.94378986"],["-87.66584659","41.94378241"],["-87.66748678","41.94376811"],["-87.66938411","41.94372669"],["-87.67088394","41.94370915"],["-87.67150019","41.94370197"],["-87.67233916","41.94368657"],["-87.67262952","41.94368586"],["-87.67289419","41.94370167"],["-87.67310771","41.94372672"],["-87.67334025","41.94376379"],["-87.67347708","41.94380031"],["-87.67367107","41.94386336"],["-87.6738586","41.94393352"],["-87.67404893","41.94404181"],["-87.67419466","41.94414269"],["-87.674299","41.9442362"],["-87.67441875","41.94438172"],["-87.67449996","41.94455131"],["-87.67457143","41.94473753"],["-87.67462997","41.94494035"],["-87.67465991","41.94513109"],["-87.67468326","41.94596259"],["-87.67473611","41.94702866"],["-87.6747647","41.9485915"],["-87.67479274","41.94958739"],["-87.6748355","41.95101358"],["-87.67485384","41.95202132"],["-87.67486587","41.95302284"],["-87.67490767","41.95392257"],["-87.67495574","41.95452314"],["-87.67497183","41.95513067"],["-87.67500717","41.95665782"],["-87.67505415","41.95798493"],["-87.6751308","41.96077151"],["-87.67516539","41.96175171"],["-87.67518991","41.96371139"],["-87.67520485","41.96433571"],["-87.67521396","41.96456866"],["-87.67521732","41.96476921"],["-87.67522864","41.96490982"],["-87.67524173","41.96503376"],["-87.67530397","41.96518896"],["-87.67539102","41.96536232"],["-87.6754447","41.96547085"],["-87.67557377","41.96564549"],["-87.67569677","41.96578912"],["-87.6758897","41.96596174"],["-87.67612751","41.96611556"],["-87.67638167","41.96623135"],["-87.67664886","41.96632102"],["-87.67695468","41.96637994"],["-87.67722097","41.9664029"],["-87.67740918","41.9664135"],["-87.67766444","41.96642211"],["-87.67863488","41.96641097"],["-87.68033964","41.96638257"],["-87.68159424","41.96636349"],["-87.68271469","41.96635317"],["-87.68398535","41.96632464"],["-87.68545377","41.96630911"],["-87.68718086","41.96628073"],["-87.68850261","41.96625005"],["-87.68946333","41.96625306"],["-87.69025501","41.9662432"],["-87.6914457","41.96623081"],["-87.69411113","41.96620995"],["-87.69502245","41.96620549"],["-87.69674932","41.9661984"],["-87.69789216","41.9661833"],["-87.69872867","41.96615934"],["-87.69953628","41.96615189"],["-87.70075244","41.96614669"],["-87.70165573","41.9661469"],["-87.70266764","41.96613817"],["-87.70399231","41.96613352"],["-87.70645022","41.966116"],["-87.7076281","41.96610814"],["-87.70884379","41.96609261"],["-87.71027448","41.96607489"],["-87.71107883","41.96607449"],["-87.71172598","41.9660609"],["-87.71218725","41.96605227"],["-87.71239867","41.96604562"],["-87.71255225","41.9660489"],["-87.71268108","41.96604693"],["-87.71280249","41.96607162"],["-87.71292015","41.96611498"],["-87.71297936","41.96615033"],["-87.71303368","41.96621493"],["-87.71308736","41.96629526"],["-87.71309863","41.96635333"],["-87.71311027","41.96643432"],["-87.71311517","41.96666667"],["-87.71314204","41.96792815"]]},"properties":{"route_id":"Brn","route_color":"62361B"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.713065","41.967901"]},"properties":{"name":"Kimball","stop_id":"30250","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.708821","41.965996"]},"properties":{"name":"Kedzie-Brown","stop_id":"30226","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.701644","41.966046"]},"properties":{"name":"Francisco","stop_id":"30168","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.6941","41.966115"]},"properties":{"name":"Rockwell","stop_id":"30196","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.688502","41.966163"]},"properties":{"name":"Western-Brown","stop_id":"30284","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.678639","41.966286"]},"properties":{"name":"Damen-Brown","stop_id":"30019","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.675047","41.961756"]},"properties":{"name":"Montrose-Brown","stop_id":"30288","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.674868","41.954521"]},"properties":{"name":"Irving Park-Brown","stop_id":"30282","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.674642","41.947028"]},"properties":{"name":"Addison-Brown","stop_id":"30278","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.670907","41.943623"]},"properties":{"name":"Paulina","stop_id":"30254","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.663619","41.943744"]},"properties":{"name":"Southport","stop_id":"30071","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.65338","41.939751"]},"properties":{"name":"Belmont","stop_id":"30258","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.653266","41.936033"]},"properties":{"name":"Wellington","stop_id":"30232","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.653131","41.932732"]},"properties":{"name":"Diversey","stop_id":"30104","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.652866","41.925051"]},"properties":{"name":"Fullerton","stop_id":"30236","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.652644","41.918217"]},"properties":{"name":"Armitage","stop_id":"30128","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.639302","41.910409"]},"properties":{"name":"Sedgwick","stop_id":"30156","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.635924","41.89681"]},"properties":{"name":"Chicago-Brown","stop_id":"30138","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.633924","41.888969"]},"properties":{"name":"Merchandise Mart","stop_id":"30091","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.63378","41.882695"]},"properties":{"name":"Washington/Wells","stop_id":"30142","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.63374","41.878723"]},"properties":{"name":"Quincy/Wells","stop_id":"30008","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.631739","41.8768"]},"properties":{"name":"LaSalle/Van Buren","stop_id":"30030","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.628196","41.876862"]},"properties":{"name":"Harold Washington Library","stop_id":"30165","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.626037","41.879507"]},"properties":{"name":"Adams/Wabash","stop_id":"30131","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.626098","41.882023"]},"properties":{"name":"Madison/Wabash","stop_id":"30123","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.626149","41.884431"]},"properties":{"name":"Randolph/Wabash","stop_id":"30038","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.627835","41.88574"]},"properties":{"name":"State/Lake","stop_id":"30051","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.630886","41.885737"]},"properties":{"name":"Clark/Lake (Elevated)","stop_id":"30075","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.633924","41.888969"]},"properties":{"name":"Merchandise Mart","stop_id":"30090","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.635924","41.89681"]},"properties":{"name":"Chicago-Brown","stop_id":"30137","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.639302","41.910409"]},"properties":{"name":"Sedgwick","stop_id":"30155","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.652644","41.918217"]},"properties":{"name":"Armitage","stop_id":"30127","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.652866","41.925051"]},"properties":{"name":"Fullerton","stop_id":"30235","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.653131","41.932732"]},"properties":{"name":"Diversey","stop_id":"30103","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.653266","41.936033"]},"properties":{"name":"Wellington","stop_id":"30231","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.65338","41.939751"]},"properties":{"name":"Belmont","stop_id":"30257","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.663619","41.943744"]},"properties":{"name":"Southport","stop_id":"30070","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.670907","41.943623"]},"properties":{"name":"Paulina","stop_id":"30253","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.674642","41.947028"]},"properties":{"name":"Addison-Brown","stop_id":"30277","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.674868","41.954521"]},"properties":{"name":"Irving Park-Brown","stop_id":"30281","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.675047","41.961756"]},"properties":{"name":"Montrose-Brown","stop_id":"30287","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.678639","41.966286"]},"properties":{"name":"Damen-Brown","stop_id":"30018","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.688502","41.966163"]},"properties":{"name":"Western-Brown","stop_id":"30283","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.6941","41.966115"]},"properties":{"name":"Rockwell","stop_id":"30195","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.701644","41.966046"]},"properties":{"name":"Francisco","stop_id":"30167","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.708821","41.965996"]},"properties":{"name":"Kedzie-Brown","stop_id":"30225","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.713065","41.967901"]},"properties":{"name":"Kimball","stop_id":"30249","route_id":"Brn"}},{"type":"Feature","geometry":{"type":"LineString","coordinates":[["-87.73795637","41.78661355"],["-87.73816455","41.79232476"],["-87.73815786","41.79270349"],["-87.73811403","41.79296769"],["-87.73805752","41.79322706"],["-87.7379733","41.79338385"],["-87.73771473","41.79380654"],["-87.73756654","41.79399634"],["-87.73730957","41.79424514"],["-87.73696621","41.79454113"],["-87.73660403","41.79480606"],["-87.73619079","41.79508501"],["-87.73580356","41.79530454"],["-87.73523725","41.79561128"],["-87.7347801","41.79581853"],["-87.73401333","41.79611469"],["-87.72819144","41.7984211"],["-87.72444964","41.79988782"],["-87.7207444","41.80150945"],["-87.71813914","41.80261278"],["-87.71676484","41.80316522"],["-87.71574852","41.8035695"],["-87.71505552","41.8037897"],["-87.71464373","41.80390183"],["-87.71412363","41.80402052"],["-87.71362607","41.80411312"],["-87.71322756","41.80416814"],["-87.71252017","41.80422864"],["-87.71177176","41.8042508"],["-87.70979109","41.80428533"],["-87.70673418","41.80433063"],["-87.70432067","41.80434841"],["-87.6982003","41.80445528"],["-87.69427382","41.80453832"],["-87.69109263","41.80459205"],["-87.68687362","41.80463508"],["-87.68406499","41.80468356"],["-87.6830364","41.80470395"],["-87.68240611","41.80469323"],["-87.68211615","41.80471541"],["-87.68180367","41.80476128"],["-87.68134093","41.80486824"],["-87.68103747","41.80496656"],["-87.68070149","41.80513141"],["-87.68041947","41.80531324"],["-87.68015946","41.80552139"],["-87.67995673","41.80573225"],["-87.67983073","41.80591258"],["-87.67969119","41.80617145"],["-87.67960922","41.80640443"],["-87.6795588","41.80666619"],["-87.67953062","41.80693283"],["-87.67957965","41.8086864"],["-87.67963053","41.81088545"],["-87.67966809","41.81188856"],["-87.67972372","41.81424724"],["-87.67978037","41.81462633"],["-87.67979761","41.81480986"],["-87.67987978","41.81518433"],["-87.6800085","41.81567817"],["-87.6801793","41.81610556"],["-87.68036588","41.81654732"],["-87.68170811","41.81858933"],["-87.68308596","41.8205815"],["-87.68493548","41.82318138"],["-87.68568898","41.82425762"],["-87.68594965","41.82462118"],["-87.68606841","41.82484577"],["-87.68613711","41.82498194"],["-87.68620128","41.82525149"],["-87.68621222","41.82543022"],["-87.68620759","41.82557312"],["-87.68613123","41.82588237"],["-87.68603024","41.82610573"],["-87.68590745","41.82628132"],["-87.68569512","41.82649214"],["-87.68547364","41.8266624"],["-87.68516608","41.82684171"],["-87.68480428","41.82703025"],["-87.68429519","41.82729656"],["-87.6817439","41.82888056"],["-87.68058737","41.82956009"],["-87.67796852","41.83117455"],["-87.67475685","41.83314054"],["-87.67325616","41.83411338"],["-87.6707888","41.83584531"],["-87.66906883","41.83706458"],["-87.66784656","41.83789603"],["-87.66691317","41.83851475"],["-87.66624348","41.83889201"],["-87.66531166","41.83935588"],["-87.66226708","41.84080317"],["-87.65872585","41.8425095"],["-87.65779739","41.84294713"],["-87.65433896","41.84463475"],["-87.65357455","41.84491847"],["-87.65312682","41.84508019"],["-87.65264412","41.84523455"],["-87.65206264","41.84539071"],["-87.65142381","41.84554653"],["-87.65065356","41.84577779"],["-87.65009708","41.84597934"],["-87.64941872","41.8462564"],["-87.6481311","41.84690144"],["-87.64653302","41.84767801"],["-87.64578434","41.84797369"],["-87.64513854","41.84818183"],["-87.64439104","41.84836554"],["-87.64350921","41.84859847"],["-87.64281895","41.84881176"],["-87.64122432","41.84957787"],["-87.64060812","41.84994837"],["-87.64031581","41.85016815"],["-87.64014554","41.85029814"],["-87.63890725","41.85166993"],["-87.63800416","41.85268166"],["-87.63656215","41.85431899"],["-87.6359467","41.8549513"],["-87.63524892","41.85553545"],["-87.63397905","41.85656873"],["-87.63357463","41.85683784"],["-87.63305229","41.8571086"],["-87.63251147","41.8573197"],["-87.63197779","41.85746175"],["-87.63158494","41.85754511"],["-87.63130085","41.85759102"],["-87.63075548","41.85763533"],["-87.62782656","41.85768645"],["-87.6274119","41.8577244"],["-87.6272682","41.85775211"],["-87.62712756","41.85779174"],["-87.62699006","41.85783615"],["-87.62682035","41.85791134"],["-87.62669208","41.8579844"],["-87.62659879","41.85806482"],["-87.62654775","41.85812157"],["-87.62646978","41.85824431"],["-87.62645577","41.85838881"],["-87.62641799","41.85875871"],["-87.62647268","41.86016163"],["-87.62649959","41.86188825"],["-87.62656329","41.86573307"],["-87.62658989","41.86740496"],["-87.62671099","41.86997473"],["-87.62679265","41.87361141"],["-87.62679625","41.87378407"],["-87.62680602","41.87389511"],["-87.62679939","41.87399783"],["-87.62677631","41.87409633"],["-87.62673442","41.87421307"],["-87.62668033","41.87432182"],["-87.62658521","41.8744692"],["-87.6265125","41.87457974"],["-87.6264012","41.87469826"],["-87.62632326","41.87478409"],["-87.626223","41.87489857"],["-87.62616147","41.87499273"],["-87.62609975","41.87510333"],["-87.62601549","41.87526311"],["-87.62599768","41.8753822"],["-87.62597864","41.87569351"],["-87.62603392","41.87696579"],["-87.62634913","41.87696048"],["-87.62649605","41.8769593"],["-87.62756718","41.87693211"],["-87.62820914","41.87690834"],["-87.62925296","41.87688614"],["-87.63173383","41.87685534"],["-87.63262638","41.87684887"],["-87.63337545","41.8768463"],["-87.63344863","41.87685865"],["-87.63352807","41.87688058"],["-87.63358516","41.87690713"],["-87.63364522","41.87695275"],["-87.63369311","41.8770628"],["-87.63368645","41.87726125"],["-87.63373998","41.87872328"],["-87.63378257","41.88014092"],["-87.63384491","41.88143957"],["-87.63385353","41.88269502"],["-87.63388906","41.88440562"],["-87.63391317","41.88572453"],["-87.63284572","41.88573014"],["-87.63203975","41.88573666"],["-87.63088602","41.88573698"],["-87.63019852","41.88573752"],["-87.63011395","41.88573771"],["-87.62992165","41.88573816"],["-87.62981629","41.8857384"],["-87.62947821","41.88573919"],["-87.62887179","41.88574059"],["-87.62783518","41.88574041"],["-87.62682986","41.88573881"],["-87.6266122","41.88573846"],["-87.62655437","41.88573625"],["-87.62650323","41.88573298"],["-87.62642067","41.88572251"],["-87.62634684","41.8856894"],["-87.62630227","41.88565825"],["-87.62626769","41.88561777"],["-87.62625295","41.88557002"],["-87.62625476","41.88552136"],["-87.62625673","41.88534271"],["-87.62622211","41.8844349"],["-87.62615617","41.8820309"],["-87.6260979","41.87951022"],["-87.62605379","41.87830696"],["-87.62603392","41.87696579"],["-87.62597864","41.87569351"],["-87.62599768","41.8753822"],["-87.62601549","41.87526311"],["-87.62609975","41.87510333"],["-87.62616147","41.87499273"],["-87.626223","41.87489857"],["-87.62632326","41.87478409"],["-87.6264012","41.87469826"],["-87.6265125","41.87457974"],["-87.62658521","41.8744692"],["-87.62668033","41.87432182"],["-87.62673442","41.87421307"],["-87.62677631","41.87409633"],["-87.62679939","41.87399783"],["-87.62680602","41.87389511"],["-87.62679625","41.87378407"],["-87.62679265","41.87361141"],["-87.62671099","41.86997473"],["-87.62658989","41.86740496"],["-87.62656329","41.86573307"],["-87.62649959","41.86188825"],["-87.62647268","41.86016163"],["-87.62641799","41.85875871"],["-87.62645577","41.85838881"],["-87.62646978","41.85824431"],["-87.62654775","41.85812157"],["-87.62659879","41.85806482"],["-87.62669208","41.8579844"],["-87.62682035","41.85791134"],["-87.62699006","41.85783615"],["-87.62712756","41.85779174"],["-87.6272682","41.85775211"],["-87.6274119","41.8577244"],["-87.62782656","41.85768645"],["-87.63075548","41.85763533"],["-87.63130085","41.85759102"],["-87.63158494","41.85754511"],["-87.63197779","41.85746175"],["-87.63251147","41.8573197"],["-87.63305229","41.8571086"],["-87.63357463","41.85683784"],["-87.63397905","41.85656873"],["-87.63524892","41.85553545"],["-87.6359467","41.8549513"],["-87.63656215","41.85431899"],["-87.63800416","41.85268166"],["-87.63890725","41.85166993"],["-87.64014554","41.85029814"],["-87.64031581","41.85016815"],["-87.64060812","41.84994837"],["-87.64122432","41.84957787"],["-87.64281895","41.84881176"],["-87.64350921","41.84859847"],["-87.64439104","41.84836554"],["-87.64513854","41.84818183"],["-87.64578434","41.84797369"],["-87.64653302","41.84767801"],["-87.6481311","41.84690144"],["-87.64941872","41.8462564"],["-87.65009708","41.84597934"],["-87.65065356","41.84577779"],["-87.65142381","41.84554653"],["-87.65206264","41.84539071"],["-87.65264412","41.84523455"],["-87.65312682","41.84508019"],["-87.65357455","41.84491847"],["-87.65433896","41.84463475"],["-87.65779739","41.84294713"],["-87.65872585","41.8425095"],["-87.66226708","41.84080317"],["-87.66531166","41.83935588"],["-87.66624348","41.83889201"],["-87.66691317","41.83851475"],["-87.66784656","41.83789603"],["-87.66906883","41.83706458"],["-87.6707888","41.83584531"],["-87.67325616","41.83411338"],["-87.67475685","41.83314054"],["-87.67796852","41.83117455"],["-87.68058737","41.82956009"],["-87.6817439","41.82888056"],["-87.68429519","41.82729656"],["-87.68480428","41.82703025"],["-87.68516608","41.82684171"],["-87.68547364","41.8266624"],["-87.68569512","41.82649214"],["-87.68590745","41.82628132"],["-87.68603024","41.82610573"],["-87.68613123","41.82588237"],["-87.68620759","41.82557312"],["-87.68621222","41.82543022"],["-87.68620128","41.82525149"],["-87.68613711","41.82498194"],["-87.68606841","41.82484577"],["-87.68594965","41.82462118"],["-87.68568898","41.82425762"],["-87.68493548","41.82318138"],["-87.68308596","41.8205815"],["-87.68170811","41.81858933"],["-87.68036588","41.81654732"],["-87.6801793","41.81610556"],["-87.6800085","41.81567817"],["-87.67987978","41.81518433"],["-87.67979761","41.81480986"],["-87.67978037","41.81462633"],["-87.67972372","41.81424724"],["-87.67966809","41.81188856"],["-87.67963053","41.81088545"],["-87.67957965","41.8086864"],["-87.67953062","41.80693283"],["-87.6795588","41.80666619"],["-87.67960922","41.80640443"],["-87.67969119","41.80617145"],["-87.67983073","41.80591258"],["-87.67995673","41.80573225"],["-87.68015946","41.80552139"],["-87.68041947","41.80531324"],["-87.68070149","41.80513141"],["-87.68103747","41.80496656"],["-87.68134093","41.80486824"],["-87.68180367","41.80476128"],["-87.68211615","41.80471541"],["-87.68240611","41.80469323"],["-87.6830364","41.80470395"],["-87.68406499","41.80468356"],["-87.68687362","41.80463508"],["-87.69109263","41.80459205"],["-87.69427382","41.80453832"],["-87.6982003","41.80445528"],["-87.70432067","41.80434841"],["-87.70673418","41.80433063"],["-87.70979109","41.80428533"],["-87.71177176","41.8042508"],["-87.71252017","41.80422864"],["-87.71322756","41.80416814"],["-87.71362607","41.80411312"],["-87.71412363","41.80402052"],["-87.71464373","41.80390183"],["-87.71505552","41.8037897"],["-87.71574852","41.8035695"],["-87.71676484","41.80316522"],["-87.71813914","41.80261278"],["-87.7207444","41.80150945"],["-87.72444964","41.79988782"],["-87.72819144","41.7984211"],["-87.73401333","41.79611469"],["-87.7347801","41.79581853"],["-87.73523725","41.79561128"],["-87.73580356","41.79530454"],["-87.73619079","41.79508501"],["-87.73660403","41.79480606"],["-87.73696621","41.79454113"],["-87.73730957","41.79424514"],["-87.73756654","41.79399634"],["-87.73771473","41.79380654"],["-87.7379733","41.79338385"],["-87.73805752","41.79322706"],["-87.73811403","41.79296769"],["-87.73815786","41.79270349"],["-87.73816455","41.79232476"],["-87.73795637","41.78661355"]]},"properties":{"route_id":"Org","route_color":"F9461C"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.737875","41.78661"]},"properties":{"name":"Midway","stop_id":"30181","route_id":"Org"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.724493","41.799756"]},"properties":{"name":"Pulaski-Orange","stop_id":"30185","route_id":"Org"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.704406","41.804236"]},"properties":{"name":"Kedzie-Orange","stop_id":"30219","route_id":"Org"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.684019","41.804546"]},"properties":{"name":"Western-Orange","stop_id":"30060","route_id":"Org"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.680622","41.829353"]},"properties":{"name":"35th/Archer","stop_id":"30022","route_id":"Org"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.665317","41.839234"]},"properties":{"name":"Ashland-Orange","stop_id":"30205","route_id":"Org"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.648088","41.84678"]},"properties":{"name":"Halsted-Orange","stop_id":"30215","route_id":"Org"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.62659","41.867405"]},"properties":{"name":"Roosevelt (Elevated)","stop_id":"30080","route_id":"Org"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.628196","41.876862"]},"properties":{"name":"Harold Washington Library","stop_id":"30166","route_id":"Org"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.631739","41.8768"]},"properties":{"name":"LaSalle/Van Buren","stop_id":"30031","route_id":"Org"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.63374","41.878723"]},"properties":{"name":"Quincy/Wells","stop_id":"30007","route_id":"Org"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.63378","41.882695"]},"properties":{"name":"Washington/Wells","stop_id":"30141","route_id":"Org"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.630886","41.885737"]},"properties":{"name":"Clark/Lake (Elevated)","stop_id":"30074","route_id":"Org"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.627835","41.88574"]},"properties":{"name":"State/Lake","stop_id":"30050","route_id":"Org"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.626149","41.884431"]},"properties":{"name":"Randolph/Wabash","stop_id":"30039","route_id":"Org"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.626098","41.882023"]},"properties":{"name":"Madison/Wabash","stop_id":"30124","route_id":"Org"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.626037","41.879507"]},"properties":{"name":"Adams/Wabash","stop_id":"30132","route_id":"Org"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.62659","41.867405"]},"properties":{"name":"Roosevelt (Elevated)","stop_id":"30081","route_id":"Org"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.648088","41.84678"]},"properties":{"name":"Halsted-Orange","stop_id":"30216","route_id":"Org"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.665317","41.839234"]},"properties":{"name":"Ashland-Orange","stop_id":"30206","route_id":"Org"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.680622","41.829353"]},"properties":{"name":"35th/Archer","stop_id":"30023","route_id":"Org"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.684019","41.804546"]},"properties":{"name":"Western-Orange","stop_id":"30061","route_id":"Org"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.704406","41.804236"]},"properties":{"name":"Kedzie-Orange","stop_id":"30220","route_id":"Org"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.724493","41.799756"]},"properties":{"name":"Pulaski-Orange","stop_id":"30186","route_id":"Org"}},{"type":"Feature","geometry":{"type":"Point","coordinates":["-87.737875","41.78661"]},"properties":{"name":"Midway","stop_id":"30182","route_id":"Org"}}]}
# https://github.com/nerdEd/gtfs
require 'gtfs'
require 'json'
routes = {}
# http://www.gtfs-data-exchange.com/agency/chicago-transit-authority/
filename_gtfs = ARGV[0]
puts "loading #{filename_gtfs}"
source = GTFS::Source.build(filename_gtfs)
# type == "1" for train
source.routes.select{|r| r.type == "1"}.each do |r|
puts "reading route #{r.id} #{r.color}"
routes[r.id] = {route_color: r.color} if routes[r.id] == nil
# unique shapes for all trips on a route
source.trips.select{|t| t.route_id == r.id}.each do |t|
next unless routes[r.id][:coordinates] == nil
# shapes
puts "reading shape #{t.shape_id}"
coordinates = []
source.shapes.select{|s| s.id == t.shape_id }.each do |s|
coordinates << [s.pt_lon, s.pt_lat]
end
routes[r.id][:stops] = {}
routes[r.id][:coordinates] = coordinates
# stops
puts "reading stops"
source.stop_times.select{|st| st.trip_id == t.id}.each do |st|
next unless routes[r.id][:stops][st.stop_id] == nil
source.stops.select{|s| s.id == st.stop_id}.each do |s|
puts "reading stop #{s.id} #{s.name}"
routes[r.id][:stops][st.stop_id] = { :coordinates => [s.lon, s.lat], :name => s.name }
end
end
end
end
geojson = {
"type" => "FeatureCollection",
"features" => routes.map{ |route_id, d|
[{
"type" => "Feature",
"geometry" => {
"type" => "LineString",
"coordinates" => d[:coordinates]
},
"properties" => {
"route_id" => route_id,
"route_color" => d[:route_color],
}
}] + d[:stops].map{ |stop_id, s|
{
"type" => "Feature",
"geometry" => {
"type" => "Point",
"coordinates" => s[:coordinates]
},
"properties" => {
"name" => s[:name],
"stop_id" => stop_id,
"route_id" => route_id,
}
}
}
}.flatten
}
filename_json = "#{__dir__}/#{File.basename(filename_gtfs, ".zip")}.json"
File.write(filename_json, geojson.to_json)
puts "saved train lines to #{filename_json}"
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CTA Line Simplification</title>
<style type="text/css">
body {
padding: 0;
margin: 0;
}
path {
stroke-linejoin: round;
fill: none;
}
circle {
fill: white;
stroke: black;
display: none;
stroke-width: 1px;
}
</style>
</head>
<body>
<script src="//d3js.org/d3.v3.min.js"></script>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/dat-gui/0.5/dat.gui.min.js"></script>
<script src="readme-simplify.js"></script>
<script type="text/javascript">
config = {"simplification": 9, "interpolation" : "cardinal", "strokeWidth": 4, "showStops": false};
gui = new dat.GUI();
var examples = gui.addFolder('Examples');
examples.open()
config.random = function(){
gui.__controllers.forEach(function(c){
if(typeof(c.__select) != 'undefined') {
c.setValue(c.__select[Math.floor(Math.random()*(c.__select.length-1))].value)
} else {
if(c.property!="random" && c.property!="strokeWidth" && c.property!="showStops"){
c.setValue(Math.floor(Math.random() * c.__max) + c.__min)
}
}
})
draw()
}
examples.add(config, "random")
config.accurate = function(){
config["interpolation"] = "linear"
config["simplification"] = 0
draw()
}
examples.add(config, "accurate")
config.curly = function(){
config["interpolation"] = "cardinal"
config["simplification"] = 9
draw()
}
examples.add(config, "curly")
config.minimal = function(){
config["interpolation"] = "linear"
config["simplification"] = 100
draw()
}
examples.add(config, "minimal")
maxSimplification = 53
simplificationChanger = gui.add(config, "simplification", 0, 100).step(.1).listen()
simplificationChanger.onChange(function(value) {
draw()
});
interpolationChanger = gui.add(config, "interpolation", ["linear", "step-before", "step-after", "basis", "basis-open", "basis-closed", "cardinal", "cardinal-open", "cardinal-closed", "monotone"]).listen()
interpolationChanger.onChange(function(value) {
draw()
})
strokeWidthChanger = gui.add(config, "strokeWidth", 1, 20).listen()
strokeWidthChanger.onChange(function(value) {
d3.selectAll(".routes path").style("stroke-width", value)
d3.selectAll(".stops circle").attr("r", value/2)
});
showStopsChanger = gui.add(config, "showStops").listen()
showStopsChanger.onChange(function(value) {
d3.selectAll(".stops circle").style("display", value ? "block" : "none")
});
width = window.innerWidth
height = window.innerHeight - 5
line = d3.svg.line()
.interpolate(config["interpolation"])
zoom = d3.behavior.zoom()
.scaleExtent([0, 100])
.on("zoom", function () {
config["simplification"] = d3.event.scale
draw()
})
svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height)
.call(zoom)
var projection = d3.geo.mercator()
.scale(54596)
.translate([83920, 44300])
d3.json("chicago-transit-authority_20121228_1318.json", function(json) {
routes = svg.append("g").attr("class", "routes").selectAll("path").data(json.features.filter(function(d) { return d["geometry"]["type"] == "LineString" }))
routes.enter().append("path")
.attr("id", function(d) { return d.properties.route_id })
.style("stroke", function(d) { return "#"+d.properties.route_color })
.style("stroke-width", config["strokeWidth"])
.on("mouseover", function(d) {
d3.select(this).style("stroke-width", config["strokeWidth"] * 2)
})
.on("mouseout", function(d) {
d3.select(this).style("stroke-width", config["strokeWidth"])
})
//.attr("d", function(d) { return line(d.geometry.coordinates.map(projection)) })
stops = svg.append("g").attr("class", "stops").selectAll("circle").data(json.features.filter(function(d) { return d["geometry"]["type"] == "Point" }))
stops.enter().append("circle")
.attr("id", function(d) { return d.properties.stop_id })
.attr("class", function(d) { return d.properties.route_id })
.attr("r", config["strokeWidth"]/2)
.on("mouseover", function(d) {
d3.select(this).attr("r", config["strokeWidth"]/2 * 2)
})
.on("mouseout", function(d) {
d3.select(this).attr("r", config["strokeWidth"]/2)
})
.attr("transform", function(d) {
xy = projection(d.geometry.coordinates)
return "translate("+xy[0]+","+xy[1]+")"
})
.append("svg:title")
.text(function(d, i) { return d.properties.name })
draw()
// intro animation
//var interpolator = d3.interpolateNumber(0, config["simplification"])
//svg.transition().duration(1000).tween("withchange", function() {
// return function(t) {
// config["simplification"] = interpolator(t)
// draw()
// };
//})
})
function draw() {
zoom.scale(config["simplification"])
line.interpolate(config["interpolation"])
routes.attr("d", function(d) {
return line(simplify(d.geometry.coordinates.map(projection), maxSimplification*(config["simplification"]*.01), true))
})
}
</script>
</body>
</html>
@Manjulajntuk
Copy link

Manjulajntuk commented Aug 30, 2016

Hi sir i have displayed two geojson files(flood geojson, district geojson) and then i read the features of the geojson. Using draw tool i have calculated area (using flood geojson + draw tool) Now my requirement is to calculate the flood area and subdivide the area to each and every district that is falling in the district geojson. My code is below

<title>Select features example</title> <script src="https://cdnjs.cloudflare.com/ajax/libs/ol3/3.10.1/ol-debug.js"></script> <script src="ol.js"></script> <script src="jsts_geom_Polygon.js"></script> <script src="https://cdn.rawgit.com/bjornharrtell/jsts/gh-pages/lib/0.16.0/javascript.util.min.js"></script> <script src="https://cdn.rawgit.com/bjornharrtell/jsts/gh-pages/lib/0.16.0/jsts.min.js"></script> <script src="jsts_io_GeoJSONParser.js"></script> <style> html, body { padding: 0; margin: 0; } html, body, .map { height: 100%; width: 100%; } </style>

<script> var geojsonFormat = new ol.format.GeoJSON(); var style = new ol.style.Style({ fill: new ol.style.Fill({ color: 'rgba(255, 255, 255, 0.3)' }), stroke: new ol.style.Stroke({ color: 'rgba(255, 120, 0, 0.6)', width: 1 }) }); var styles = [style]; var highlightStyle = [ new ol.style.Style({ fill: new ol.style.Fill({ color: 'rgba(255, 120, 0, 0.3)' }), stroke: new ol.style.Stroke({ color: 'rgba(255, 120, 0, 0.6)', width: 1 }) }) ]; var vector3 = new ol.layer.Vector({ maxResolution: 0.8, source: new ol.source.Vector({ url: 'ap_taluk.geojson', format: new ol.format.GeoJSON({ defaultDataProjection:'EPSG:4326' }) }), style: styles }); var vector2 = new ol.layer.Vector({ maxResolution: 0.8, source: new ol.source.Vector({ url: 'flood.geojson', format: new ol.format.GeoJSON({ defaultDataProjection:'EPSG:4326' }) }), style: styles }); var layer1 = new ol.layer.Tile({ title: 'India', source: new ol.source.TileWMS({ url: 'http://ndem.nrsc.gov.in/geoserver/ndem50k/wms', params: {LAYERS: 'ndem50k:stateadmin50census2011'} }), transparent: false }); var dist = new ol.layer.Tile({ title: 'flood', source: new ol.source.TileWMS({ url: 'http://ndem.nrsc.gov.in/geoserver/ndem50d/wms', //http://172.31.4.37/geoserver/ndem50k/wms params: {LAYERS: 'ndem50d:apflood50dsc04122015'} //ndem50k:apdistrictadmin50census2011 }) }); var distaluk = new ol.layer.Tile({ title: 'taluk', source: new ol.source.TileWMS({ url: 'http://ndem.nrsc.gov.in/geoserver/ndem50k/wms', //http://172.31.4.37/geoserver/ndem50k/wms params: {LAYERS: 'ndem50k:aptaluk50soi2001'} //ndem50k:apdistrictadmin50census2011 }) }); intersectionLayer = new ol.layer.Vector({ source: new ol.source.Vector() }); var map = new ol.Map({ layers: [layer1,vector2,vector3,intersectionLayer,distaluk], target: 'map', view: new ol.View({ projection: 'EPSG:4326', center: [79.419,15.428], zoom: 8 }) }); var draw_inter = new ol.interaction.Draw({ type: 'Polygon' }); map.addInteraction(draw_inter); draw_inter.on('drawstart', function(evt) { intersectionLayer.getSource().clear(); }); var olParser = new jsts.io.olParser(); var geojsonParser = new jsts.io.GeoJSONParser(); draw_inter.on('drawend', function(evt) { var poly1 = olParser.read(evt.feature.getGeometry()); var extent1 = evt.feature.getGeometry().getExtent(); var source = vector2.getSource(); var source2 = vector3.getSource(); //var source4 = vector4.getSource(); var features = source.getFeatures(); var features2 = source2.getFeatures(); // var features4 = source4.getFeatures(); features.forEach(function(feature) { if (!ol.extent.intersects(extent1, feature.getGeometry().getExtent())) { return; } var poly2 = olParser.read(feature.getGeometry()); var intersection = poly1.intersection(poly2); //alert(intersection); intersection = geojsonParser.write(intersection); if(intersection.type === 'GeometryCollection' && intersection.geometries.length === 0) { return; } else { intersectionLayer.getSource().addFeature(geojsonFormat.readFeature({ type: 'Feature', properties: {}, geometry: intersection })); //alert("flood"+feature.get('geometry')); } }); features2.forEach(function(feature) { if (!ol.extent.intersects(extent1, feature.getGeometry().getExtent())) { return; } var poly3 = olParser.read(feature.getGeometry()); var intersection = poly1.intersection(poly3); //alert(intersection); intersection = geojsonParser.write(intersection); if(intersection.type === 'GeometryCollection' && intersection.geometries.length === 0) { return; } else { alert("village"+feature.get('taluk')); intersectionLayer.getSource().addFeature(geojsonFormat.readFeature({ type: 'Feature', properties: {}, geometry: intersection })); /*layersize = intersectionLayer.getSource().getFeatures().length; alert(" size"+layersize); for(i=0;i 10000) { output = (Math.round(totalarea / 1000000 * 100) / 100) + ' ' + 'km2'; } else { output = (Math.round(totalarea * 100) / 100) + ' ' + 'm2'; } alert(output); }); </script>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment